50 skills found · Page 1 of 2
kkkgo / PaoPaoGateWayPaoPao GateWay是一个体积小巧、稳定强大的FakeIP网关
Sfedfcv / Redesigned PancakeSkip to content github / docs Code Issues 80 Pull requests 35 Discussions Actions Projects 2 Security Insights Merge branch 'main' into 1862-Add-Travis-CI-migration-table 1862-Add-Travis-CI-migration-table (#1869, Iixixi/ZachryTylerWood#102, THEBOLCK79/docs#1, sbnbhk/docs#1) @martin389 martin389 committed on Dec 9, 2020 2 parents 2f9ec0c + 1588f50 commit 1a56ed136914e522f3a23ecc2be1c49f479a1a6a Showing 501 changed files with 5,397 additions and 1,362 deletions. 2 .github/allowed-actions.js @@ -30,7 +30,7 @@ module.exports = [ 'rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e', 'repo-sync/github-sync@3832fe8e2be32372e1b3970bbae8e7079edeec88', 'repo-sync/pull-request@33777245b1aace1a58c87a29c90321aa7a74bd7d', 'rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815', 'someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd', 'tjenkinson/gh-action-auto-merge-dependency-updates@cee2ac0', 'EndBug/add-and-commit@9358097a71ad9fb9e2f9624c6098c89193d83575' ] 72 .github/workflows/confirm-internal-staff-work-in-docs.yml @@ -0,0 +1,72 @@ name: Confirm internal staff meant to post in public on: issues: types: - opened - reopened - transferred pull_request_target: types: - opened - reopened jobs: check-team-membership: runs-on: ubuntu-latest continue-on-error: true if: github.repository == 'github/docs' steps: - uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9 with: github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} script: | // Only perform this action with GitHub employees try { await github.teams.getMembershipForUserInOrg({ org: 'github', team_slug: 'employees', username: context.payload.sender.login, }); } catch(err) { // An error will be thrown if the user is not a GitHub employee // If a user is not a GitHub employee, we should stop here and // Not send a notification return } // Don't perform this action with Docs team members try { await github.teams.getMembershipForUserInOrg({ org: 'github', team_slug: 'docs', username: context.payload.sender.login, }); // If the user is a Docs team member, we should stop here and not send // a notification return } catch(err) { // An error will be thrown if the user is not a Docs team member // If a user is not a Docs team member we should continue and send // the notification } const issueNo = context.number || context.issue.number // Create an issue in our private repo await github.issues.create({ owner: 'github', repo: 'docs-internal', title: `@${context.payload.sender.login} confirm that \#${issueNo} should be in the public github/docs repo`, body: `@${context.payload.sender.login} opened https://github.com/github/docs/issues/${issueNo} publicly in the github/docs repo, instead of the private github/docs-internal repo.\n\n@${context.payload.sender.login}, please confirm that this belongs in the public repo and that no sensitive information was disclosed by commenting below and closing the issue.\n\nIf this was not intentional and sensitive information was shared, please delete https://github.com/github/docs/issues/${issueNo} and notify us in the \#docs-open-source channel.\n\nThanks! \n\n/cc @github/docs @github/docs-engineering` }); throw new Error('A Hubber opened an issue on the public github/docs repo'); - name: Send Slack notification if a GitHub employee who isn't on the docs team opens an issue in public if: ${{ failure() && github.repository == 'github/docs' }} uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd with: channel: ${{ secrets.DOCS_OPEN_SOURCE_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} text: <@${{github.actor}}> opened https://github.com/github/docs/issues/${{ github.event.number || github.event.issue.number }} publicly on the github/docs repo instead of the private github/docs-internal repo. They have been notified via a new issue in the github/docs-internal repo to confirm this was intentional. 15 .github/workflows/js-lint.yml @@ -10,23 +10,8 @@ on: - translations jobs: see_if_should_skip: runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289 with: cancel_others: 'false' github_token: ${{ github.token }} paths: '["**/*.js", "package*.json", ".github/workflows/js-lint.yml", ".eslint*"]' lint: runs-on: ubuntu-latest needs: see_if_should_skip if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }} steps: - name: Check out repo uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f 13 .github/workflows/repo-freeze-reminders.yml @@ -14,11 +14,10 @@ jobs: if: github.repository == 'github/docs-internal' steps: - name: Send Slack notification if repo is frozen uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: ${{ env.FREEZE == 'true' }} uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_USERNAME: docs-repo-sync SLACK_ICON_EMOJI: ':freezing_face:' SLACK_COLOR: '#51A0D5' # Carolina Blue SLACK_MESSAGE: All repo-sync runs will fail for ${{ github.repository }} because the repo is currently frozen! with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: info text: All repo-sync runs will fail for ${{ github.repository }} because the repo is currently frozen! 54 .github/workflows/repo-sync-stalls.yml @@ -0,0 +1,54 @@ name: Repo Sync Stalls on: workflow_dispatch: schedule: - cron: '*/30 * * * *' jobs: check-freezer: name: Check for deployment freezes runs-on: ubuntu-latest steps: - name: Exit if repo is frozen if: ${{ env.FREEZE == 'true' }} run: | echo 'The repo is currently frozen! Exiting this workflow.' exit 1 # prevents further steps from running repo-sync-stalls: runs-on: ubuntu-latest steps: - name: Check if repo sync is stalled uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9 with: github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} script: | let pulls; const owner = context.repo.owner const repo = context.repo.repo try { pulls = await github.pulls.list({ owner: owner, repo: repo, head: `${owner}:repo-sync`, state: 'open' }); } catch(err) { throw err return } pulls.data.forEach(pr => { const timeDelta = Date.now() - Date.parse(pr.created_at); const minutesOpen = timeDelta / 1000 / 60; if (minutesOpen > 30) { core.setFailed('Repo sync appears to be stalled') } }) - name: Send Slack notification if workflow fails uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: Repo sync appears to be stalled for ${{github.repository}}. See https://github.com/${{github.repository}}/pulls?q=is%3Apr+is%3Aopen+repo+sync 16 .github/workflows/repo-sync.yml @@ -7,6 +7,7 @@ name: Repo Sync on: workflow_dispatch: schedule: - cron: '*/15 * * * *' # every 15 minutes @@ -70,11 +71,10 @@ jobs: number: ${{ steps.find-pull-request.outputs.number }} - name: Send Slack notification if workflow fails uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 if: ${{ failure() }} env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_USERNAME: docs-repo-sync SLACK_ICON_EMOJI: ':ohno:' SLACK_COLOR: '#B90E0A' # Crimson SLACK_MESSAGE: The last repo-sync run for ${{github.repository}} failed. See https://github.com/${{github.repository}}/actions?query=workflow%3A%22Repo+Sync%22 uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: The last repo-sync run for ${{github.repository}} failed. See https://github.com/${{github.repository}}/actions?query=workflow%3A%22Repo+Sync%22 10 .github/workflows/sync-algolia-search-indices.yml @@ -33,8 +33,10 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npm run sync-search - name: Send slack notification if workflow run fails uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_MESSAGE: The last Algolia workflow run for ${{github.repository}} failed. Search actions for `workflow:Algolia` with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: The last Algolia workflow run for ${{github.repository}} failed. Search actions for `workflow:Algolia` 15 .github/workflows/yml-lint.yml @@ -10,23 +10,8 @@ on: - translations jobs: see_if_should_skip: runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289 with: cancel_others: 'false' github_token: ${{ github.token }} paths: '["**/*.yml", "**/*.yaml", "package*.json", ".github/workflows/yml-lint.yml"]' lint: runs-on: ubuntu-latest needs: see_if_should_skip if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }} steps: - name: Check out repo uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f 4 README.md @@ -28,7 +28,7 @@ If you've found a problem, you can open an issue using a [template](https://gith #### Solve an issue If you have a solution to one of the open issues, you will need to fork the repository and submit a PR using the [template](https://github.com/github/docs/blob/main/CONTRIBUTING.md#pull-request-template) that is visible automatically in the pull request body. For more details about this process, please check out [Getting Started with Contributing](/CONTRIBUTING.md). If you have a solution to one of the open issues, you will need to fork the repository and submit a pull request using the [template](https://github.com/github/docs/blob/main/CONTRIBUTING.md#pull-request-template) that is visible automatically in the pull request body. For more details about this process, please check out [Getting Started with Contributing](/CONTRIBUTING.md). #### Join us in discussions @@ -50,6 +50,8 @@ There are a few more things to know when you're getting started with this repo: In addition to the README you're reading right now, this repo includes other READMEs that describe the purpose of each subdirectory in more detail: - [content/README.md](content/README.md) - [content/graphql/README.md](content/graphql/README.md) - [content/rest/README.md](content/rest/README.md) - [contributing/README.md](contributing/README.md) - [data/README.md](data/README.md) - [data/reusables/README.md](data/reusables/README.md) BIN +164 KB assets/images/help/classroom/assignment-group-hero.png Binary file not shown. BIN +75.5 KB assets/images/help/classroom/assignment-ide-go-grant-access-button.png Binary file not shown. BIN +175 KB assets/images/help/classroom/assignment-individual-hero.png Binary file not shown. BIN +27.6 KB assets/images/help/classroom/assignment-repository-ide-button-in-readme.png Binary file not shown. BIN +83.4 KB assets/images/help/classroom/assignments-assign-deadline.png Binary file not shown. BIN +32.4 KB assets/images/help/classroom/assignments-assignment-title.png Binary file not shown. BIN +27.7 KB assets/images/help/classroom/assignments-autograding-click-pencil-or-trash.png Binary file not shown. BIN +72 KB assets/images/help/classroom/assignments-choose-repository-visibility.png Binary file not shown. BIN +20.1 KB assets/images/help/classroom/assignments-click-continue-button.png Binary file not shown. BIN +23.7 KB assets/images/help/classroom/assignments-click-create-assignment-button.png Binary file not shown. BIN +76.4 KB assets/images/help/classroom/assignments-click-grading-and-feedback.png Binary file not shown. BIN +53.1 KB assets/images/help/classroom/assignments-click-new-assignment-button.png Binary file not shown. BIN +134 KB assets/images/help/classroom/assignments-click-online-ide.png Binary file not shown. BIN +77.8 KB assets/images/help/classroom/assignments-click-pencil.png Binary file not shown. BIN +18.8 KB assets/images/help/classroom/assignments-click-review-button.png Binary file not shown. BIN +20.6 KB assets/images/help/classroom/assignments-click-save-test-case-button.png Binary file not shown. BIN +121 KB assets/images/help/classroom/assignments-click-template-repository-in-list.png Binary file not shown. BIN +21.1 KB assets/images/help/classroom/assignments-click-update-assignment.png Binary file not shown. BIN +76.9 KB assets/images/help/classroom/assignments-click-view-ide.png Binary file not shown. BIN +96.5 KB assets/images/help/classroom/assignments-click-view-test.png Binary file not shown. BIN +71.3 KB assets/images/help/classroom/assignments-define-teams.png Binary file not shown. BIN +39.4 KB assets/images/help/classroom/assignments-enable-feedback-pull-requests.png Binary file not shown. BIN +40.4 KB assets/images/help/classroom/assignments-type-protected-file-paths.png Binary file not shown. BIN +330 KB assets/images/help/classroom/autograding-actions-logs.png Binary file not shown. BIN +187 KB assets/images/help/classroom/autograding-actions-tab.png Binary file not shown. BIN +94.9 KB assets/images/help/classroom/autograding-click-grading-method.png Diff not rendered. BIN +57.5 KB assets/images/help/classroom/autograding-click-pencil.png Diff not rendered. BIN +57.7 KB assets/images/help/classroom/autograding-click-trash.png Diff not rendered. BIN +168 KB assets/images/help/classroom/autograding-hero.png Diff not rendered. BIN +154 KB assets/images/help/classroom/classroom-add-students-to-your-roster.png Diff not rendered. BIN +166 KB assets/images/help/classroom/classroom-copy-credentials.png Diff not rendered. BIN +181 KB assets/images/help/classroom/classroom-hero.png Diff not rendered. BIN +48.3 KB assets/images/help/classroom/classroom-settings-click-connection-settings.png Diff not rendered. BIN +94 KB ...ges/help/classroom/classroom-settings-click-disconnect-from-your-lms-button.png Diff not rendered. BIN +148 KB assets/images/help/classroom/classroom-settings-click-lms.png Diff not rendered. BIN +149 KB assets/images/help/classroom/click-assignment-in-list.png Diff not rendered. BIN +52.3 KB assets/images/help/classroom/click-classroom-in-list.png Diff not rendered. BIN +49.5 KB assets/images/help/classroom/click-create-classroom-button.png Diff not rendered. BIN +30 KB assets/images/help/classroom/click-create-roster-button.png Diff not rendered. BIN +78.2 KB assets/images/help/classroom/click-delete-classroom-button.png Diff not rendered. BIN +60.8 KB ...images/help/classroom/click-import-from-a-learning-management-system-button.png Diff not rendered. BIN +51.9 KB assets/images/help/classroom/click-new-classroom-button.png Diff not rendered. BIN +83.4 KB assets/images/help/classroom/click-organization.png Diff not rendered. BIN +28.4 KB assets/images/help/classroom/click-settings.png Diff not rendered. BIN +29.7 KB assets/images/help/classroom/click-students.png Diff not rendered. BIN +60 KB assets/images/help/classroom/click-update-students-button.png Diff not rendered. BIN +127 KB assets/images/help/classroom/delete-classroom-click-delete-classroom-button.png Diff not rendered. BIN +104 KB assets/images/help/classroom/delete-classroom-modal-with-warning.png Diff not rendered. BIN +264 KB assets/images/help/classroom/ide-makecode-arcade-version-control-button.png Diff not rendered. BIN +69.4 KB assets/images/help/classroom/ide-replit-version-control-button.png Diff not rendered. BIN +234 KB assets/images/help/classroom/lms-github-classroom-credentials.png Diff not rendered. BIN +955 KB assets/images/help/classroom/probot-settings.gif Diff not rendered. BIN +113 KB assets/images/help/classroom/roster-hero.png Diff not rendered. BIN +40.4 KB assets/images/help/classroom/settings-click-rename-classroom-button.png Diff not rendered. BIN +41 KB assets/images/help/classroom/settings-type-classroom-name.png Diff not rendered. BIN +140 KB assets/images/help/classroom/setup-click-authorize-github-classroom.png Diff not rendered. BIN +102 KB assets/images/help/classroom/setup-click-authorize-github.png Diff not rendered. BIN +163 KB assets/images/help/classroom/setup-click-grant.png Diff not rendered. BIN +324 KB assets/images/help/classroom/students-click-delete-roster-button-in-modal.png Diff not rendered. BIN +91.1 KB assets/images/help/classroom/students-click-delete-roster-button.png Diff not rendered. BIN +48.2 KB assets/images/help/classroom/type-classroom-name.png Diff not rendered. BIN +174 KB assets/images/help/classroom/type-or-upload-student-identifiers.png Diff not rendered. BIN +83.3 KB assets/images/help/classroom/use-drop-down-then-click-archive.png Diff not rendered. BIN +45.2 KB assets/images/help/classroom/use-drop-down-then-click-unarchive.png Diff not rendered. BIN +55.4 KB assets/images/help/discussions/choose-new-category.png Diff not rendered. BIN +56.8 KB assets/images/help/discussions/click-delete-and-move-button.png Diff not rendered. BIN +59.7 KB assets/images/help/discussions/click-delete-discussion.png Diff not rendered. BIN +65.3 KB assets/images/help/discussions/click-delete-for-category.png Diff not rendered. BIN +68.9 KB assets/images/help/discussions/click-delete-this-discussion-button.png Diff not rendered. BIN +353 KB assets/images/help/discussions/click-discussion-in-list.png Diff not rendered. BIN +41 KB assets/images/help/discussions/click-edit-categories.png Diff not rendered. BIN +64.3 KB assets/images/help/discussions/click-edit-for-category.png Diff not rendered. BIN +60.2 KB assets/images/help/discussions/click-edit-pinned-discussion.png Diff not rendered. BIN +104 KB assets/images/help/discussions/click-new-category-button.png Diff not rendered. BIN +98.2 KB assets/images/help/discussions/click-pin-discussion-button.png Diff not rendered. BIN +55.7 KB assets/images/help/discussions/click-pin-discussion.png Diff not rendered. BIN +104 KB assets/images/help/discussions/click-save.png Diff not rendered. BIN +59.9 KB assets/images/help/discussions/click-transfer-discussion-button.png Diff not rendered. BIN +60.2 KB assets/images/help/discussions/click-transfer-discussion.png Diff not rendered. BIN +63.3 KB assets/images/help/discussions/click-unpin-discussion-button.png Diff not rendered. BIN +59.8 KB assets/images/help/discussions/click-unpin-discussion.png Diff not rendered. BIN +140 KB assets/images/help/discussions/comment-mark-as-answer-button.png Diff not rendered. BIN +136 KB assets/images/help/discussions/comment-marked-as-answer.png Diff not rendered. BIN +234 KB assets/images/help/discussions/customize-pinned-discussion.png Diff not rendered. BIN +1.21 MB assets/images/help/discussions/discussons-hero.png Diff not rendered. BIN +139 KB assets/images/help/discussions/edit-category-details.png Diff not rendered. BIN +136 KB assets/images/help/discussions/edit-existing-category-details.png Diff not rendered. BIN +55.5 KB assets/images/help/discussions/existing-category-click-save-changes-button.png Diff not rendered. BIN +680 KB assets/images/help/discussions/hero.png Diff not rendered. BIN +307 KB assets/images/help/discussions/most-helpful.png Diff not rendered. BIN +52.9 KB assets/images/help/discussions/new-category-click-create-button.png Diff not rendered. BIN +132 KB assets/images/help/discussions/new-discussion-button.png Diff not rendered. BIN +140 KB assets/images/help/discussions/new-discussion-select-category-dropdown-menu.png Diff not rendered. BIN +46.7 KB assets/images/help/discussions/new-discussion-start-discussion-button.png Diff not rendered. BIN +108 KB assets/images/help/discussions/new-discussion-title-and-body-fields.png Diff not rendered. BIN +23.1 KB assets/images/help/discussions/public-repo-settings.png Diff not rendered. BIN +49.5 KB assets/images/help/discussions/repository-discussions-tab.png Diff not rendered. BIN +51.8 KB assets/images/help/discussions/search-and-filter-controls.png Diff not rendered. BIN +44.4 KB assets/images/help/discussions/search-result.png Diff not rendered. BIN +35.4 KB assets/images/help/discussions/select-discussions-checkbox.png Diff not rendered. BIN +44.8 KB assets/images/help/discussions/setup-discussions-button.png Diff not rendered. BIN +95.9 KB assets/images/help/discussions/toggle-allow-users-with-read-access-checkbox.png Diff not rendered. BIN +73 KB assets/images/help/discussions/unanswered-discussion.png Diff not rendered. BIN +81.3 KB assets/images/help/discussions/use-choose-a-repository-drop-down.png Diff not rendered. BIN +30.3 KB assets/images/help/discussions/your-discussions.png Diff not rendered. BIN +563 KB assets/images/help/education/click-get-teacher-benefits.png Diff not rendered. BIN +116 KB assets/images/help/images/overview-actions-result-navigate.png Diff not rendered. BIN +150 KB assets/images/help/images/overview-actions-result-updated-2.png Diff not rendered. BIN +128 KB assets/images/help/images/workflow-graph-job.png Diff not rendered. BIN +135 KB assets/images/help/images/workflow-graph.png Diff not rendered. BIN +5.46 KB assets/images/help/organizations/update-profile-button.png Diff not rendered. BIN +44.6 KB assets/images/help/pull_requests/dependency-review-rich-diff.png Diff not rendered. BIN +24.6 KB assets/images/help/pull_requests/dependency-review-source-diff.png Diff not rendered. BIN +214 KB assets/images/help/pull_requests/dependency-review-vulnerability.png Diff not rendered. BIN +105 KB assets/images/help/pull_requests/file-filter-menu-json.png Diff not rendered. BIN +22.5 KB (510%) assets/images/help/pull_requests/pull-request-tabs-changed-files.png Diff not rendered. BIN +45.2 KB assets/images/help/repository/actions-delete-artifact-updated.png Diff not rendered. BIN +122 KB assets/images/help/repository/actions-failed-pester-test-updated.png Diff not rendered. BIN +45.4 KB assets/images/help/repository/artifact-drop-down-updated.png Diff not rendered. BIN +54.5 KB assets/images/help/repository/cancel-check-suite-updated.png Diff not rendered. BIN +120 KB assets/images/help/repository/copy-link-button-updated-2.png Diff not rendered. BIN +77.6 KB assets/images/help/repository/delete-all-logs-updated-2.png Diff not rendered. BIN +326 KB assets/images/help/repository/docker-action-workflow-run-updated.png Diff not rendered. BIN +84.6 KB assets/images/help/repository/download-logs-drop-down-updated-2.png Diff not rendered. BIN +170 KB assets/images/help/repository/in-progress-run.png Diff not rendered. BIN +124 KB assets/images/help/repository/javascript-action-workflow-run-updated-2.png Diff not rendered. BIN +116 KB assets/images/help/repository/passing-data-between-jobs-in-a-workflow-updated.png Diff not rendered. BIN +80.8 KB assets/images/help/repository/rerun-checks-drop-down-updated.png Diff not rendered. BIN +41.2 KB assets/images/help/repository/search-log-box-updated-2.png Diff not rendered. BIN +133 KB assets/images/help/repository/super-linter-workflow-results-updated-2.png Diff not rendered. BIN +97.5 KB assets/images/help/repository/superlinter-lint-code-base-job-updated.png Diff not rendered. BIN -128 KB assets/images/help/repository/upload-build-test-artifact.png Diff not rendered. BIN +27.5 KB (170%) assets/images/help/repository/view-run-billable-time.png Diff not rendered. BIN +54.8 KB assets/images/help/repository/workflow-run-kebab-horizontal-icon-updated-2.png Diff not rendered. BIN +7.54 KB assets/images/help/settings/appearance-tab.png Diff not rendered. BIN +39.7 KB assets/images/help/settings/theme-settings-radio-buttons.png Diff not rendered. BIN +11.1 KB assets/images/help/settings/update-theme-preference-button.png Diff not rendered. BIN +22.5 KB assets/images/help/sponsors/billing-account-switcher.png Diff not rendered. BIN +6.37 KB (150%) assets/images/help/sponsors/edit-sponsorship-payment-button.png Diff not rendered. BIN +34.8 KB assets/images/help/sponsors/link-account-button.png Diff not rendered. BIN +12.8 KB (170%) assets/images/help/sponsors/manage-your-sponsorship-button.png Diff not rendered. BIN +20.6 KB assets/images/help/sponsors/organization-update-email-textbox.png Diff not rendered. BIN +13.5 KB assets/images/help/sponsors/pay-prorated-amount-link.png Diff not rendered. BIN +34.7 KB assets/images/help/sponsors/select-an-account-drop-down.png Diff not rendered. BIN +17 KB assets/images/help/sponsors/sponsor-as-drop-down-menu.png Diff not rendered. BIN +15.8 KB assets/images/help/sponsors/sponsoring-as-drop-down-menu.png Diff not rendered. BIN +16.1 KB assets/images/help/sponsors/sponsoring-settings-button.png Diff not rendered. BIN +29.5 KB assets/images/help/sponsors/sponsoring-tab.png Diff not rendered. BIN +7.91 KB assets/images/help/sponsors/update-checkbox-manage.png Diff not rendered. BIN +43 KB (160%) assets/images/marketplace/marketplace-request-button.png Diff not rendered. BIN +53.6 KB assets/images/marketplace/marketplace_verified_creator_badges_apps.png Diff not rendered. 6 content/actions/creating-actions/creating-a-docker-container-action.md @@ -226,6 +226,10 @@ jobs: ``` {% endraw %} From your repository, click the **Actions** tab, and select the latest workflow run. You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. From your repository, click the **Actions** tab, and select the latest workflow run. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}Under **Jobs** or in the visualization graph, click **A job to say hello**. {% endif %}You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 6 content/actions/creating-actions/creating-a-javascript-action.md @@ -261,9 +261,11 @@ jobs: ``` {% endraw %} From your repository, click the **Actions** tab, and select the latest workflow run. You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. From your repository, click the **Actions** tab, and select the latest workflow run. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}Under **Jobs** or in the visualization graph, click **A job to say hello**. {% endif %}You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% elsif currentVersion ver_gt "enterprise-server@2.22" %}  {% else %}  4 content/actions/guides/about-packaging-with-github-actions.md @@ -25,7 +25,11 @@ Creating a package at the end of a continuous integration workflow can help duri Now, when reviewing a pull request, you'll be able to look at the workflow run and download the artifact that was produced. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} This will let you run the code in the pull request on your machine, which can help with debugging or testing the pull request. 4 content/actions/guides/building-and-testing-powershell.md @@ -60,7 +60,11 @@ jobs: * `run: Test-Path resultsfile.log` - Check whether a file called `resultsfile.log` is present in the repository's root directory. * `Should -Be $true` - Uses Pester to define an expected result. If the result is unexpected, then {% data variables.product.prodname_actions %} flags this as a failed test. For example: {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} * `Invoke-Pester Unit.Tests.ps1 -Passthru` - Uses Pester to execute tests defined in a file called `Unit.Tests.ps1`. For example, to perform the same test described above, the `Unit.Tests.ps1` will contain the following: ``` 7 content/actions/guides/storing-workflow-data-as-artifacts.md @@ -108,8 +108,6 @@ jobs: path: output/test/code-coverage.html ```  {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} ### Configuring a custom artifact retention period @@ -238,7 +236,12 @@ jobs: echo The result is $value ``` The workflow run will archive any artifacts that it generated. For more information on downloading archived artifacts, see "[Downloading workflow artifacts](/actions/managing-workflow-runs/downloading-workflow-artifacts)." {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% if currentVersion == "free-pro-team@latest" %} 8 content/actions/index.md @@ -68,18 +68,18 @@ versions: <h2 class="mb-2 font-mktg h1">Code examples</h2> <div class="pr-lg-3 mb-5 mt-3"> <input class="js-code-example-filter input-lg py-2 px-3 col-12 col-lg-8 form-control" placeholder="Search code examples" type="search" autocomplete="off" aria-label="Search code examples"/> <input class="js-filter-card-filter input-lg py-2 px-3 col-12 col-lg-8 form-control" placeholder="Search code examples" type="search" autocomplete="off" aria-label="Search code examples"/> </div> <div class="d-flex flex-wrap gutter"> {% render 'code-example-card' for actionsCodeExamples as example %} </div> <button class="js-code-example-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> <button class="js-filter-card-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> <div class="js-code-example-no-results d-none py-4 text-center text-gray font-mktg"> <div class="js-filter-card-no-results d-none py-4 text-center text-gray font-mktg"> <div class="mb-3">{% octicon "search" width="24" %}</div> <h3 class="text-normal">Sorry, there is no result for <strong class="js-code-example-filter-value"></strong></h3> <h3 class="text-normal">Sorry, there is no result for <strong class="js-filter-card-value"></strong></h3> <p class="my-3 f4">It looks like we don't have an example that fits your filter.<br>Try another filter or add your code example</p> <a href="https://github.com/github/docs/blob/main/data/variables/action_code_examples.yml">Learn how to add a code example {% octicon "arrow-right" %}</a> </div> 11 content/actions/learn-github-actions/introduction-to-github-actions.md @@ -204,7 +204,7 @@ In this diagram, you can see the workflow file you just created and how the {% d ### Viewing the job's activity Once your job has started running, you can view each step's activity on {% data variables.product.prodname_dotcom %}. Once your job has started running, you can {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}see a visualization graph of the run's progress and {% endif %}view each step's activity on {% data variables.product.prodname_dotcom %}. {% data reusables.repositories.navigate-to-repo %} 1. Under your repository name, click **Actions**. @@ -213,7 +213,14 @@ Once your job has started running, you can view each step's activity on {% data  1. Under "Workflow runs", click the name of the run you want to see.  {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. Under **Jobs** or in the visualization graph, click the job you want to see.  {% endif %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. View the results of each step.  {% elsif currentVersion ver_gt "enterprise-server@2.22" %} 1. Click on the job name to see the results of each step.  {% else %} 7 content/actions/managing-workflow-runs/canceling-a-workflow.md @@ -17,9 +17,14 @@ versions: {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. From the list of workflow runs, click the name of the `queued` or `in progress` run that you want to cancel.  1. In the upper-right corner of the workflow, click **Cancel workflow**. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} ### Steps {% data variables.product.prodname_dotcom %} takes to cancel a workflow run 4 content/actions/managing-workflow-runs/downloading-workflow-artifacts.md @@ -20,4 +20,8 @@ versions: {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under **Artifacts**, click the artifact you want to download. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 1 content/actions/managing-workflow-runs/index.md @@ -18,6 +18,7 @@ versions: {% data reusables.actions.enterprise-beta %} {% data reusables.actions.enterprise-github-hosted-runners %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% link_in_list /using-the-visualization-graph %}{% endif %} {% link_in_list /viewing-workflow-run-history %} {% link_in_list /using-workflow-run-logs %} {% link_in_list /manually-running-a-workflow %} 3 content/actions/managing-workflow-runs/re-running-a-workflow.md @@ -16,5 +16,4 @@ versions: {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run all jobs**.  1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run all jobs**.{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% else %}{% endif %} 4 content/actions/managing-workflow-runs/removing-workflow-artifacts.md @@ -27,7 +27,11 @@ versions: {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under **Artifacts**, click {% octicon "trashcan" aria-label="The trashcan icon" %} next to the artifact you want to remove. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} ### Setting the retention period for an artifact 23 content/actions/managing-workflow-runs/using-the-visualization-graph.md @@ -0,0 +1,23 @@ --- title: Using the visualization graph intro: Every workflow run generates a real-time graph that illustrates the run progress. You can use this graph to monitor and debug workflows. product: '{% data reusables.gated-features.actions %}' versions: free-pro-team: '*' enterprise-server: '>=3.1' --- {% data reusables.actions.enterprise-beta %} {% data reusables.actions.visualization-beta %} {% data reusables.actions.enterprise-github-hosted-runners %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. The graph displays each job in the workflow. An icon to the left of the job name indicates the status of the job. Lines between jobs indicate dependencies.  2. Click on a job to view the job log.  18 content/actions/managing-workflow-runs/using-workflow-run-logs.md @@ -45,7 +45,11 @@ You can search the build logs for a particular step. When you search logs, only {% data reusables.repositories.navigate-to-job-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper-right corner of the log output, in the **Search logs** search box, type a search query. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% else %} 1. To expand each step you want to include in your search, click the step.  @@ -63,8 +67,12 @@ You can download the log files from your workflow run. You can also download a w {% data reusables.repositories.view-run-superlinter %} {% data reusables.repositories.navigate-to-job-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} and select **Download log archive**. 1. In the upper right corner, click {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% octicon "gear" aria-label="The gear icon" %}{% else %}{% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}{% endif %} and select **Download log archive**. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% else %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} and select **Download log archive**.  @@ -80,9 +88,17 @@ You can delete the log files from your workflow run. {% data reusables.repositor {% data reusables.repositories.view-run-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 2. To delete the log files, click the **Delete all logs** button and review the confirmation prompt. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} After deleting logs, the **Delete all logs** button is removed to indicate that no log files remain in the workflow run. {% else %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}. 2 content/actions/managing-workflow-runs/viewing-job-execution-time.md @@ -15,7 +15,7 @@ Billable job execution minutes are only shown for jobs run on private repositori {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under the job summary, you can view the job's execution time. To view the billable job execution time, click **Run and billable time details**. 1. Under the job summary, you can view the job's execution time. To view details about the billable job execution time, click the time under **Billable time**.  {% note %} 5 content/actions/quickstart.md @@ -60,8 +60,13 @@ Committing the workflow file in your repository triggers the `push` event and ru {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow-superlinter %} {% data reusables.repositories.view-run-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. Under **Jobs** or in the visualization graph, click the **Lint code base** job.  {% else %} 1. In the left sidebar, click the **Lint code base** job.  {% endif %} {% data reusables.repositories.view-failed-job-results-superlinter %} ### More starter workflows 49 content/developers/github-marketplace/about-github-marketplace.md @@ -1,6 +1,6 @@ --- title: About GitHub Marketplace intro: 'Learn the basics to prepare your app for review before joining {% data variables.product.prodname_marketplace %}.' intro: 'Learn about {% data variables.product.prodname_marketplace %} where you can share your apps and actions publicly with all {% data variables.product.product_name %} users.' redirect_from: - /apps/marketplace/getting-started/ - /marketplace/getting-started @@ -14,52 +14,41 @@ versions: {% data reusables.actions.actions-not-verified %} To learn about publishing {% data variables.product.prodname_actions %} in the {% data variables.product.prodname_marketplace %}, see "[Publishing actions in GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)." To learn about publishing {% data variables.product.prodname_actions %} in {% data variables.product.prodname_marketplace %}, see "[Publishing actions in GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)." ### Apps You can list verified and unverified apps in {% data variables.product.prodname_marketplace %}. Unverified apps do not go through the security, testing, and verification cycle {% data variables.product.prodname_dotcom %} requires for verified apps. Anyone can share their apps with other users on {% data variables.product.prodname_marketplace %} but only listings that are verified by {% data variables.product.company_short %} can include paid plans. For more information, see "[About verified creators](/developers/github-marketplace/about-verified-creators)." Verified apps have a green badge in {% data variables.product.prodname_marketplace %}. Unverified apps have a grey badge next to their listing and are only available as free apps. If you're interested in creating an app for {% data variables.product.prodname_marketplace %}, but you're new to {% data variables.product.prodname_github_apps %} or {% data variables.product.prodname_oauth_app %}s, see "[Building {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps)" or "[Building {% data variables.product.prodname_oauth_app %}s](/developers/apps/building-oauth-apps)."  If you're interested in creating an app for {% data variables.product.prodname_marketplace %}, but you're new to {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_app %}s, see "[Building apps](/apps/)." {% data reusables.marketplace.github_apps_preferred %}, although you can list both OAuth and {% data variables.product.prodname_github_app %}s in {% data variables.product.prodname_marketplace %}. See "[Differences between GitHub and OAuth apps](/apps/differences-between-apps/)" for more details. To learn more about switching from OAuth to {% data variables.product.prodname_github_apps %}, see [Migrating OAuth Apps to {% data variables.product.prodname_github_app %}s](/apps/migrating-oauth-apps-to-github-apps/). {% data reusables.marketplace.github_apps_preferred %}, although you can list both OAuth and {% data variables.product.prodname_github_app %}s in {% data variables.product.prodname_marketplace %}. For more information, see "[Differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_app %}s](/apps/differences-between-apps/)" and "[Migrating {% data variables.product.prodname_oauth_app %}s to {% data variables.product.prodname_github_apps %}](/apps/migrating-oauth-apps-to-github-apps/)." If you have questions about {% data variables.product.prodname_marketplace %}, please contact {% data variables.contact.contact_support %} directly. #### Unverified Apps Unverified apps do not need to meet the "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)" or go through the "[Security review process](/marketplace/getting-started/security-review-process/)". {% data reusables.marketplace.unverified-apps %} Having a published paid plan will prevent you from being able to submit an unverified app. You must remove paid plans or keep them in draft mode before publishing an unverified app. To list your unverified app in {% data variables.product.prodname_marketplace %}, you only need to create a "[Listing on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/)" and submit it as an unverified listing. {% data reusables.marketplace.launch-with-free %} ### Publishing an app to {% data variables.product.prodname_marketplace %} #### Verified Apps When you have finished creating your app, you can share it with other users by publishing it to {% data variables.product.prodname_marketplace %}. In summary, the process is: If you've already built an app and you're interested in submitting a verified listing in {% data variables.product.prodname_marketplace %}, start here: 1. Review your app carefully to ensure that it will behave as expected in other repositories and that it follows best practice guidelines. For more information, see "[Security best practices for apps](/developers/github-marketplace/security-best-practices-for-apps)" and "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app#best-practice-for-customer-experience)." 1. [Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)<br/>Learn about requirements, guidelines, and the app submission process. 1. Add webhook events to the app to track user billing requests. For more information about the {% data variables.product.prodname_marketplace %} API, webhook events, and billing requests, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." 1. [Integrating with the {% data variables.product.prodname_marketplace %} API](/marketplace/integrating-with-the-github-marketplace-api/)<br/>Before you can list your app on {% data variables.product.prodname_marketplace %}, you'll need to integrate billing flows using the {% data variables.product.prodname_marketplace %} API and webhook events. 1. Create a draft {% data variables.product.prodname_marketplace %} listing. For more information, see "[Drafting a listing for your app](/developers/github-marketplace/drafting-a-listing-for-your-app)." 1. [Listing on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/) <br/>Create a draft {% data variables.product.prodname_marketplace %} listing, configure webhook settings, and set up pricing plans. 1. Add a pricing plan. For more information, see "[Setting pricing plans for your listing](/developers/github-marketplace/setting-pricing-plans-for-your-listing)." 1. [Selling your app](/marketplace/selling-your-app/)<br/>Learn about pricing plans, billing cycles, and how to receive payment from {% data variables.product.prodname_dotcom %} for your app. 1. Check whether your app meets the requirements for listing on {% data variables.product.prodname_marketplace %} as a free or a paid app. For more information, see "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app)." 1. [{% data variables.product.prodname_marketplace %} Insights](/marketplace/github-marketplace-insights/)<br/>See how your app is performing in {% data variables.product.prodname_marketplace %}. You can use metrics collected by {% data variables.product.prodname_dotcom %} to guide your marketing campaign and be successful in {% data variables.product.prodname_marketplace %}. 1. Read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." 1. [{% data variables.product.prodname_marketplace %} transactions](/marketplace/github-marketplace-transactions/)<br/>Download and view transaction data for your {% data variables.product.prodname_marketplace %} listing. 1. Submit your listing for publication in {% data variables.product.prodname_marketplace %}, requesting verification if you want to sell the app. For more information, see "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication)." ### Reviewing your app An onboarding expert will contact you with any questions or further steps. For example, if you have added a paid plan, you will need to complete the verification process and complete financial onboarding. As soon as your listing is approved the app is published to {% data variables.product.prodname_marketplace %}. We want to make sure that the apps offered on {% data variables.product.prodname_marketplace %} are safe, secure, and well tested. The {% data variables.product.prodname_marketplace %} onboarding specialists will review your app to ensure that it meets all requirements. Follow the guidelines in these articles before submitting your app: ### Seeing how your app is performing You can access metrics and transactions for your listing. For more information, see: * [Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/) * [Security review process](/marketplace/getting-started/security-review-process/) - "[Viewing metrics for your listing](/developers/github-marketplace/viewing-metrics-for-your-listing)" - "[Viewing transactions for your listing](/developers/github-marketplace/viewing-transactions-for-your-listing)" 43 content/developers/github-marketplace/about-verified-creators.md @@ -0,0 +1,43 @@ --- title: About verified creators intro: 'Each organization that wants to sell apps on {% data variables.product.prodname_marketplace %} must follow a verification process. Their identity is checked and their billing process reviewed.' versions: free-pro-team: '*' --- ### About verified creators A verified creator is an organization that {% data variables.product.company_short %} has checked. Anyone can share their apps with other users on {% data variables.product.prodname_marketplace %} but only organizations that are verified by {% data variables.product.company_short %} can sell apps. For more information about organizations, see "[About organizations](/github/setting-up-and-managing-organizations-and-teams/about-organizations)." The verification process aims to protect users. For example, it verifies the seller's identity, checks that their {% data variables.product.product_name %} organization is set up securely, and that they can be contacted for support. After passing the verification checks, any apps that the organization lists on {% data variables.product.prodname_marketplace %} are shown with a verified creator badge {% octicon "verified" aria-label="Verified creator badge" %}. The organization can now add paid plans to any of their apps. Each app with a paid plan also goes through a financial onboarding process to check that it's set up to handle billing correctly.  In addition to the verified creator badge, you'll also see badges for unverified and verified apps. These apps were published using the old method for verifying individual apps.  For information on finding apps to use, see "[Searching {% data variables.product.prodname_marketplace %}](/github/searching-for-information-on-github/searching-github-marketplace)." ### About the verification process The first time you request verification for a listing of one of your apps, you will enter the verification process. An onboarding expert will guide you through the process. This includes checking: - Profile information - The basic profile information is populated accurately and appropriately. - Security - The organization has enabled two-factor authentication. - Verified domain - The organization has verified the domain of the site URL. - Purchase webhook event - The event is handled correctly by the app. When your organization is verified, all your apps are shown with a verified creator badge. You are now able to offer paid plans for any of your apps. For more information about the requirements for listing an app on {% data variables.product.prodname_marketplace %}, see "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)." {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." {% note %} **Note:** This verification process for apps replaces the previous process where individual apps were verified. The current process is similar to the verification process for actions. If you have apps that were verified under the old process, these will not be affected by the changes. The {% data variables.product.prodname_marketplace %} team will contact you with details of how to migrate to organization-based verification. {% endnote %} 12 content/developers/github-marketplace/billing-customers.md @@ -13,17 +13,17 @@ versions: ### Understanding the billing cycle Customers can choose a monthly or yearly billing cycle when they purchase your app. All changes customers make to the billing cycle and plan selection will trigger a `marketplace_purchase` event. You can refer to the `marketplace_purchase` webhook payload to see which billing cycle a customer selects and when the next billing date begins (`effective_date`). For more information about webhook payloads, see "[{% data variables.product.prodname_marketplace %} webhook events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)." Customers can choose a monthly or yearly billing cycle when they purchase your app. All changes customers make to the billing cycle and plan selection will trigger a `marketplace_purchase` event. You can refer to the `marketplace_purchase` webhook payload to see which billing cycle a customer selects and when the next billing date begins (`effective_date`). For more information about webhook payloads, see "[Webhook events for the {% data variables.product.prodname_marketplace %} API](/developers/github-marketplace/webhook-events-for-the-github-marketplace-api)." ### Providing billing services in your app's UI Customers must be able to perform the following actions from your app's website: - Customers must be able to modify or cancel their {% data variables.product.prodname_marketplace %} plans for personal and organizational accounts separately. Customers should be able to perform the following actions from your app's website: - Customers should be able to modify or cancel their {% data variables.product.prodname_marketplace %} plans for personal and organizational accounts separately. {% data reusables.marketplace.marketplace-billing-ui-requirements %} ### Billing services for upgrades, downgrades, and cancellations Follow these guidelines for upgrades, downgrades, and cancellations to maintain a clear and consistent billing process. For more detailed instructions about the {% data variables.product.prodname_marketplace %} purchase events, see "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)." Follow these guidelines for upgrades, downgrades, and cancellations to maintain a clear and consistent billing process. For more detailed instructions about the {% data variables.product.prodname_marketplace %} purchase events, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." You can use the `marketplace_purchase` webhook's `effective_date` key to determine when a plan change will occur and periodically synchronize the [List accounts for a plan](/rest/reference/apps#list-accounts-for-a-plan). @@ -33,7 +33,7 @@ When a customer upgrades their pricing plan or changes their billing cycle from {% data reusables.marketplace.marketplace-failed-purchase-event %} For information about building upgrade and downgrade workflows into your app, see "[Upgrading and downgrading plans](/marketplace/integrating-with-the-github-marketplace-api/upgrading-and-downgrading-plans/)." For information about building upgrade and downgrade workflows into your app, see "[Handling plan changes](/developers/github-marketplace/handling-plan-changes)." #### Downgrades and cancellations @@ -45,4 +45,4 @@ When a customer cancels a plan, you must: {% data reusables.marketplace.cancellation-clarification %} - Enable them to upgrade the plan through GitHub if they would like to continue the plan at a later time. For information about building cancellation workflows into your app, see "[Cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/)." For information about building cancellation workflows into your app, see "[Handling plan cancellations](/developers/github-marketplace/handling-plan-cancellations)." 20 ...nt/developers/github-marketplace/customer-experience-best-practices-for-apps.md @@ -0,0 +1,20 @@ --- title: Customer experience best practices for apps intro: 'Guidelines for creating an app that will be easy to use and understand.' shortTitle: Customer experience best practice versions: free-pro-team: '*' --- If you follow these best practices it will help you to provide a good customer experience. ### Customer communication - Marketing materials for the app should accurately represent the app's behavior. - Apps should include links to user-facing documentation that describe how to set up and use the app. - Customers should be able to see what type of plan they have in the billing, profile, or account settings section of the app. - Customers should be able to install and use your app on both a personal account and an organization account. They should be able to view and manage the app on those accounts separately. ### Plan management {% data reusables.marketplace.marketplace-billing-ui-requirements %} 4 content/developers/github-marketplace/drafting-a-listing-for-your-app.md @@ -59,8 +59,8 @@ Once you've created a {% data variables.product.prodname_marketplace %} draft li ### Submitting your app Once you've completed your {% data variables.product.prodname_marketplace %} listing, you can submit your listing for review from the **Overview** page. You'll need to read and accept the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)," and then you can click **Submit for review**. After you submit your app for review, the {% data variables.product.prodname_marketplace %} onboarding team will contact you with additional information about the onboarding process. You can learn more about the onboarding and security review process in "[Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)." Once you've completed your {% data variables.product.prodname_marketplace %} listing, you can submit your listing for review from the **Overview** page. You'll need to read and accept the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)," and then you can click **Submit for review**. After you submit your app for review, an onboarding expert will contact you with additional information about the onboarding process. You can learn more about the onboarding and security review process in "[Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)." ### Removing a {% data variables.product.prodname_marketplace %} listing If you no longer want to list your app in {% data variables.product.prodname_marketplace %}, contact [marketplace@github.com](mailto:marketplace@github.com) to remove your listing. If you no longer want to list your app in {% data variables.product.prodname_marketplace %}, contact {% data variables.contact.contact_support %} to remove your listing. 2 content/developers/github-marketplace/handling-new-purchases-and-free-trials.md @@ -28,7 +28,7 @@ GitHub then sends the [`marketplace_purchase`](/webhooks/event-payloads/#marketp Read the `effective_date` and `marketplace_purchase` object from the `marketplace_purchase` webhook to determine which plan the customer purchased, when the billing cycle starts, and when the next billing cycle begins. If your app offers a free trial, read the `marketplace_purchase[on_free_trial]` attribute from the webhook. If the value is `true`, your app will need to track the free trial start date (`effective_date`) and the date the free trial ends (`free_trial_ends_on`). Use the `free_trial_ends_on` date to display the remaining days left in a free trial in your app's UI. You can do this in either a banner or in your [billing UI](/marketplace/selling-your-app/billing-customers-in-github-marketplace/#providing-billing-services-in-your-apps-ui). To learn how to handle cancellations before a free trial ends, see "[Cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/)." See "[Upgrading and downgrading plans](/marketplace/integrating-with-the-github-marketplace-api/upgrading-and-downgrading-plans/)" to find out how to transition a free trial to a paid plan when a free trial expires. If your app offers a free trial, read the `marketplace_purchase[on_free_trial]` attribute from the webhook. If the value is `true`, your app will need to track the free trial start date (`effective_date`) and the date the free trial ends (`free_trial_ends_on`). Use the `free_trial_ends_on` date to display the remaining days left in a free trial in your app's UI. You can do this in either a banner or in your [billing UI](/marketplace/selling-your-app/billing-customers-in-github-marketplace/#providing-billing-services-in-your-apps-ui). To learn how to handle cancellations before a free trial ends, see "[Handling plan cancellations](/developers/github-marketplace/handling-plan-cancellations)." See "[Handling plan changes](/developers/github-marketplace/handling-plan-changes)" to find out how to transition a free trial to a paid plan when a free trial expires. See "[{% data variables.product.prodname_marketplace %} webhook events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)" for an example of the `marketplace_purchase` event payload. 6 content/developers/github-marketplace/index.md @@ -11,8 +11,10 @@ versions: {% topic_link_in_list /creating-apps-for-github-marketplace %} {% link_in_list /about-github-marketplace %} {% link_in_list /about-verified-creators %} {% link_in_list /requirements-for-listing-an-app %} {% link_in_list /security-review-process-for-submitted-apps %} {% link_in_list /security-best-practices-for-apps %} {% link_in_list /customer-experience-best-practices-for-apps %} {% link_in_list /viewing-metrics-for-your-listing %} {% link_in_list /viewing-transactions-for-your-listing %} {% topic_link_in_list /using-the-github-marketplace-api-in-your-app %} @@ -27,7 +29,7 @@ versions: {% link_in_list /writing-a-listing-description-for-your-app %} {% link_in_list /setting-pricing-plans-for-your-listing %} {% link_in_list /configuring-a-webhook-to-notify-you-of-plan-changes %} {% link_in_list /submitting-your-listing-for-review %} {% link_in_list /submitting-your-listing-for-publication %} {% topic_link_in_list /selling-your-app-on-github-marketplace %} {% link_in_list /pricing-plans-for-github-marketplace-apps %} {% link_in_list /billing-customers %} 32 content/developers/github-marketplace/pricing-plans-for-github-marketplace-apps.md @@ -10,35 +10,45 @@ versions: {% data variables.product.prodname_marketplace %} pricing plans can be free, flat rate, or per-unit, and GitHub lists the price in US dollars. Customers purchase your app using a payment method attached to their {% data variables.product.product_name %} account, without having to leave GitHub.com. You don't have to write code to perform billing transactions, but you will have to handle [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows) for purchase events. {% data variables.product.prodname_marketplace %} pricing plans can be free, flat rate, or per-unit. Prices are set, displayed, and processed in US dollars. Paid plans are restricted to verified listings. Customers purchase your app using a payment method attached to their {% data variables.product.product_name %} account, without having to leave {% data variables.product.prodname_dotcom_the_website %}. You don't have to write code to perform billing transactions, but you will have to handle events from the {% data variables.product.prodname_marketplace %} API. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If the app you're listing on {% data variables.product.prodname_marketplace %} has multiple plan options, you can set up corresponding pricing plans. For example, if your app has two plan options, an open source plan and a pro plan, you can set up a free pricing plan for your open source plan and a flat pricing plan for your pro plan. Each {% data variables.product.prodname_marketplace %} listing must have an annual and a monthly price for every plan that's listed. For more information on how to create a pricing plan, see "[Setting a {% data variables.product.prodname_marketplace %} listing's pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/)." {% note %} {% data reusables.marketplace.free-plan-note %} **Note:** If you're listing an app on {% data variables.product.prodname_marketplace %}, you can't list your app with a free pricing plan if you offer a paid service outside of {% data variables.product.prodname_marketplace %}. ### Types of pricing plans {% endnote %} #### Free pricing plans ### Types of pricing plans {% data reusables.marketplace.free-apps-encouraged %} Free plans are completely free for users. If you set up a free pricing plan, you cannot charge users that choose the free pricing plan for the use of your app. You can create both free and paid plans for your listing. All apps need to handle events for new purchases and cancellations. Apps that only have free plans do not need to handle events for free trials, upgrades, and downgrades. For more information, see: "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If you add a paid plan to an app that you've already listed in {% data variables.product.prodname_marketplace %} as a free service, you'll need to request verification for the app and go through financial onboarding. #### Paid pricing plans **Free pricing plans** are completely free for users. If you set up a free pricing plan, you cannot charge users that choose the free pricing plan for the use of your app. You can create both free and paid plans for your listing. Unverified free apps do not need to implement any billing flows. Free apps that are verified by Github need to implement billing flows for new purchases and cancellations, but do not need to implement billing flows for free trials, upgrades, and downgrades. If you add a paid plan to an app that you've already listed in {% data variables.product.prodname_marketplace %} as a free service, you'll need to resubmit the app for review. There are two types of paid pricing plan: **Flat rate pricing plans** charge a set fee on a monthly and yearly basis. - Flat rate pricing plans charge a set fee on a monthly and yearly basis. **Per-unit pricing plans** charge a set fee on either a monthly or yearly basis for a unit that you specify. A "unit" can be anything you'd like (for example, a user, seat, or person). - Per-unit pricing plans charge a set fee on either a monthly or yearly basis for a unit that you specify. A "unit" can be anything you'd like (for example, a user, seat, or person). **Marketplace free trials** provide 14-day free trials of OAuth or GitHub Apps to customers. When you [set up a Marketplace pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/), you can select the option to provide a free trial for flat-rate or per-unit pricing plans. You may also want to offer free trials. These provide free, 14-day trials of OAuth or GitHub Apps to customers. When you set up a Marketplace pricing plan, you can select the option to provide a free trial for flat-rate or per-unit pricing plans. ### Free trials Customers can start a free trial for any available paid plan on a Marketplace listing, but will not be able to create more than one free trial for a Marketplace product. Customers can start a free trial for any paid plan on a Marketplace listing that includes free trials. However, customers cannot create more than one free trial per marketplace product. Free trials have a fixed length of 14 days. Customers are notified 4 days before the end of their trial period (on day 11 of the free trial) that their plan will be upgraded. At the end of a free trial, customers will be auto-enrolled into the plan they are trialing if they do not cancel. See "[New purchases and free trials](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/)" for details on how to handle free trials in your app. For more information, see: "[Handling new purchases and free trials](/developers/github-marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/)." {% note %} 61 content/developers/github-marketplace/requirements-for-listing-an-app.md @@ -1,6 +1,6 @@ --- title: Requirements for listing an app intro: 'Apps on {% data variables.product.prodname_marketplace %} must meet the requirements outlined on this page before our {% data variables.product.prodname_marketplace %} onboarding specialists will approve the listing.' intro: 'Apps on {% data variables.product.prodname_marketplace %} must meet the requirements outlined on this page before the listing can be published.' redirect_from: - /apps/adding-integrations/listing-apps-on-github-marketplace/requirements-for-listing-an-app-on-github-marketplace/ - /apps/marketplace/listing-apps-on-github-marketplace/requirements-for-listing-an-app-on-github-marketplace/ @@ -12,49 +12,62 @@ versions: free-pro-team: '*' --- <!--UI-LINK: Displayed as a link on the https://github.com/marketplace/new page.--> The requirements for listing an app on {% data variables.product.prodname_marketplace %} vary according to whether you want to offer a free or a paid app. Before you submit your app for review, you must read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." You'll accept the terms within your [draft listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/) on {% data variables.product.product_name %}. Once you've submitted your app, one of the {% data variables.product.prodname_marketplace %} onboarding specialists will reach out to you with more information about the onboarding process, and review your app to ensure it meets these requirements: ### Requirements for all {% data variables.product.prodname_marketplace %} listings ### User experience All listings on {% data variables.product.prodname_marketplace %} should be for tools that provide value to the {% data variables.product.product_name %} community. When you submit your listing for publication, you must read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." - {% data variables.product.prodname_github_app %}s should have a minimum of 100 installations. - {% data variables.product.prodname_oauth_app %}s should have a minimum of 200 users. #### User experience requirements for all apps All listings should meet the following requirements, regardless of whether they are for a free or paid app. - Listings must not actively persuade users away from {% data variables.product.product_name %}. - Listings must include valid contact information for the publisher. - Listings must have a relevant description of the application. - Listings must specify a pricing plan. - Apps must provide value to customers and integrate with the platform in some way beyond authentication. - Apps must be publicly available in {% data variables.product.prodname_marketplace %} and cannot be in beta or available by invite only. - Apps cannot actively persuade users away from {% data variables.product.product_name %}. - Marketing materials for the app must accurately represent the app's behavior. - Apps must include links to user-facing documentation that describe how to set up and use the app. - When a customer purchases an app and GitHub redirects them to the app's installation URL, the app must begin the OAuth flow immediately. For details, see "[Handling new purchases and free trials](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/#step-3-authorization)." - Apps must have webhook events set up to notify the publisher of any plan changes or cancellations using the {% data variables.product.prodname_marketplace %} API. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." - Customers must be able to install your app and select repositories on both a personal and organization account. They should be able to view and manage those accounts separately. For more information on providing a good customer experience, see "[Customer experience best practices for apps](/developers/github-marketplace/customer-experience-best-practices-for-apps)." ### Brand and listing #### Brand and listing requirements for all apps - Apps that use GitHub logos must follow the "[{% data variables.product.product_name %} Logos and Usage](https://github.com/logos)" guidelines. - Apps that use GitHub logos must follow the {% data variables.product.company_short %} guidelines. For more information, see "[{% data variables.product.company_short %} Logos and Usage](https://github.com/logos)." - Apps must have a logo, feature card, and screenshots images that meet the recommendations provided in "[Writing {% data variables.product.prodname_marketplace %} listing descriptions](/marketplace/listing-on-github-marketplace/writing-github-marketplace-listing-descriptions/)." - Listings must include descriptions that are well written and free of grammatical errors. For guidance in writing your listing, see "[Writing {% data variables.product.prodname_marketplace %} listing descriptions](/marketplace/listing-on-github-marketplace/writing-github-marketplace-listing-descriptions/)." ### Security To protect your customers, we recommend that you also follow security best practices. For more information, see "[Security best practices for apps](/developers/github-marketplace/security-best-practices-for-apps)." ### Considerations for free apps Apps will go through a security review before being listed on {% data variables.product.prodname_marketplace %}. A successful review will meet the requirements and follow the security best practices listed in "[Security review process](/marketplace/getting-started/security-review-process/)." For information on the review process, contact [marketplace@github.com](mailto:marketplace@github.com). {% data reusables.marketplace.free-apps-encouraged %} ### Requirements for paid apps In addition to the requirements for all apps above, each app that you offer as a paid service on {% data variables.product.prodname_marketplace %} must also meet the following requirements: - {% data variables.product.prodname_github_app %}s should have a minimum of 100 installations. - {% data variables.product.prodname_oauth_app %}s should have a minimum of 200 users. - All paid apps must handle {% data variables.product.prodname_marketplace %} purchase events for new purchases, upgrades, downgrades, cancellations, and free trials. For more information, see "[Billing requirements for paid apps](#billing-requirements-for-paid-apps)" below. - Publishing organizations must have a verified domain and must enable two-factor authentication. For more information, see "[Requiring two-factor authentication in your organization](/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization.") ### Billing flows When you are ready to publish the app on {% data variables.product.prodname_marketplace %} you must request verification for the listing. Your app must integrate [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows) using the [{% data variables.product.prodname_marketplace %} webhook event](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/). {% note %} #### Free apps The verification process is open to organizations. {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." {% data reusables.marketplace.free-apps-encouraged %} If you are listing a free app, you'll need to meet these requirements: {% endnote %} - Customers must be able to see that they have a free plan in the billing, profile, or account settings section of the app. - When a customer cancels your app, you must follow the flow for [cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/). ### Billing requirements for paid apps #### Paid apps Your app does not need to handle payments but does need to use {% data variables.product.prodname_marketplace %} purchase events to manage new purchases, upgrades, downgrades, cancellations, and free trials. For information about how integrate these events into your app, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." To offer your app as a paid service, you'll need to meet these requirements to list your app on {% data variables.product.prodname_marketplace %}: Using GitHub's billing API allows customers to purchase an app without leaving GitHub and to pay for the service with the payment method already attached to their {% data variables.product.product_name %} account. - To sell your app in {% data variables.product.prodname_marketplace %}, it must use GitHub's billing system. Your app does not need to handle payments but does need to use "[{% data variables.product.prodname_marketplace %} purchase events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)" to manage new purchases, upgrades, downgrades, cancellations, and free trials. See "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)" to learn about how to integrate these events into your app. Using GitHub's billing system allows customers to purchase an app without leaving GitHub and pay for the service with the payment method already attached to their {% data variables.product.product_name %} account. - Apps must support both monthly and annual billing for paid subscriptions purchases. - Listings may offer any combination of free and paid plans. Free plans are optional but encouraged. For more information, see "[Setting a {% data variables.product.prodname_marketplace %} listing's pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/)." {% data reusables.marketplace.marketplace-billing-ui-requirements %} 60 content/developers/github-marketplace/security-best-practices-for-apps.md @@ -0,0 +1,60 @@ --- title: Security best practices for apps intro: 'Guidelines for preparing a secure app to share on {% data variables.product.prodname_marketplace %}.' redirect_from: - /apps/marketplace/getting-started/security-review-process/ - /marketplace/getting-started/security-review-process - /developers/github-marketplace/security-review-process-for-submitted-apps shortTitle: Security best practice versions: free-pro-team: '*' --- If you follow these best practices it will help you to provide a secure user experience. ### Authorization, authentication, and access control We recommend creating a GitHub App rather than an OAuth App. {% data reusables.marketplace.github_apps_preferred %}. See "[Differences between GitHub Apps and OAuth Apps](/apps/differences-between-apps/)" for more details. - Apps should use the principle of least privilege and should only request the OAuth scopes and GitHub App permissions that the app needs to perform its intended functionality. For more information, see [Principle of least privilege](https://en.wikipedia.org/wiki/Principle_of_least_privilege) in Wikipedia. - Apps should provide customers with a way to delete their account, without having to email or call a support person. - Apps should not share tokens between different implementations of the app. For example, a desktop app should have a separate token from a web-based app. Individual tokens allow each app to request the access needed for GitHub resources separately. - Design your app with different user roles, depending on the functionality needed by each type of user. For example, a standard user should not have access to admin functionality, and billing managers might not need push access to repository code. - Apps should not share service accounts such as email or database services to manage your SaaS service. - All services used in your app should have unique login and password credentials. - Admin privilege access to the production hosting infrastructure should only be given to engineers and employees with administrative duties. - Apps should not use personal access tokens to authenticate and should authenticate as an [OAuth App](/apps/about-apps/#about-oauth-apps) or a [GitHub App](/apps/about-apps/#about-github-apps): - OAuth Apps should authenticate using an [OAuth token](/apps/building-oauth-apps/authorizing-oauth-apps/). - GitHub Apps should authenticate using either a [JSON Web Token (JWT)](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app), [OAuth token](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/), or [installation access token](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation). ### Data protection - Apps should encrypt data transferred over the public internet using HTTPS, with a valid TLS certificate, or SSH for Git. - Apps should store client ID and client secret keys securely. We recommend storing them as [environmental variables](http://en.wikipedia.org/wiki/Environment_variable#Getting_and_setting_environment_variables). - Apps should delete all GitHub user data within 30 days of receiving a request from the user, or within 30 days of the end of the user's legal relationship with GitHub. - Apps should not require the user to provide their GitHub password. - Apps should encrypt tokens, client IDs, and client secrets. ### Logging and monitoring Apps should have logging and monitoring capabilities. App logs should be retained for at least 30 days and archived for at least one year. A security log should include: - Authentication and authorization events - Service configuration changes - Object reads and writes - All user and group permission changes - Elevation of role to admin - Consistent timestamping for each event - Source users, IP addresses, and/or hostnames for all logged actions ### Incident response workflow To provide a secure experience for users, you should have a clear incident response plan in place before listing your app. We recommend having a security and operations incident response team in your company rather than using a third-party vendor. You should have the capability to notify {% data variables.product.product_name %} within 24 hours of a confirmed incident. For an example of an incident response workflow, see the "Data Breach Response Policy" on the [SANS Institute website](https://www.sans.org/information-security-policy/). A short document with clear steps to take in the event of an incident is more valuable than a lengthy policy template. ### Vulnerability management and patching workflow You should conduct regular vulnerability scans of production infrastructure. You should triage the results of vulnerability scans and define a period of time in which you agree to remediate the vulnerability. If you are not ready to set up a full vulnerability management program, it's useful to start by creating a patching process. For guidance in creating a patch management policy, see this TechRepublic article "[Establish a patch management policy](https://www.techrepublic.com/blog/it-security/establish-a-patch-management-policy-87756/)." 94 ...ent/developers/github-marketplace/security-review-process-for-submitted-apps.md This file was deleted. 53 content/developers/github-marketplace/setting-pricing-plans-for-your-listing.md @@ -1,6 +1,6 @@ --- title: Setting pricing plans for your listing intro: 'When [listing your app on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/), you can choose to provide your app as a free service or sell your app. If you plan to sell your app, you can create different pricing plans for different feature tiers.' intro: 'When you list your app on {% data variables.product.prodname_marketplace %}, you can choose to provide your app as a free service or sell your app. If you plan to sell your app, you can create different pricing plans for different feature tiers.' redirect_from: - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/setting-a-github-marketplace-listing-s-pricing-plan/ - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/setting-a-github-marketplace-listing-s-pricing-plan/ @@ -17,57 +17,52 @@ versions: free-pro-team: '*' --- ### About setting pricing plans If you want to sell an app on {% data variables.product.prodname_marketplace %}, you need to request verification when you publish the listing for your app. During the verification process, an onboarding expert checks the organization's identity and security settings. The onboarding expert will also take the organization through financial onboarding. For more information, see: "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)." ### Creating pricing plans To learn about the types of pricing plans that {% data variables.product.prodname_marketplace %} offers, see "[{% data variables.product.prodname_marketplace %} Pricing Plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." You'll also find helpful billing guidelines in "[Selling your app](/marketplace/selling-your-app/)." Pricing plans can be in the draft or published state. If you haven't submitted your {% data variables.product.prodname_marketplace %} listing for approval, a published listing will function the same way as draft listings until your app is approved and listed on {% data variables.product.prodname_marketplace %}. Draft listings allow you to create and save new pricing plans without making them available on your {% data variables.product.prodname_marketplace %} listing page. Once you publish the pricing plan, it's available for customers to purchase immediately. You can publish up to 10 pricing plans. {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." To create a pricing plan for your {% data variables.product.prodname_marketplace %} listing, click **Plans and pricing** in the left sidebar of your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). If you haven't created a {% data variables.product.prodname_marketplace %} listing yet, read "[Creating a draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/)" to learn how. When you click **New draft plan**, you'll see a form that allows you to customize your pricing plan. You'll need to configure the following fields to create a pricing plan: {% data variables.product.prodname_marketplace %} offers several different types of pricing plan. For detailed information, see "[Pricing plans for {% data variables.product.prodname_marketplace %}](/developers/github-marketplace/pricing-plans-for-github-marketplace-apps)." #### Plan name ### About saving pricing plans Your pricing plan's name will appear on your {% data variables.product.prodname_marketplace %} app's landing page. You can customize the name of your pricing plan to align to the plan's resources, the size of the company that will use the plan, or anything you'd like. You can save pricing plans in a draft or published state. If you haven't submitted your {% data variables.product.prodname_marketplace %} listing for approval, a published plan will function in the same way as a draft plan until your listing is approved and shown on {% data variables.product.prodname_marketplace %}. Draft plans allow you to create and save new pricing plans without making them available on your {% data variables.product.prodname_marketplace %} listing page. Once you publish a pricing plan on a published listing, it's available for customers to purchase immediately. You can publish up to 10 pricing plans. #### Pricing models For guidelines on billing customers, see "[Billing customers](/developers/github-marketplace/billing-customers)." ##### Free plans {% data reusables.marketplace.free-apps-encouraged %} A free plan still requires you to handle [new purchase](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/) and [cancellation](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/) billing flows. See "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)" for more details. ##### Flat-rate plans ### Creating pricing plans Flat-rate pricing plans allow you to offer your service to customers for a flat-rate fee. {% data reusables.marketplace.marketplace-pricing-free-trials %} To create a pricing plan for your {% data variables.product.prodname_marketplace %} listing, click **Plans and pricing** in the left sidebar of your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). For more information, see "[Creating a draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/)." You must set a price for both monthly and yearly subscriptions in U.S. Dollars for flat-rate plans. When you click **New draft plan**, you'll see a form that allows you to customize your pricing plan. You'll need to configure the following fields to create a pricing plan: ##### Per-unit plans - **Plan name** - Your pricing plan's name will appear on your {% data variables.product.prodname_marketplace %} app's landing page. You can customize the name of your pricing plan to align with the plan's resources, the size of the company that will use the plan, or anything you'd like. Per-unit pricing allows you to offer your app in units. For example, a unit can be a person, seat, or user. You'll need to provide a name for the unit and set a price for both monthly and yearly subscriptions, in U.S. Dollars. - **Pricing models** - There are three types of pricing plan: free, flat-rate, and per-unit. All plans require you to process new purchase and cancellation events from the marketplace API. In addition, for paid plans: #### Available for - You must set a price for both monthly and yearly subscriptions in US dollars. - Your app must process plan change events. - You must request verification to publish a listing with a paid plan. - {% data reusables.marketplace.marketplace-pricing-free-trials %} {% data variables.product.prodname_marketplace %} pricing plans can apply to **Personal and organization accounts**, **Personal accounts only**, or **Organization accounts only**. For example, if your pricing plan is per-unit and provides multiple seats, you would select **Organization accounts only** because there is no way to assign seats to people in an organization from a personal account. For detailed information, see "[Pricing plans for {% data variables.product.prodname_marketplace %} apps](/developers/github-marketplace/pricing-plans-for-github-marketplace-apps)" and "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." #### Short description - **Available for** - {% data variables.product.prodname_marketplace %} pricing plans can apply to **Personal and organization accounts**, **Personal accounts only**, or **Organization accounts only**. For example, if your pricing plan is per-unit and provides multiple seats, you would select **Organization accounts only** because there is no way to assign seats to people in an organization from a personal account. Write a brief summary of the details of the pricing plan. The description might include the type of customer the plan is intended for or the resources the plan includes. - **Short description** - Write a brief summary of the details of the pricing plan. The description might include the type of customer the plan is intended for or the resources the plan includes. #### Bullets - **Bullets** - You can write up to four bullets that include more details about your pricing plan. The bullets might include the use cases of your app or list more detailed information about the resources or features included in the plan. You can write up to four bullets that include more details about your pricing plan. The bullets might include the use cases of your app or list more detailed information about the resources or features included in the plan. {% data reusables.marketplace.free-plan-note %} ### Changing a {% data variables.product.prodname_marketplace %} listing's pricing plan If a pricing plan for your {% data variables.product.prodname_marketplace %} plan is no longer needed or if you need to adjust pricing details, you can remove it. If a pricing plan for your {% data variables.product.prodname_marketplace %} listing is no longer needed, or if you need to adjust pricing details, you can remove it.  Once you publish a pricing plan for an app already listed in the {% data variables.product.prodname_marketplace %}, you can't make changes to the plan. Instead, you'll need to remove the pricing plan. Customers who already purchased the removed pricing plan will continue to use it until they opt out and move onto a new pricing plan. For more on pricing plans, see "[{% data variables.product.prodname_marketplace %} pricing plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." Once you publish a pricing plan for an app that is already listed in {% data variables.product.prodname_marketplace %}, you can't make changes to the plan. Instead, you'll need to remove the pricing plan and create a new plan. Customers who already purchased the removed pricing plan will continue to use it until they opt out and move onto a new pricing plan. For more on pricing plans, see "[{% data variables.product.prodname_marketplace %} pricing plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." Once you remove a pricing plan, users won't be able to purchase your app using that plan. Existing users on the removed pricing plan will continue to stay on the plan until they cancel their plan subscription. 37 content/developers/github-marketplace/submitting-your-listing-for-publication.md @@ -0,0 +1,37 @@ --- title: Submitting your listing for publication intro: 'You can submit your listing for the {% data variables.product.prodname_dotcom %} community to use.' redirect_from: - /marketplace/listing-on-github-marketplace/submitting-your-listing-for-review - /developers/github-marketplace/submitting-your-listing-for-review versions: free-pro-team: '*' --- Once you've completed the listing for your app, you'll see two buttons that allow you to request publication of the listing with or without verification. The **Request** button for "Publish without verification" is disabled if you have published any paid pricing plans in the listing.  {% data reusables.marketplace.launch-with-free %} After you submit your listing for review, an onboarding expert will reach out to you with additional information. For an overview of the process for creating and submitting a listing, see "[About {% data variables.product.prodname_marketplace %}](/developers/github-marketplace/about-github-marketplace#publishing-an-app-to-github-marketplace)." ### Prerequisites for publishing with verification Before you request verification of your listing, you'll need to integrate the {% data variables.product.prodname_marketplace %} billing flows and webhook into your app. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If you've met the requirements for listing and you've integrated with the {% data variables.product.prodname_marketplace %} API, go ahead and submit your listing. For more information, see "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app)." {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Transferring an app to an organization before you submit](#transferring-an-app-to-an-organization-before-you-submit)" below. ### Transferring an app to an organization before you submit You cannot sell an app that's owned by a user account. You need to transfer the app to an organization that is already a verified creator, or that can request verification for a listing for the app. For details, see: 1. "[Creating an organization from scratch](/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch)" 1. "[Transferring ownership of a GitHub App](/developers/apps/transferring-ownership-of-a-github-app)" or "[Transferring ownership of an OAuth App](/developers/apps/transferring-ownership-of-an-oauth-app)" 22 content/developers/github-marketplace/submitting-your-listing-for-review.md This file was deleted. 4 content/developers/github-marketplace/testing-your-app.md @@ -1,6 +1,6 @@ --- title: Testing your app intro: 'GitHub recommends testing your app with APIs and webhooks before submitting your listing to {% data variables.product.prodname_marketplace %} so you can provide an ideal experience for customers. Before the {% data variables.product.prodname_marketplace %} onboarding team approves your app, it must adequately handle the [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows).' intro: 'GitHub recommends testing your app with APIs and webhooks before submitting your listing to {% data variables.product.prodname_marketplace %} so you can provide an ideal experience for customers. Before an onboarding expert approves your app, it must adequately handle the billing flows.' redirect_from: - /apps/marketplace/testing-apps-apis-and-webhooks/ - /apps/marketplace/integrating-with-the-github-marketplace-api/testing-github-marketplace-apps/ @@ -13,7 +13,7 @@ versions: ### Testing apps You can use a [draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/) to simulate each of the [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows). A listing in the draft state means that it has not been submitted for approval. Any purchases you make using a draft {% data variables.product.prodname_marketplace %} listing will _not_ create real transactions, and GitHub will not charge your credit card. You can use a draft {% data variables.product.prodname_marketplace %} listing to simulate each of the billing flows. A listing in the draft state means that it has not been submitted for approval. Any purchases you make using a draft {% data variables.product.prodname_marketplace %} listing will _not_ create real transactions, and GitHub will not charge your credit card. For more information, see "[Drafting a listing for your app](/developers/github-marketplace/drafting-a-listing-for-your-app)" and "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." #### Using a development app with a draft listing to test changes 2 .../developers/github-marketplace/webhook-events-for-the-github-marketplace-api.md @@ -1,6 +1,6 @@ --- title: Webhook events for the GitHub Marketplace API intro: 'A {% data variables.product.prodname_marketplace %} app receives information about changes to a user''s plan from the Marketplace purchase event webhook. A Marketplace purchase event is triggered when a user purchases, cancels, or changes their payment plan. For details on how to respond to each of these types of events, see "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)."' intro: 'A {% data variables.product.prodname_marketplace %} app receives information about changes to a user''s plan from the Marketplace purchase event webhook. A Marketplace purchase event is triggered when a user purchases, cancels, or changes their payment plan.' redirect_from: - /apps/marketplace/setting-up-github-marketplace-webhooks/about-webhook-payloads-for-a-github-marketplace-listing/ - /apps/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/ 4 content/developers/webhooks-and-events/webhook-events-and-payloads.md @@ -445,7 +445,7 @@ Key | Type | Description #### Webhook payload object {% data reusables.webhooks.installation_properties %} {% data reusables.webhooks.app_desc %} {% data reusables.webhooks.app_always_desc %} {% data reusables.webhooks.sender_desc %} #### Webhook payload example @@ -469,7 +469,7 @@ Key | Type | Description #### Webhook payload object {% data reusables.webhooks.installation_repositories_properties %} {% data reusables.webhooks.app_desc %} {% data reusables.webhooks.app_always_desc %} {% data reusables.webhooks.sender_desc %} #### Webhook payload example 54 ...ssions/collaborating-with-your-community-using-discussions/about-discussions.md @@ -0,0 +1,54 @@ --- title: About discussions intro: Use discussions to ask and answer questions, share information, make announcements, and conduct or participate in a conversation about a project on {% data variables.product.product_name %}. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About discussions With {% data variables.product.prodname_discussions %}, the community for your project can create and participate in conversations within the project's repository. Discussions empower a project's maintainers, contributors, and visitors to gather and accomplish the following goals in a central location, without third-party tools. - Share announcements and information, gather feedback, plan, and make decisions - Ask questions, discuss and answer the questions, and mark the discussions as answered - Foster an inviting atmosphere for visitors and contributors to discuss goals, development, administration, and workflows  You don't need to close a discussion like you close an issue or a pull request. If a repository administrator or project maintainer enables discussions for a repository, anyone who visits the repository can create and participate in discussions for the repository. Repository administrators and project maintainers can manage discussions and discussion categories in a repository, and pin discussions to increase the visibility of the discussion. Moderators and collaborators can mark comments as answers, lock discussions, and convert issues to discussions. For more information, see "[Repository permission levels for an organization](/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization)." For more information about management of discussions for your repository, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." ### About categories and formats for discussions {% data reusables.discussions.you-can-categorize-discussions %} {% data reusables.discussions.about-categories-and-formats %} {% data reusables.discussions.repository-category-limit %} For discussions with a question/answer format, an individual comment within the discussion can be marked as the discussion's answer. {% data reusables.discussions.github-recognizes-members %} For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)." ### Best practices for discussions As a community member or maintainer, start a discussion to ask a question or discuss information that affects the community. For more information, see "[Collaborating with maintainers using discussions](/discussions/collaborating-with-your-community-using-discussions/collaborating-with-maintainers-using-discussions)." Participate in a discussion to ask and answer questions, provide feedback, and engage with the project's community. For more information, see "[Participating in a discussion](/discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion)." You can spotlight discussions that contain important, useful, or exemplary conversations among members in the community. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#pinning-a-discussion)." {% data reusables.discussions.you-can-convert-an-issue %} For more information, see "[Moderating discussions in your repository](/discussions/managing-discussions-for-your-community/moderating-discussions#converting-an-issue-to-a-discussion)." ### Sharing feedback You can share your feedback about {% data variables.product.prodname_discussions %} with {% data variables.product.company_short %}. To join the conversation, see [`github/feedback`](https://github.com/github/feedback/discussions?discussions_q=category%3A%22Discussions+Feedback%22). ### Further reading - "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/github/writing-on-github/about-writing-and-formatting-on-github)" - "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)" - "[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" - "[Moderating comments and conversations](/github/building-a-strong-community/moderating-comments-and-conversations)" - "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)" 50 ...community-using-discussions/collaborating-with-maintainers-using-discussions.md @@ -0,0 +1,50 @@ --- title: Collaborating with maintainers using discussions shortTitle: Collaborating with maintainers intro: You can contribute to the goals, plans, health, and community for a project on {% data variables.product.product_name %} by communicating with the maintainers of the project in a discussion. permissions: People with read permissions to a repository can start and participate in discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About collaboration with maintainers using discussions {% data reusables.discussions.about-discussions %} If you use or contribute to a project, you can start a discussion to make suggestions and engage with maintainers and community members about your plans, questions, ideas, and feedback. For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." {% data reusables.discussions.about-categories-and-formats %} Repository administrators and project maintainers can delete a discussion. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#deleting-a-discussion)." {% data reusables.discussions.github-recognizes-members %} These members appear in a list of the most helpful contributors to the project's discussions. As your project grows, you can grant higher access permissions to active members of your community. For more information, see "[Granting higher permissions to top contributors](/discussions/guides/granting-higher-permissions-to-top-contributors)"  For more information about participation in discussions, see "[Participating in a discussion](/discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion)." ### Prerequisites To collaborate with maintainers using discussions, a repository administrator or project maintainer must enable discussions for the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Starting a discussion {% data reusables.discussions.starting-a-discussion %} ### Filtering the list of discussions You can search for discussions and filter the list of discussions in a repository. For more information, see "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. In the **Search all discussions** field, type a search query. Optionally, to the right of the search field, click a button to further filter the results.  1. In the list of discussions, click the discussion you want to view.  ### Converting an issue to a discussion {% data reusables.discussions.you-can-convert-an-issue %} For more information, see "[Moderating discussions in your repository](/discussions/managing-discussions-for-your-community/moderating-discussions#converting-an-issue-to-a-discussion#converting-an-issue-to-a-discussion)." ### Further reading - "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/github/writing-on-github/about-writing-and-formatting-on-github)" - "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)" 14 content/discussions/collaborating-with-your-community-using-discussions/index.md @@ -0,0 +1,14 @@ --- title: Collaborating with your community using discussions shortTitle: Collaborating using discussions intro: Gather and discuss your project with community members and other maintainers. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} {% link_in_list /about-discussions %} {% link_in_list /participating-in-a-discussion %} {% link_in_list /collaborating-with-maintainers-using-discussions %} 31 ...borating-with-your-community-using-discussions/participating-in-a-discussion.md @@ -0,0 +1,31 @@ --- title: Participating in a discussion intro: You can converse with the community and maintainers in a forum within the repository for a project on {% data variables.product.product_name %}. permissions: People with read permissions to a repository can participate in discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About participation in a discussion {% data reusables.discussions.about-discussions %} For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." In addition to starting or viewing a discussion, you can comment in response to the original comment from the author of the discussion. You can also create a comment thread by replying to an individual comment that another community member made within the discussion, and react to comments with emoji. For more information about reactions, see "[About conversations on {% data variables.product.prodname_dotcom %}](/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github#reacting-to-ideas-in-comments)." You can block users and report disruptive content to maintain a safe and pleasant environment for yourself on {% data variables.product.product_name %}. For more information, see "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)." ### Prerequisites Discussions must be enabled for the repository for you to participate in a discussion in the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Creating a discussion {% data reusables.discussions.starting-a-discussion %} ### Marking a comment as an answer Discussion authors and users with the triage role or greater for a repository can mark a comment as the answer to a discussion in the repository. {% data reusables.discussions.marking-a-comment-as-an-answer %} 49 content/discussions/guides/best-practices-for-community-conversations-on-github.md @@ -0,0 +1,49 @@ --- title: Best practices for community conversations on GitHub shortTitle: Best practices for community conversations intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to a discussion when you are ready to scope out the work.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Community conversations in {% data variables.product.prodname_discussions %} Since {% data variables.product.prodname_discussions %} is an open forum, there is an opportunity to bring non-code collaboration into a project's repository and gather diverse feedback and ideas more quickly. You can help drive a productive conversation by: - Asking pointed questions and follow-up questions to garner specific feedback - Capture a diverse experience and distill it down to main points - Open an issue to take action based on the conversation, where applicable For more information about opening an issue and cross-referencing a discussion, see "[Opening an issue from a comment](/github/managing-your-work-on-github/opening-an-issue-from-a-comment)." ### Learning about conversations on GitHub You can create and participate in discussions, issues, and pull requests, depending on the type of conversation you'd like to have. You can use {% data variables.product.prodname_discussions %} to discuss big picture ideas, brainstorm, and spike out a project's specific details before committing it to an issue, which can then be scoped. Discussions are useful for teams if: - You are in the discovery phase of a project and are still learning which director your team wants to go in - You want to collect feedback from a wider community about a project - You want to keep bug fixes, feature requests, and general conversations separate Issues are useful for discussing specific details of a project such as bug reports and planned improvements. For more information, see "[About issues](/articles/about-issues)." Pull requests allow you to comment directly on proposed changes. For more information, see "[About pull requests](/articles/about-pull-requests)" and "[Commenting on a pull request](/articles/commenting-on-a-pull-request)." {% data reusables.organizations.team-discussions-purpose %} For more information, see "[About team discussions](/articles/about-team-discussions)." ### Following contributing guidelines Before you open a discussion, check to see if the repository has contributing guidelines. The CONTRIBUTING file includes information about how the repository maintainer would like you to contribute ideas to the project. For more information, see "[Setting up your project for healthy contributions](/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions)." ### Next steps To continue learning about {% data variables.product.prodname_discussions %} and quickly create a discussion for your community, see "[Quickstart for {% data variables.product.prodname_discussions %}](/discussions/quickstart)." ### Further reading - "[Setting up your project for healthy contributions](/articles/setting-up-your-project-for-healthy-contributions)" - "[Using templates to encourage useful issues and pull requests](/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests)" - "[Moderating comments and conversations](/articles/moderating-comments-and-conversations)" - "[Writing on {% data variables.product.prodname_dotcom %}](/articles/writing-on-github)" 21 content/discussions/guides/finding-discussions-across-multiple-repositories.md @@ -0,0 +1,21 @@ --- title: Finding discussions across multiple repositories intro: 'You can easily access every discussion you''ve created or participated in across multiple repositories.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Finding discussions 1. Navigate to {% data variables.product.prodname_dotcom_the_website %}. 1. In the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, click your profile photo, then click **Your enterprises**.  1. Toggle between **Created** and **Commented** to see the discussions you've created or participated in. ### Further reading - "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)" - "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)" - "[Managing discussions for your community](/discussions/managing-discussions-for-your-community)" 32 content/discussions/guides/granting-higher-permissions-to-top-contributors.md @@ -0,0 +1,32 @@ --- title: Granting higher permissions to top contributors intro: 'Repository administrators can promote any community member to a moderator and maintainer.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Introduction The most helpful contributors for the past 30 days are highlighted on the {% data variables.product.prodname_discussions %} dashboard, based on how many comments were marked as answers by other community members. Helpful contributors can help drive a healthy community and moderate and guide the community space in addition to maintainers. ### Step 1: Audit your discussions top contributors {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. Compare the list of contributors with their access permissions to see who qualifies to moderate the discussion. ### Step 2: Review permission levels for discussions People with triage permissions for a repository can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. For more information, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." For more information about repository permission levels and {% data variables.product.prodname_discussions %}, see "[Repository permissions levels for an organization](/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization)." ### Step 3: Change permissions levels for top contributors You can change a contributor's permission levels to give them more access to the tooling they need to moderate GitHub Discussions. To change a person's or team's permission levels, see "[Managing teams and people with access to your repository](/github/administering-a-repository/managing-teams-and-people-with-access-to-your-repository)." ### Step 4: Notify community members of elevated access When you change a collaborators permission level, they will receive a notification for the change. 29 content/discussions/guides/index.md @@ -0,0 +1,29 @@ --- title: Discussions guides shortTitle: Guides intro: 'Discover pathways to get started or learn best practices for participating or monitoring your community''s discussions.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Getting started with discussions {% link_in_list /about-discussions %} {% link_in_list /best-practices-for-community-conversations-on-github %} {% link_in_list /finding-discussions-across-multiple-repositories %} <!-- {% link_in_list /managing-notifications-for-discussions %} --> ### Administering discussions {% link_in_list /granting-higher-permissions-to-top-contributors %} <!--<!-- Commenting out what is only nice to have for discussions release {% link_in_list /updating-your-contributing-guidelines-with-discussions %} --> <!-- ### Discussions and open source projects {% link_in_list /collaborating-on-open-source-projects-in-discussions %} {% link_in_list /welcoming-contributions-to-your-communitys-discussions %} --> 55 content/discussions/index.md @@ -0,0 +1,55 @@ --- title: GitHub Discussions Documentation beta_product: true shortTitle: GitHub Discussions intro: '{% data variables.product.prodname_discussions %} is a collaborative communication forum for the community around an open source project. Community members can ask and answer questions, share updates, have open-ended conversations, and follow along on decisions affecting the community''s way of working.' introLinks: quickstart: /discussions/quickstart featuredLinks: guides: - /discussions/collaborating-with-your-community-using-discussions/about-discussions - /discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion - /discussions/managing-discussions-for-your-community/moderating-discussions gettingStarted: - /discussions/quickstart guideCards: - /discussions/collaborating-with-your-community-using-discussions/about-discussions - /discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion - /discussions/managing-discussions-for-your-community/moderating-discussions popular: - /discussions/guides/granting-higher-permissions-to-top-contributors - /discussions/guides/best-practices-for-community-conversations-on-github - /discussions/guides/finding-discussions-across-multiple-repositories - /discussions/collaborating-with-your-community-using-discussions/collaborating-with-maintainers-using-discussions - /discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository product_video: https://www.youtube-nocookie.com/embed/DbTWBP3_RbM layout: product-landing versions: free-pro-team: '*' --- <!-- {% link_with_intro /quickstart %} --> <!-- {% link_with_intro /discussions-guides %} --> <!-- {% link_with_intro /collaborating-with-your-community-using-discussions %} --> <!-- {% link_with_intro /managing-discussions-for-your-community %} --> <!-- Community examples --> {% assign discussionsCommunityExamples = site.data.variables.discussions_community_examples %} {% if discussionsCommunityExamples %} <div class="my-6 pt-6"> <h2 class="mb-2 font-mktg h1">Communities using discussions</h2> <div class="d-flex flex-wrap gutter"> {% render 'discussions-community-card' for discussionsCommunityExamples as example %} </div> {% if discussionsCommunityExamples.length > 6 %} <button class="js-filter-card-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> {% endif %} <div class="js-filter-card-no-results d-none py-4 text-center text-gray font-mktg"> <div class="mb-3">{% octicon "search" width="24" %}</div> <h3 class="text-normal">Sorry, there is no result for <strong class="js-filter-card-value"></strong></h3> <p class="my-3 f4">It looks like we don't have an example that fits your filter.<br>Try another filter or add your code example</p> <a href="https://github.com/github/docs/blob/main/data/variables/discussions_community_examples.yml">Add your community {% octicon "arrow-right" %}</a> </div> </div> {% endif %} 13 content/discussions/managing-discussions-for-your-community/index.md @@ -0,0 +1,13 @@ --- title: Managing discussions for your community shortTitle: Managing discussions intro: 'You can enable and configure discussions for your repository, and you can use tools on {% data variables.product.product_name %} to moderate conversations among community members.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} {% link_in_list /managing-discussions-in-your-repository %} {% link_in_list /managing-categories-for-discussions-in-your-repository %} {% link_in_list /moderating-discussions %} 64 ...ns-for-your-community/managing-categories-for-discussions-in-your-repository.md @@ -0,0 +1,64 @@ --- title: Managing categories for discussions in your repository intro: You can categorize the discussions in your repository to organize conversations for your community members, and you can choose a format for each category. permissions: Repository administrators and people with write or greater access to a repository can enable discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About categories for discussions {% data reusables.discussions.about-discussions %} {% data reusables.discussions.about-categories-and-formats %} Each category must have a unique name and emoji pairing, and can be accompanied by a detailed description stating its purpose. Categories help maintainers organize how conversations are filed and are customizable to help distinguish categories that are Q&A or more open-ended conversations.{% data reusables.discussions.repository-category-limit %} For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions#about-categories-and-formats-for-discussions)." ### Default categories | Category | Purpose | Type | | :- | :- | :- | | #️⃣ General | Anything and everything relevant to the project | Open-ended discussion | |💡Ideas | Ideas to change or improve the project | Open-ended discussion | | 🙏 Q&A | Questions for the community to answer, with a question/answer format | Question and Answer | | 🙌 Show and tell | Creations, experiments, or tests relevant to the project | Open-ended discussion | ### Creating a category {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.edit-categories %} 1. Click **New category**.  1. Edit the emoji, title, description, and discussion format for the category. For more information about discussion formats, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions#about-categories-and-formats-for-discussions)."  1. Click **Create**.  ### Editing a category You can edit a category to change the category's emoji, title, description, and discussion format. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. To the right of a category in the list, click {% octicon "pencil" aria-label="The pencil icon" %}.  1. {% data reusables.discussions.edit-category-details %}  1. Click **Save changes**.  ### Deleting a category When you delete a category, {% data variables.product.product_name %} will move all discussions in the deleted category to an existing category that you choose. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. To the right of a category in the list, click {% octicon "trash" aria-label="The trash icon" %}.  1. Use the drop-down menu, and choose a new category for any discussions in the category you're deleting.  1. Click **Delete & Move**.  108 ...aging-discussions-for-your-community/managing-discussions-in-your-repository.md @@ -0,0 +1,108 @@ --- title: Managing discussions in your repository intro: You can categorize, spotlight, transfer, or delete the discussions in a repository. permissions: Repository administrators and people with write or greater access to a repository can manage discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About management of discussions {% data reusables.discussions.about-discussions %} For more information about discussions, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." Organization owners can choose the permissions required to create a discussion for repositories owned by the organization. For more information, see "[Managing discussion creation for repositories in your organization](/github/setting-up-and-managing-organizations-and-teams/managing-discussion-creation-for-repositories-in-your-organization)." As a discussions maintainer, you can create community resources to encourage discussions that are aligned with the overall project goal and maintain a friendly open forum for collaborators. Creating a code of conduct or contribution guidelines for collaborators to follow will help facilitate a collaborative and productive forum. For more information on creating community resources, see "[Adding a code of conduct to your project](/github/building-a-strong-community/adding-a-code-of-conduct-to-your-project)," and "[Setting guidelines for repository contributors](/github/building-a-strong-community/setting-guidelines-for-repository-contributors)." For more information on facilitating a healthy discussion, see "[Moderating comments and conversations](/github/building-a-strong-community/moderating-comments-and-conversations)." ### Prerequisites To manage discussions in a repository, discussions must be enabled for the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Changing the category for a discussion You can categorize discussions to help community members find related discussions. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)" article. You can also move a discussion to a different category. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pencil" aria-label="The pencil icon" %} **Edit pinned discussion**.  ### Pinning a discussion You can pin up to four important discussions above the list of discussions for the repository. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pin" aria-label="The pin icon" %} **Pin discussion**.  1. Optionally, customize the look of the pinned discussion.  1. Click **Pin discussion**.  ### Editing a pinned discussion Editing a pinned discussion will not change the discussion's category. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pencil" aria-label="The pencil icon" %} **Edit pinned discussion**.  1. Customize the look of the pinned discussion.  1. Click **Pin discussion**.  ### Unpinning a discussion {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pin" aria-label="The pin icon" %} **Unpin discussion**.  1. Read the warning, then click **Unpin discussion**.  ### Transferring a discussion To transfer a discussion, you must have permissions to create discussions in the repository where you want to transfer the discussion. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "arrow-right" aria-label="The right arrow icon" %} **Transfer discussion**.  1. Select the **Choose a repository** drop-down, and click the repository you want to transfer the discussion to.  1. Click **Transfer discussion**.  ### Deleting a discussion {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "trash" aria-label="The trash arrow icon" %} **Delete discussion**.  1. Read the warning, then click **Delete this discussion**.  ### Converting issues based on labels You can convert all issues with the same label to discussions in bulk. Future issues with this label will also automatically convert to the discussion and category you configure. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} {% data reusables.project-management.labels %} 1. Next to the label you want to convert to issues, click **Convert issues**. 1. Select the **Choose a category** drop-down menu, and click a category for your discussion. 1. Click **I understand, convert this issue to a discussion**. 40 ...t/discussions/managing-discussions-for-your-community/moderating-discussions.md @@ -0,0 +1,40 @@ --- title: Moderating discussions intro: 'You can promote healthy collaboration by marking comments as answers, locking or unlocking discussions, and converting issues to discussions. and editing or deleting comments, discussions, and categories that don''t align with your community''s code of conduct to discussions.' permissions: People with triage access to a repository can moderate discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About moderating discussions {% data reusables.discussions.about-discussions %} If you have triage permissions for a repository, you can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. ### Marking a comment as an answer {% data reusables.discussions.marking-a-comment-as-an-answer %} ### Locking discussions It's appropriate to lock a conversation when the entire conversation is not constructive or violates your community's code of conduct or {% data variables.product.prodname_dotcom %}'s [Community Guidelines](/github/site-policy/github-community-guidelines). You can also lock a conversation to prevent comments on a discussion you want to use as an announcement to the community. When you lock a conversation, people with write access to the repository will still be able to comment on the discussion. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. In the list of discussions, click the discussion you want to lock.  1. In the right margin of a discussion, click **Lock conversation**. 1. Read the information about locking conversations and click **Lock conversation on this discussion**. 1. When you're ready to unlock the conversation, click **Unlock conversation**, then click **Unlock conversation on this discussion**. ### Converting an issue to a discussion When you convert an issue to a discussion, the discussion is automatically created using the content from the issue. People with write access to a repository can bulk convert issues based on labels. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} 1. In the list of issues, click the issue you'd like to convert. 1. In the right margin of an issue, click **Convert to discussion**. 1. Select the **Choose a category** drop-down menu, and click a category for your discussion. 1. Click **I understand, convert this issue to a discussion**. 62 content/discussions/quickstart.md @@ -0,0 +1,62 @@ --- title: Quickstart for GitHub Discussions intro: 'Enable {% data variables.product.prodname_discussions %} on an existing repository and start conversations with your community.' allowTitleToDifferFromFilename: true versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Introduction {% data variables.product.prodname_discussions %} is a collaborative communication forum for the community around an open source project. Discussions are for conversations that need to be transparent and accessible but do not need to be tracked on a project board and are not related to code, unlike issues. Discussions enable fluid, open conversation in a public forum. Discussions give a space for more collaborative conversations by connecting and giving a more centralized area to connect and find information. ### Enabling {% data variables.product.prodname_discussions %} on your repository Repository owners and people with write access can enable {% data variables.product.prodname_discussions %} for a community on their public repositories. When you first enable a {% data variables.product.prodname_discussions %}, you will be invited to configure a welcome post. {% data reusables.repositories.navigate-to-repo %} 1. Under your repository name, click {% octicon "gear" aria-label="The gear icon" %} **Settings**.  1. Under "Features", click **Set up discussions**.  1. Under "Start a new discussion," edit the template to align with the resources and tone you want to set for your community. 1. Click **Start discussion**.  ### Welcoming contributions to your discussions You can welcome your community and introduce a new way to communicate in a repository by creating a welcome post and pin the post to your {% data variables.product.prodname_discussions %} page. Pinning and locking discussions helps people know that a post is meant as an announcement. You can use announcements as a way to link people to more resources and offer guidance for opening discussions in your community. For more information about pinning a discussion, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#pinning-a-discussion)." ### Setting up community guidelines for contributors You can set contributing guidelines to encourage collaborators to have meaningful, useful conversations that are relevant to the repository. You can also update the repository's README to communicate expectations on when collaborators should open an issue or discussion. For more information about providing guidelines for your project, see "[Adding a code of conduct to your project](/github/building-a-strong-community/adding-a-code-of-conduct-to-your-project)" and "[Setting up your project for healthy contributions](/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions)." ### Creating a new discussion Anyone with access to a repository can create a discussion. {% data reusables.discussions.starting-a-discussion %} ### Organizing discussions into relevant categories Repository owners and people with write access can create new categories to keep discussions organized. Collaborators participating and creating new discussions can group discussions into the most relevant existing categories. Discussions can also be recategorized after they are created. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)" ### Promoting healthy conversations People with write permissions for a repository can help surface important conversations by pinning discussions, deleting discussions that are no longer useful or are damaging to the community, and transferring discussions to more relevant repositories owned by the organization. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." People with triage permissions for a repository can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. For more information, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." ### Next steps Once there is a clear path to scope work out and move an idea from concept to reality, you can create an issue and start tracking your progress. For more information on creating an issue from a discussion, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." 45 content/education/guides.md @@ -0,0 +1,45 @@ --- title: Guides for GitHub Education intro: 'These guides for {% data variables.product.prodname_education %} help you teach and learn both {% data variables.product.product_name %} and software development.' allowTitleToDifferFromFilename: true versions: free-pro-team: '*' --- ### Get started with {% data variables.product.product_name %} Teachers, students, and researchers can use tools from {% data variables.product.product_name %} to enrich a software development curriculum and develop real-world collaboration skills. - [Sign up for a new {% data variables.product.prodname_dotcom %} account](/github/getting-started-with-github/signing-up-for-a-new-github-account) - [Git and {% data variables.product.prodname_dotcom %} quickstart ](/github/getting-started-with-github/quickstart) - [Apply for an educator or researcher discount](/education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount) - [Apply for a student developer pack](/education/teach-and-learn-with-github-education/apply-for-a-student-developer-pack) ### Run a software development course with {% data variables.product.company_short %} Administer a classroom, assign and review work from your students, and teach the new generation of software developers with {% data variables.product.prodname_classroom %}. - [Basics of setting up {% data variables.product.prodname_classroom %} ](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom) - [Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms) - [Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment) - [Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment) - [Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository) - [Leave feedback with pull requests](/education/manage-coursework-with-github-classroom/leave-feedback-with-pull-requests) - [Use autograding](/education/manage-coursework-with-github-classroom/use-autograding) ### Learn to develop software Incorporate {% data variables.product.prodname_dotcom %} into your education, and use the same tools as the professionals. - [Git and {% data variables.product.prodname_dotcom %} learning resources](/github/getting-started-with-github/git-and-github-learning-resources) - [Use {% data variables.product.prodname_dotcom %} for your schoolwork](/education/teach-and-learn-with-github-education/use-github-for-your-schoolwork) - [Try {% data variables.product.prodname_desktop %}](/desktop) - [Try {% data variables.product.prodname_cli %}](/github/getting-started-with-github/github-cli) ### Contribute to the community Participate in the community, get training from {% data variables.product.company_short %}, and learn or teach new skills. - [{% data variables.product.prodname_education_community %}](https://education.github.community) - [About Campus Experts](/education/teach-and-learn-with-github-education/about-campus-experts) - [About Campus Advisors](/education/teach-and-learn-with-github-education/about-campus-advisors) 43 content/education/index.md @@ -0,0 +1,43 @@ --- title: GitHub Education Documentation shortTitle: Education intro: "{% data variables.product.prodname_education %} helps you teach or learn software development with the tools and support of {% data variables.product.company_short %}'s platform and community." introLinks: quickstart: /education/quickstart featuredLinks: guides: - /education/teach-and-learn-with-github-education/apply-for-a-student-developer-pack - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /education/teach-and-learn-with-github-education/use-github-at-your-educational-institution guideCards: - /github/getting-started-with-github/signing-up-for-a-new-github-account - /github/getting-started-with-github/git-and-github-learning-resources - /education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom popular: - /education/teach-and-learn-with-github-education/use-github-for-your-schoolwork - /education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research - /desktop - /github/getting-started-with-github/github-cli - /education/manage-coursework-with-github-classroom/teach-with-github-classroom changelog: - title: 'Try something new at Local Hack Day: Learn' date: '2020-10-15' href: https://github.blog/2020-10-15-try-something-new-at-local-hack-day-learn/ - title: 'Remote Education: Creating community through shared experiences' date: '2020-09-24' href: https://github.blog/2020-09-24-remote-education-creating-community-through-shared-experiences/ - title: 'Remote Education: A series of best practices for online campus communities' date: '2020-09-10' href: https://github.blog/2020-09-10-remote-education-a-series-of-best-practices-for-online-campus-communities/ - title: Welcome to the inaugural class of MLH Fellows date: '2020-06-24' href: https://github.blog/2020-06-24-welcome-to-the-inaugural-class-of-mlh-fellows/ layout: product-landing versions: free-pro-team: '*' --- <!-- {% link_with_intro /teach-and-learn-with-github-education %} --> <!-- {% link_with_intro /manage-coursework-with-github-classroom %} --> 31 ...work-with-github-classroom/about-using-makecode-arcade-with-github-classroom.md @@ -0,0 +1,31 @@ --- title: About using MakeCode Arcade with GitHub Classroom shortTitle: About using MakeCode Arcade intro: You can configure MakeCode Arcade as the online IDE for assignments in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/student-experience-makecode --- ### About MakeCode Arcade MakeCode Arcade is an online integrated development environment (IDE) for developing retro arcade games using drag-and-drop block programming and JavaScript. Students can write, edit, run, test, and debug code in a browser with MakeCode Arcade. For more information about online IDEs and {% data variables.product.prodname_classroom %}, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." {% data reusables.classroom.readme-contains-button-for-online-ide %} The first time the student clicks the button to visit MakeCode Arcade, the student must sign into MakeCode Arcade with {% data variables.product.product_name %} credentials. After signing in, the student will have access to a development environment containing the code from the assignment repository, fully configured on MakeCode Arcade. For more information about working on MakeCode Arcade, see the [MakeCode Arcade Tour](https://arcade.makecode.com/ide-tour) and [documentation](https://arcade.makecode.com/docs) on the MakeCode Arcade website. MakeCode Arcade does not support multiplayer-editing for group assignments. Instead, students can collaborate with Git and {% data variables.product.product_name %} features like branches and pull requests. ### About submission of assignments with MakeCode Arcade By default, MakeCode Arcade is configured to push to the assignment repository on {% data variables.product.product_location %}. After making progress on an assignment with MakeCode Arcade, students should push changes to {% data variables.product.product_location %} using the {% octicon "mark-github" aria-label="The GitHub mark" %}{% octicon "arrow-up" aria-label="The up arrow icon" %} button at the bottom of the screen.  ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 33 ...ge-coursework-with-github-classroom/about-using-replit-with-github-classroom.md @@ -0,0 +1,33 @@ --- title: About using Repl.it with GitHub Classroom shortTitle: About using Repl.it intro: You can configure Repl.it as the online integrated development environment (IDE) for assignments in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/student-experience-replit --- ### About Repl.it Repl.it is an online integrated development environment (IDE) that supports multiple programming languages. Students can write, edit, run, test, and debug code in a browser with Repl.it. For more information about online IDEs and {% data variables.product.prodname_classroom %}, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." {% data reusables.classroom.readme-contains-button-for-online-ide %} The first time the student clicks the button to visit Repl.it, the student must sign into Repl.it with {% data variables.product.product_name %} credentials. After signing in, the student will have access to a development environment containing the code from the assignment repository, fully configured on Repl.it. For more information about working on Repl.it, see the [Repl.it Quickstart Guide](https://docs.repl.it/misc/quick-start#the-repl-environment). For group assignments, students can use Repl.it Multiplayer to work collaboratively. For more information, see the [Repl.it Multiplayer](https://repl.it/site/multiplayer) website. ### About submission of assignments with Repl.it By default, Repl.it is configured to push to the assignment repository on {% data variables.product.product_location %}. After making progress on an assignment with Repl.it, students should push changes to {% data variables.product.product_location %} using the version control functionality in the left sidebar.  For more information about using Git on Repl.it, see the [Repl.it + Git Tutorial](https://repl.it/talk/learn/Replit-Git-Tutorial/23331) on the Repl.it website. ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 33 ...anage-coursework-with-github-classroom/basics-of-setting-up-github-classroom.md @@ -0,0 +1,33 @@ --- title: Basics of setting up GitHub Classroom shortTitle: '{% data variables.product.prodname_classroom %} basics' intro: Learn how to set up your classroom, manage assignments, and configure time-saving automation. versions: free-pro-team: '*' --- ### Videos about {% data variables.product.prodname_classroom %} You can watch a series of short video tutorials about the configuration and use of {% data variables.product.prodname_classroom %}. To watch all videos as part of a continuous playlist, see the [{% data variables.product.prodname_classroom %} Getting Started Guide](https://www.youtube.com/playlist?list=PLIRjfNq867bewk3ZGV6Z7a16YDNRCpK3u) on YouTube. For more information about terminology for {% data variables.product.prodname_classroom %}, see "[Glossary](/education/manage-coursework-with-github-classroom/glossary)". 1. <a href="https://youtu.be/xVVeqIDgCvM" target="_blank">Getting started</a> {% octicon "link-external" aria-label="The external link icon" %} 2. <a href="https://youtu.be/DTzrKduaHj8" target="_blank">Adding your student roster</a> {% octicon "link-external" aria-label="The external link icon" %} 3. Creating assignments - <a href="https://youtu.be/6QzKZ63KLss" target="_blank">Creating an assignment using a {% data variables.product.prodname_dotcom %} repository</a> {% octicon "link-external" aria-label="The external link icon" %} - <a href="https://youtu.be/Qmwh6ijsQJU" target="_blank">Creating an assignment using Microsoft MakeCode as your online IDE</a> {% octicon "link-external" aria-label="The external link icon" %} - <a href="https://youtu.be/p_g5sQ7hUis" target="_blank">Creating an assignment using Repl.it as your online IDE</a> {% octicon "link-external" aria-label="The external link icon" %} 4. <a href="https://youtu.be/ObaFRGp_Eko" target="_blank">How students complete assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 5. <a href="https://youtu.be/g45OJn3UyCU" target="_blank">How teachers review assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 6. <a href="https://youtu.be/QxrA3taZdNM" target="_blank">Creating group assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 7. <a href="https://youtu.be/tJK2cmoh1KM" target="_blank">Next steps to get started</a> {% octicon "link-external" aria-label="The external link icon" %} 8. <a href="https://youtu.be/X87v3SFQxLU" target="_blank">{% data variables.product.prodname_dotcom %} Teacher Toolbox</a> {% octicon "link-external" aria-label="The external link icon" %} ### Next steps For more information about teaching with {% data variables.product.prodname_classroom %}, see "[Teach with {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/teach-with-github-classroom)." ### Further reading - "[Teach and learn with {% data variables.product.prodname_education %}](/education/teach-and-learn-with-github-education)" 51 ...with-github-classroom/configure-default-settings-for-assignment-repositories.md @@ -0,0 +1,51 @@ --- title: Configure default settings for assignment repositories shortTitle: Configure defaults for assignment repositories intro: You can use the Probot Settings app to configure the default settings for repositories that {% data variables.product.prodname_classroom %} creates for an assignment. permissions: Organization owners can configure default settings for assignment repositories by installing a {% data variables.product.prodname_github_app %} for the organization. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/probot-settings --- ### About configuration of defaults for assignment repositories {% data variables.product.prodname_classroom %} creates a repository that belongs for each student or team that accepts an assignment. The repository belongs to the organization that you use for {% data variables.product.prodname_classroom %}. Assignment repositories can be empty, or you can use a template repository. For more information, see "[Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository)." {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} With the Probot Settings app, you can create a file named _.github/settings.yml_ in a repository that contains a list of settings for the repository, and then install a {% data variables.product.prodname_github_app %} for your organization that automatically applies the settings to the repository. You can include _.github/settings.yml_ in a template repository that you use for an assignment in {% data variables.product.prodname_classroom %}. When an individual or team accepts the assignment, {% data variables.product.prodname_classroom %} creates the assignment repository, and the Settings app automatically applies the settings from _.github/settings.yml_. Probot is a a project, framework, and collection of free apps to automate {% data variables.product.product_name %}. A Probot app can listen to repository events, like the creation of new commits, comments, and issues, and automatically respond to the event. For more information, see the [Probot website](https://probot.github.io) and the [Settings app website](https://probot.github.io/apps/settings/). For more information about {% data variables.product.prodname_github_apps %}, see "[About apps](/developers/apps/about-apps)." ### Adding the Settings app to your organization After you install the Probot Settings app for your organization, the app will apply the settings that you define in _.github/settings.yml_ for any repository in your organization, including new assignment repositories that {% data variables.product.prodname_classroom %} creates. 1. Navigate to the [Settings app page](https://github.com/apps/settings). 1. Click **Install**, then click the organization that you use for {% data variables.product.prodname_classroom %}. Provide the app full access to all repositories owned by the organization.  ### Configuring default settings for an assignment repository 1. Create a template repository that contains a _.github/settings.yml_ file. For a complete list of settings, see the [README](https://github.com/probot/settings#github-settings) for the `probot/settings` repository. For more information about using a template repository for starter code in {% data variables.product.prodname_classroom %}, see "[Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository)." {% warning %} **Warning:** Do not define `collaborators` in the _.github/settings.yml_ file for your template repository. {% data variables.product.prodname_classroom %} automatically grants teachers and teaching assistants access to assignment repositories. {% endwarning %} 1. Create an assignment using the template repository containing _.github/settings.yml_ as the starter code. {% data reusables.classroom.for-more-information-about-assignment-creation %} The Probot Settings app for your organization will now apply the settings you define in _.github/settings.yml_ within the template repository to every assignment repository that {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} creates for a student or team. ### Further reading - [Probot apps](https://probot.github.io/apps/) - [Probot documentation](https://probot.github.io/docs/) 142 ...th-github-classroom/connect-a-learning-management-system-to-github-classroom.md @@ -0,0 +1,142 @@ --- title: Connect a learning management system to GitHub Classroom intro: You can configure an LTI-compliant learning management system (LMS) to connect to {% data variables.product.prodname_classroom %} so that you can import a roster for your classroom. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/configuring-a-learning-management-system-for-github-classroom - /education/manage-coursework-with-github-classroom/connect-to-lms - /education/manage-coursework-with-github-classroom/generate-lms-credentials - /education/manage-coursework-with-github-classroom/setup-canvas - /education/manage-coursework-with-github-classroom/setup-generic-lms - /education/manage-coursework-with-github-classroom/setup-moodle --- ### About configuration of your LMS You can connect a learning management system (LMS) to {% data variables.product.prodname_classroom %}, and {% data variables.product.prodname_classroom %} can import a roster of student identifiers from the LMS. To connect your LMS to {% data variables.product.prodname_classroom %}, you must enter configuration credentials for {% data variables.product.prodname_classroom %} in your LMS. ### Prerequisites To configure an LMS to connect to {% data variables.product.prodname_classroom %}, you must first create a classroom. For more information, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-classroom)." ### Supported LMSes {% data variables.product.prodname_classroom %} supports import of roster data from LMSes that implement Learning Tools Interoperability (LTI) standards. - LTI version 1.0 and/or 1.1 - LTI Names and Roles Provisioning 1.X Using LTI helps keep your information safe and secure. LTI is an industry-standard protocol and GitHub Classroom's use of LTI is certified by the Instructional Management System (IMS) Global Learning Consortium. For more information, see [Learning Tools Interoperability](https://www.imsglobal.org/activity/learning-tools-interoperability) and [About IMS Global Learning Consortium](http://www.imsglobal.org/aboutims.html) on the IMS Global Learning Consortium website. {% data variables.product.company_short %} has tested import of roster data from the following LMSes into {% data variables.product.prodname_classroom %}. - Canvas - Google Classroom - Moodle - Sakai Currently, {% data variables.product.prodname_classroom %} doesn't support import of roster data from Blackboard or Brightspace ### Generating configuration credentials for your classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. If your classroom already has a roster, you can either update the roster or delete the roster and create a new roster. - For more information about deleting and creating a roster, see "[Deleting a roster for a classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#deleting-a-roster-for-a-classroom)" and "[Creating a roster for your classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-roster-for-your-classroom)." - For more information about updating a roster, see "[Adding students to the roster for your classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#adding-students-to-the-roster-for-your-classroom)." 1. In the list of LMSes, click your LMS. If your LMS is not supported, click **Other LMS**.  1. Read about connecting your LMS, then click **Connect to _LMS_**. 1. Copy the "Consumer Key", "Shared Secret", and "Launch URL" for the connection to the classroom.  ### Configuring a generic LMS You must configure the privacy settings for your LMS to allow external tools to receive roster information. 1. Navigate to your LMS. 1. Configure an external tool. 1. Provide the configuration credentials you generated in {% data variables.product.prodname_classroom %}. - Consumer key - Shared secret - Launch URL (sometimes called "tool URL" or similar) ### Configuring Canvas You can configure {% data variables.product.prodname_classroom %} as an external app for Canvas to import roster data into your classroom. For more information about Canvas, see the [Canvas website](https://www.instructure.com/canvas/). 1. Sign into [Canvas](https://www.instructure.com/canvas/#login). 1. Select the Canvas course to integrate with {% data variables.product.prodname_classroom %}. 1. In the left sidebar, click **Settings**. 1. Click the **Apps** tab. 1. Click **View app configurations**. 1. Click **+App**. 1. Select the **Configuration Type** drop-down menu, and click **By URL**. 1. Paste the configuration credentials from {% data variables.product.prodname_classroom %}. For more information, see "[Generating configuration credentials for your classroom](#generating-configuration-credentials-for-your-classroom)." | Field in Canvas app configuration | Value or setting | | :- | :- | | **Consumer Key** | Consumer key from {% data variables.product.prodname_classroom %} | | **Shared Secret** | Shared secret from {% data variables.product.prodname_classroom %} | | **Allow this tool to access the IMS Names and Role Provisioning Service** | Enabled | | **Configuration URL** | Launch URL from {% data variables.product.prodname_classroom %} | {% note %} **Note**: If you don't see a checkbox in Canvas labeled "Allow this tool to access the IMS Names and Role Provisioning Service", then your Canvas administrator must contact Canvas support to enable membership service configuration for your Canvas account. Without enabling this feature, you won't be able to sync the roster from Canvas. For more information, see [How do I contact Canvas Support?](https://community.canvaslms.com/t5/Canvas-Basics-Guide/How-do-I-contact-Canvas-Support/ta-p/389767) on the Canvas website. {% endnote %} 1. Click **Submit**. 1. In the left sidebar, click **Home**. 1. To prompt Canvas to send a confirmation email, in the left sidebar, click **GitHub Classroom**. Follow the instructions in the email to finish linking {% data variables.product.prodname_classroom %}. ### Configuring Moodle You can configure {% data variables.product.prodname_classroom %} as an activity for Moodle to import roster data into your classroom. For more information about Moodle, see the [Moodle website](https://moodle.org). You must be using Moodle version 3.0 or greater. 1. Sign into [Moodle](https://moodle.org/login/index.php). 1. Select the Moodle course to integrate with {% data variables.product.prodname_classroom %}. 1. Click **Turn editing on**. 1. Wherever you'd like {% data variables.product.prodname_classroom %} to be available in Moodle, click **Add an activity or resource**. 1. Choose **External tool** and click **Add**. 1. In the "Activity name" field, type "GitHub Classroom". 1. In the **Preconfigured tool** field, to the right of the drop-down menu, click **+**. 1. Under "External tool configuration", paste the configuration credentials from {% data variables.product.prodname_classroom %}. For more information, see "[Generating configuration credentials for your classroom](#generating-configuration-credentials-for-your-classroom)." | Field in Moodle app configuration | Value or setting | | :- | :- | | **Tool name** | {% data variables.product.prodname_classroom %} - _YOUR CLASSROOM NAME_<br/><br/>**Note**: You can use any name, but we suggest this value for clarity. | | **Tool URL** | Launch URL from {% data variables.product.prodname_classroom %} | | **LTI version** | LTI 1.0/1.1 | | **Default launch container** | New window | | **Consumer key** | Consumer key from {% data variables.product.prodname_classroom %} | | **Shared secret** | Shared secret from {% data variables.product.prodname_classroom %} | 1. Scroll to and click **Services**. 1. To the right of "IMS LTI Names and Role Provisioning", select the drop-down menu and click **Use this service to retrieve members' information as per privacy settings**. 1. Scroll to and click **Privacy**. 1. To the right of **Share launcher's name with tool** and **Share launcher's email with tool**, select the drop-down menus to click **Always**. 1. At the bottom of the page, click **Save changes**. 1. In the **Preconfigure tool** menu, click **GitHub Classroom - _YOUR CLASSROOM NAME_**. 1. Under "Common module settings", to the right of "Availability", select the drop-down menu and click **Hide from students**. 1. At the bottom of the page, click **Save and return to course**. 1. Navigate to anywhere you chose to display {% data variables.product.prodname_classroom %}, and click the {% data variables.product.prodname_classroom %} activity. ### Importing a roster from your LMS For more information about importing the roster from your LMS into {% data variables.product.prodname_classroom %}, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-roster-for-your-classroom)." ### Disconnecting your LMS {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. Under "Connect to a learning management system (LMS)", click **Connection Settings**.  1. Under "Delete Connection to your learning management system", click **Disconnect from your learning management system**.  145 .../education/manage-coursework-with-github-classroom/create-a-group-assignment.md @@ -0,0 +1,145 @@ --- title: Create a group assignment intro: 'You can create a collaborative assignment for teams of students who participate in your course.' versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/create-group-assignments --- ### About group assignments {% data reusables.classroom.assignments-group-definition %} Students can work together on a group assignment in a shared repository, like a team of professional developers. When a student accepts a group assignment, the student can create a new team or join an existing team. {% data variables.product.prodname_classroom %} saves the teams for an assignment as a set. You can name the set of teams for a specific assignment when you create the assignment, and you can reuse that set of teams for a later assignment. {% data reusables.classroom.classroom-creates-group-repositories %} {% data reusables.classroom.about-assignments %} You can decide how many teams one assignment can have, and how many members each team can have. Each team that a student creates for an assignment is a team within your organization on {% data variables.product.product_name %}. The visibility of the team is secret. Teams that you create on {% data variables.product.product_name %} will not appear in {% data variables.product.prodname_classroom %}. For more information, see "[About teams](/github/setting-up-and-managing-organizations-and-teams/about-teams)." For a video demonstration of the creation of a group assignment, see "[Basics of setting up {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom)." ### Prerequisites {% data reusables.classroom.assignments-classroom-prerequisite %} ### Creating an assignment {% data reusables.classroom.assignments-guide-create-the-assignment %} ### Setting up the basics for an assignment Name your assignment, decide whether to assign a deadline, define teams, and choose the visibility of assignment repositories. - [Naming an assignment](#naming-an-assignment) - [Assigning a deadline for an assignment](#assigning-a-deadline-for-an-assignment) - [Choosing an assignment type](#choosing-an-assignment-type) - [Defining teams for an assignment](#defining-teams-for-an-assignment) - [Choosing a visibility for assignment repositories](#choosing-a-visibility-for-assignment-repositories) #### Naming an assignment For a group assignment, {% data variables.product.prodname_classroom %} names repositories by the repository prefix and the name of the team. By default, the repository prefix is the assignment title. For example, if you name an assignment "assignment-1" and the team's name on {% data variables.product.product_name %} is "student-team", the name of the assignment repository for members of the team will be `assignment-1-student-team`. {% data reusables.classroom.assignments-type-a-title %} #### Assigning a deadline for an assignment {% data reusables.classroom.assignments-guide-assign-a-deadline %} #### Choosing an assignment type Under "Individual or group assignment", select the drop-down menu, then click **Group assignment**. You can't change the assignment type after you create the assignment. If you'd rather create a individual assignment, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)." #### Defining teams for an assignment If you've already created a group assignment for the classroom, you can reuse a set of teams for the new assignment. To create a new set with the teams that your students create for the assignment, type the name for the set. Optionally, type the maximum number of team members and total teams. {% tip %} **Tips**: - We recommend including details about the set of teams in the name for the set. For example, if you want to use the set of teams for one assignment, name the set after the assignment. If you want to reuse the set throughout a semester or course, name the set after the semester or course. - If you'd like to assign students to a specific team, give your students a name for the team and provide a list of members. {% endtip %}  #### Choosing a visibility for assignment repositories {% data reusables.classroom.assignments-guide-choose-visibility %} {% data reusables.classroom.assignments-guide-click-continue-after-basics %} ### Adding starter code and configuring a development environment {% data reusables.classroom.assignments-guide-intro-for-environment %} - [Choosing a template repository](#choosing-a-template-repository) - [Choosing an online integrated development environment (IDE)](#choosing-an-online-integrated-development-environment-ide) #### Choosing a template repository By default, a new assignment will create an empty repository for each team that a student creates. {% data reusables.classroom.you-can-choose-a-template-repository %} For more information about template repositories, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." {% data reusables.classroom.assignments-guide-choose-template-repository %} #### Choosing an online integrated development environment (IDE) {% data reusables.classroom.about-online-ides %} For more information, see "[Integrate {% data variables.product.prodname_classroom %} with an IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)." {% data reusables.classroom.assignments-guide-choose-an-online-ide %} {% data reusables.classroom.assignments-guide-click-continue-after-starter-code-and-feedback %} ### Providing feedback Optionally, you can automatically grade assignments and create a space for discussing each submission with the team. - [Testing assignments automatically](#testing-assignments-automatically) - [Preventing changes to important files](#preventing-changes-to-important-files) - [Creating a pull request for feedback](#creating-a-pull-request-for-feedback) #### Testing assignments automatically {% data reusables.classroom.assignments-guide-using-autograding %} #### Preventing changes to important files {% data reusables.classroom.assignments-guide-prevent-changes %} #### Creating a pull request for feedback {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} {% data reusables.classroom.assignments-guide-create-review-pull-request %} {% data reusables.classroom.assignments-guide-click-create-assignment-button %} ### Inviting students to an assignment {% data reusables.classroom.assignments-guide-invite-students-to-assignment %} You can see the teams that are working on or have submitted an assignment in the **Teams** tab for the assignment. {% data reusables.classroom.assignments-to-prevent-submission %} <div class="procedural-image-wrapper"> <img alt="Group assignment" class="procedural-image-wrapper" src="/assets/images/help/classroom/assignment-group-hero.png"> </div> ### Next steps - After you create the assignment and your students form teams, team members can start work on the assignment using Git and {% data variables.product.product_name %}'s features. Students can clone the repository, push commits, manage branches, create and review pull requests, address merge conflicts, and discuss changes with issues. Both you and the team can review the commit history for the repository. For more information, see "[Getting started with {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github)," "[Creating, cloning, and archiving repositories](/github/creating-cloning-and-archiving-repositories)," "[Using Git](/github/using-git)," and "[Collaborating with issues and pull requests](/github/collaborating-with-issues-and-pull-requests)," and the free course on [managing merge conflicts](https://lab.github.com/githubtraining/managing-merge-conflicts) from {% data variables.product.prodname_learning %}. - When a team finishes an assignment, you can review the files in the repository, or you can review the history and visualizations for the repository to better understand how the team collaborated. For more information, see "[Visualizing repository data with graphs](/github/visualizing-repository-data-with-graphs)." - You can provide feedback for an assignment by commenting on individual commits or lines in a pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)" and "[Opening an issue from code](/github/managing-your-work-on-github/opening-an-issue-from-code)." For more information about creating saved replies to provide feedback for common errors, see "[About saved replies](/github/writing-on-github/about-saved-replies)." ### Further reading - "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research)" - "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)" - [Using Existing Teams in Group Assignments?](https://education.github.community/t/using-existing-teams-in-group-assignments/6999) in the {% data variables.product.prodname_education %} Community 19 ...sework-with-github-classroom/create-an-assignment-from-a-template-repository.md @@ -0,0 +1,19 @@ --- title: Create an assignment from a template repository intro: You can create an assignment from a template repository to provide starter code, documentation, and other resources to your students. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/using-template-repos-for-assignments --- You can use a template repository on {% data variables.product.product_name %} as starter code for an assignment on {% data variables.product.prodname_classroom %}. Your template repository can contain boilerplate code, documentation, and other resources for your students. For more information, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." To use the template repository for your assignment, the template repository must be owned by your organization, or the visibility of the template repository must be public. {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} For more information, see "[Configure default settings for assignment repositories](/education/manage-coursework-with-github-classroom/configure-default-settings-for-assignment-repositories)." ### Further reading - "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" - "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)" 124 ...tion/manage-coursework-with-github-classroom/create-an-individual-assignment.md @@ -0,0 +1,124 @@ --- title: Create an individual assignment intro: You can create an assignment for students in your course to complete individually. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/creating-an-individual-assignment - /education/manage-coursework-with-github-classroom/create-an-individual-assignment --- ### About individual assignments {% data reusables.classroom.assignments-individual-definition %} {% data reusables.classroom.classroom-creates-individual-repositories %} {% data reusables.classroom.about-assignments %} For a video demonstration of the creation of an individual assignment, see "[Basics of setting up {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom)." ### Prerequisites {% data reusables.classroom.assignments-classroom-prerequisite %} ### Creating an assignment {% data reusables.classroom.assignments-guide-create-the-assignment %} ### Setting up the basics for an assignment Name your assignment, decide whether to assign a deadline, and choose the visibility of assignment repositories. - [Naming an assignment](#naming-an-assignment) - [Assigning a deadline for an assignment](#assigning-a-deadline-for-an-assignment) - [Choosing an assignment type](#choosing-an-assignment-type) - [Choosing a visibility for assignment repositories](#choosing-a-visibility-for-assignment-repositories) #### Naming an assignment For an individual assignment, {% data variables.product.prodname_classroom %} names repositories by the repository prefix and the student's {% data variables.product.product_name %} username. By default, the repository prefix is the assignment title. For example, if you name an assignment "assignment-1" and the student's username on {% data variables.product.product_name %} is @octocat, the name of the assignment repository for @octocat will be `assignment-1-octocat`. {% data reusables.classroom.assignments-type-a-title %} #### Assigning a deadline for an assignment {% data reusables.classroom.assignments-guide-assign-a-deadline %} #### Choosing an assignment type Under "Individual or group assignment", select the drop-down menu, and click **Individual assignment**. You can't change the assignment type after you create the assignment. If you'd rather create a group assignment, see "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." #### Choosing a visibility for assignment repositories {% data reusables.classroom.assignments-guide-choose-visibility %} {% data reusables.classroom.assignments-guide-click-continue-after-basics %} ### Adding starter code and configuring a development environment {% data reusables.classroom.assignments-guide-intro-for-environment %} - [Choosing a template repository](#choosing-a-template-repository) - [Choosing an online integrated development environment (IDE)](#choosing-an-online-integrated-development-environment-ide) #### Choosing a template repository By default, a new assignment will create an empty repository for each student on the roster for the classroom. {% data reusables.classroom.you-can-choose-a-template-repository %} For more information about template repositories, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." {% data reusables.classroom.assignments-guide-choose-template-repository %} {% data reusables.classroom.assignments-guide-click-continue-after-starter-code-and-feedback %} #### Choosing an online integrated development environment (IDE) {% data reusables.classroom.about-online-ides %} For more information, see "[Integrate {% data variables.product.prodname_classroom %} with an IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)." {% data reusables.classroom.assignments-guide-choose-an-online-ide %} ### Providing feedback for an assignment Optionally, you can automatically grade assignments and create a space for discussing each submission with the student. - [Testing assignments automatically](#testing-assignments-automatically) - [Preventing changes to important files](#preventing-changes-to-important-files) - [Creating a pull request for feedback](#creating-a-pull-request-for-feedback) #### Testing assignments automatically {% data reusables.classroom.assignments-guide-using-autograding %} #### Preventing changes to important files {% data reusables.classroom.assignments-guide-prevent-changes %} #### Creating a pull request for feedback {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} {% data reusables.classroom.assignments-guide-create-review-pull-request %} {% data reusables.classroom.assignments-guide-click-create-assignment-button %} ### Inviting students to an assignment {% data reusables.classroom.assignments-guide-invite-students-to-assignment %} You can see whether a student has joined the classroom and accepted or submitted an assignment in the **All students** tab for the assignment. {% data reusables.classroom.assignments-to-prevent-submission %} <div class="procedural-image-wrapper"> <img alt="Individual assignment" class="procedural-image-wrapper" src="/assets/images/help/classroom/assignment-individual-hero.png"> </div> ### Next steps - Once you create the assignment, students can start work on the assignment using Git and {% data variables.product.product_name %}'s features. Students can clone the repository, push commits, manage branches, create and review pull requests, address merge conflicts, and discuss changes with issues. Both you and student can review the commit history for the repository. For more information, see "[Getting started with {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github)," "[Creating, cloning, and archiving repositories](/github/creating-cloning-and-archiving-repositories)," "[Using Git](/github/using-git)," and "[Collaborating with issues and pull requests](/github/collaborating-with-issues-and-pull-requests)." - When a student finishes an assignment, you can review the files in the repository, or you can review the history and visualizations for the repository to better understand the student's work. For more information, see "[Visualizing repository data with graphs](/github/visualizing-repository-data-with-graphs)." - You can provide feedback for an assignment by commenting on individual commits or lines in a pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)" and "[Opening an issue from code](/github/managing-your-work-on-github/opening-an-issue-from-code)." For more information about creating saved replies to provide feedback for common errors, see "[About saved replies](/github/writing-on-github/about-saved-replies)." ### Further reading - "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research)" - "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)" 9 ...on/manage-coursework-with-github-classroom/get-started-with-github-classroom.md @@ -0,0 +1,9 @@ --- title: Get started with GitHub Classroom shortTitle: Get started intro: Learn how to configure and use {% data variables.product.prodname_classroom %} to administer your course. mapTopic: true versions: free-pro-team: '*' --- 52 content/education/manage-coursework-with-github-classroom/glossary.md @@ -0,0 +1,52 @@ --- title: Glossary intro: You can review explanations of terminology for {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' --- ### assignment An assignment is coursework in {% data variables.product.prodname_classroom %}. A teacher can assign an assignment to an individual student or a group of students. Teachers can import starter code for the assignment, assign students, and create a deadline for each assignment. For more information, see the definitions for "[individual assignment](#individual-assignment)" and "[group assignment](#group-assignment)." --- ### classroom A classroom is the basic unit of {% data variables.product.prodname_classroom %}. Teachers can use a classroom to organize and manage students, teaching assistants, and assignments for a single course. A classroom belongs to an organization on {% data variables.product.prodname_dotcom_the_website %}. To administer a classroom, you must be an organization owner for the organization on {% data variables.product.prodname_dotcom %}. For more information, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms)." --- ### {% data variables.product.prodname_classroom %} {% data variables.product.prodname_classroom %} is a web application for educators that provides course administration tools integrated with {% data variables.product.prodname_dotcom %}. For more information, see the [{% data variables.product.prodname_classroom %}](https://classroom.github.com/) website. --- ### group assignment {% data reusables.classroom.assignments-group-definition %} For more information, see "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." --- ### identifier An identifier in {% data variables.product.prodname_classroom %} is a unique ID for a student participating in a course. For example, an identifier can be a student name, alphanumeric ID, or email address. --- ### individual assignment {% data reusables.classroom.assignments-individual-definition %} For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)." --- ### roster A roster allows a teacher to manage students and assignment submissions in a classroom on {% data variables.product.prodname_classroom %}. Teachers can create a roster by entering a list of student identifiers, or by connecting {% data variables.product.prodname_classroom %} to a learning management system (LMS). For more information about identifiers, see the definition of "[identifier](#identifier)." For more information about connecting {% data variables.product.prodname_classroom %} to an LMS, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)." --- ### Further reading - "[{% data variables.product.prodname_dotcom %} glossary](/github/getting-started-with-github/github-glossary)" 32 content/education/manage-coursework-with-github-classroom/index.md @@ -0,0 +1,32 @@ --- title: Manage coursework with GitHub Classroom shortTitle: '{% data variables.product.prodname_classroom %}' intro: With {% data variables.product.prodname_classroom %}, you can use {% data variables.product.product_name %} to administer or participate in a course about software development. versions: free-pro-team: '*' --- ### Table of Contents {% topic_link_in_list /get-started-with-github-classroom %} {% link_in_list /basics-of-setting-up-github-classroom %} {% link_in_list /glossary %} {% topic_link_in_list /teach-with-github-classroom %} {% link_in_list /manage-classrooms %} {% link_in_list /create-an-individual-assignment %} {% link_in_list /create-a-group-assignment %} {% link_in_list /create-an-assignment-from-a-template-repository %} {% link_in_list /leave-feedback-with-pull-requests %} {% link_in_list /use-autograding %} {% link_in_list /configure-default-settings-for-assignment-repositories %} {% link_in_list /connect-a-learning-management-system-to-github-classroom %} {% topic_link_in_list /integrate-github-classroom-with-an-ide %} {% link_in_list /integrate-github-classroom-with-an-online-ide %} {% link_in_list /about-using-makecode-arcade-with-github-classroom %} {% link_in_list /about-using-replit-with-github-classroom %} {% link_in_list /run-student-code-in-an-online-ide %} {% topic_link_in_list /learn-with-github-classroom %} {% link_in_list /view-autograding-results %} 8 ...nage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide.md @@ -0,0 +1,8 @@ --- title: Integrate GitHub Classroom with an IDE shortTitle: Integrate with an IDE intro: You can help your students write, test, and debug code by preconfiguring a development environment for assignment repositories on {% data variables.product.prodname_classroom %}. mapTopic: true versions: free-pro-team: '*' --- 42 ...ursework-with-github-classroom/integrate-github-classroom-with-an-online-ide.md @@ -0,0 +1,42 @@ --- title: Integrate GitHub Classroom with an online IDE shortTitle: Integrate with an online IDE intro: You can preconfigure a supported online integrated development environment (IDE) for assignments you create in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/online-ide-integrations --- ### About integration with an online IDE {% data reusables.classroom.about-online-ides %} After a student accepts an assignment with an online IDE, the README file in the student's assignment repository will contain a button to open the assignment in the IDE. The student can begin working immediately, and no additional configuration is necessary.  ### Supported online IDEs {% data variables.product.prodname_classroom %} supports the following online IDEs. You can learn more about the student experience for each IDE. | IDE | More information | | :- | :- | | Microsoft MakeCode Arcade | "[About using MakeCode Arcade with {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/about-using-makecode-arcade-with-github-classroom)" | | Repl.it | "[About using Repl.it with GitHub Classroom](/education/manage-coursework-with-github-classroom/about-using-replit-with-github-classroom)" | ### Configuring an online IDE for an assignment You can choose the online IDE you'd like to use for an assignment when you create an assignment. To learn how to create a new assignment that uses an online IDE, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." ### Authorizing the OAuth app for an online IDE The first time you configure an assignment with an online IDE, you must authorize the OAuth app for the online IDE for your organization.  For all repositories, grant the app **read** access to metadata, administration, and code, and **write** access to administration and code. For more information, see "[Authorizing OAuth Apps](/github/authenticating-to-github/authorizing-oauth-apps)." ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 7 ...ducation/manage-coursework-with-github-classroom/learn-with-github-classroom.md @@ -0,0 +1,7 @@ --- title: Learn with GitHub Classroom intro: You can participate in coursework in {% data variables.product.prodname_classroom %} and see results from your teacher. mapTopic: true versions: free-pro-team: '*' --- 33 ...on/manage-coursework-with-github-classroom/leave-feedback-with-pull-requests.md @@ -0,0 +1,33 @@ --- title: Leave feedback with pull requests intro: You can leave feedback for your students in a special pull request within the repository for each assignment. permissions: People with read permissions to a repository can leave feedback in a pull request for the repository. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/leaving-feedback-in-github --- ### About feedback pull requests for assignments {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} When you enable the pull request for feedback for an assignment, {% data variables.product.prodname_classroom %} will create a special pull request titled **Feedback** in the assignment repository for each student or team. The pull request automatically shows every commit that a student pushed to the assignment repository's default branch. ### Prerequisites To create and access the feedback pull request, you must enable the feedback pull request when you create the assignment. {% data reusables.classroom.for-more-information-about-assignment-creation %} ### Leaving feedback in a pull request for an assignment {% data reusables.classroom.sign-into-github-classroom %} 1. In the list of classrooms, click the classroom with the assignment you want to review.  {% data reusables.classroom.click-assignment-in-list %} 1. To the right of the submission, click **Review**.  1. Review the pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)." ### Further reading - "[Integrate {% data variables.product.prodname_classroom %} with an IDE](http://localhost:4000/en/free-pro-team@latest/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)" 121 content/education/manage-coursework-with-github-classroom/manage-classrooms.md @@ -0,0 +1,121 @@ --- title: Manage classrooms intro: You can create and manage a classroom for each course that you teach using {% data variables.product.prodname_classroom %}. permissions: Organization owners can manage a classroom for an organization. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/archive-a-classroom --- ### About classrooms {% data reusables.classroom.about-classrooms %}  ### About management of classrooms {% data variables.product.prodname_classroom %} uses organization accounts on {% data variables.product.product_name %} to manage permissions, administration, and security for each classroom that you create. Each organization can have multiple classrooms. After you create a classroom, {% data variables.product.prodname_classroom %} will prompt you to invite teaching assistants (TAs) and admins to the classroom. Each classroom can have one or more admins. Admins can be teachers, TAs, or any other course administrator who you'd like to have control over your classrooms on {% data variables.product.prodname_classroom %}. Invite TAs and admins to your classroom by inviting the user accounts on {% data variables.product.product_name %} to your organization as organization owners and sharing the URL for your classrom. Organization owners can administer any classroom for the organization. For more information, see "[Permission levels for an organization](/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization)" and "[Inviting users to join your organization](/github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization)." When you're done using a classroom, you can archive the classroom and refer to the classroom, roster, and assignments later, or you can delete the classroom if you no longer need the classroom. ### About classroom rosters Each classroom has a roster. A roster is a list of identifiers for the students who participate in your course. When you first share the URL for an assignment with a student, the student must sign into {% data variables.product.product_name %} with a user account to link the user account to an identifier for the classroom. After the student links a user account, you can see the associated user account in the roster. You can also see when the student accepts or submits an assignment.  ### Prerequisites You must have an organization account on {% data variables.product.product_name %} to manage classrooms on {% data variables.product.prodname_classroom %}. For more information, see "[Types of {% data variables.product.company_short %} accounts](/github/getting-started-with-github/types-of-github-accounts#organization-accounts)" and "[Creating a new organization from scratch](/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch)." You must authorize the OAuth app for {% data variables.product.prodname_classroom %} for your organization to manage classrooms for your organization account. For more information, see "[Authorizing OAuth Apps](/github/authenticating-to-github/authorizing-oauth-apps)." ### Creating a classroom {% data reusables.classroom.sign-into-github-classroom %} 1. Click **New classroom**.  {% data reusables.classroom.guide-create-new-classroom %} After you create a classroom, you can begin creating assignments for students. For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." ### Creating a roster for your classroom You can create a roster of the students who participate in your course. If your course already has a roster, you can update the students on the roster or delete the roster. For more information, see "[Adding a student to the roster for your classroom](#adding-students-to-the-roster-for-your-classroom)" or "[Deleting a roster for a classroom](#deleting-a-roster-for-a-classroom)." {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. To connect {% data variables.product.prodname_classroom %} to your LMS and import a roster, click {% octicon "mortar-board" aria-label="The mortar board icon" %} **Import from a learning management system** and follow the instructions. For more information, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)."  1. To create a roster manually, type your student identifiers. Optionally, click **Upload a CSV or text file** to upload a file containing the identifiers.  1. Click **Create roster**.  ### Adding students to the roster for your classroom Your classroom must have an existing roster to add students to the roster. For more information about creating a roster, see "[Creating a roster for your classrom](#creating-a-roster-for-your-classroom)." {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. To the right of "Classroom roster", click **Update students**.  1. Follow the instructions to add students to the roster. - To import students from an LMS, click **Sync from a learning management system**. For more information about importing a roster from an LMS, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)." - To manually add students, under "Manually add students", click **Upload a CSV or text file** or type the identifiers for the students, then click **Add roster entries**.  ### Renaming a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. Under "Classroom name", type a new name for the classroom.  1. Click **Rename classroom**.  ### Archiving or unarchiving a classroom You can archive a classroom that you no longer use on {% data variables.product.prodname_classroom %}. When you archive a classroom, you can't create new assignments or edit existing assignments for the classroom. Students can't accept invitations to assignments in archived classrooms. {% data reusables.classroom.sign-into-github-classroom %} 1. To the right of a classroom's name, select the {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} drop-down menu, then click **Archive**.  1. To unarchive a classroom, to the right of a classroom's name, select the {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} drop-down menu, then click **Unarchive**.  ### Deleting a roster for a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. Under "Delete this roster", click **Delete roster**.  1. Read the warnings, then click **Delete roster**.  ### Deleting a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. To the right of "Delete this classroom", click **Delete classroom**.  1. **Read the warnings**. 1. To verify that you're deleting the correct classroom, type the name of the classroom you want to delete.  1. Click **Delete classroom**.  22 ...on/manage-coursework-with-github-classroom/run-student-code-in-an-online-ide.md @@ -0,0 +1,22 @@ --- title: Run student code in an online IDE intro: You can run the code from a student assignment within the online integrated development environment (IDE) that you configured for the assignment. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/running-student-code --- ### About student code and online IDEs If you configure an online integrated development environment (IDE) for an assignment, you can run the code within the online IDE. You don't need to clone the assignment repository to your computer. For more information about online IDEs, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." ### Running student code in the online IDE {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-assignment-in-list %} 1. To the right of the submission, click **View IDE**.  8 ...ducation/manage-coursework-with-github-classroom/teach-with-github-classroom.md @@ -0,0 +1,8 @@ --- title: Teach with GitHub Classroom intro: Learn how to set up your classroom and assignments. mapTopic: true versions: free-pro-team: '*' --- 93 content/education/manage-coursework-with-github-classroom/use-autograding.md 30 ...t/education/manage-coursework-with-github-classroom/view-autograding-results.md 90 content/education/quickstart.md 1 ...github-education/about-campus-advisors.md → ...github-education/about-campus-advisors.md 1 ...-github-education/about-campus-experts.md → ...-github-education/about-campus-experts.md 1 ...ducation-for-educators-and-researchers.md → ...ducation-for-educators-and-researchers.md 5 ...on/about-github-education-for-students.md → ...on/about-github-education-for-students.md 9 ...ithub-education/about-github-education.md → ...ithub-education/about-github-education.md 5 .../applying-for-a-student-developer-pack.md → ...ion/apply-for-a-student-developer-pack.md 14 ...for-an-educator-or-researcher-discount.md → ...for-an-educator-or-researcher-discount.md 26 content/education/teach-and-learn-with-github-education/index.md 3 ...github-at-your-educational-institution.md → ...github-at-your-educational-institution.md 3 ...ation/using-github-for-your-schoolwork.md → ...ucation/use-github-for-your-schoolwork.md 3 ...-github-in-your-classroom-and-research.md → ...-github-in-your-classroom-and-research.md 5 ...-for-a-student-developer-pack-approved.md → ...-for-a-student-developer-pack-approved.md 3 ...ucator-or-researcher-discount-approved.md → ...ucator-or-researcher-discount-approved.md 20 ...ering-a-repository/enabling-or-disabling-github-discussions-for-a-repository.md 5 content/github/administering-a-repository/index.md 2 content/github/authenticating-to-github/reviewing-your-security-log.md 1 content/github/collaborating-with-issues-and-pull-requests/index.md 74 ...with-issues-and-pull-requests/reviewing-dependency-changes-in-a-pull-request.md 19 ...g-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request.md 10 content/github/creating-cloning-and-archiving-repositories/about-repositories.md 15 content/github/customizing-your-github-workflow/about-github-marketplace.md 2 content/github/getting-started-with-github/git-and-github-learning-resources.md 4 content/github/getting-started-with-github/github-glossary.md 6 content/github/getting-started-with-github/signing-up-for-a-new-github-account.md 1 content/github/index.md 2 ...b/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md 25 ...hub/managing-security-vulnerabilities/about-managing-vulnerable-dependencies.md 1 content/github/managing-security-vulnerabilities/index.md 4 ...nerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository.md 3 ...criptions-and-notifications-on-github/managing-notifications-from-your-inbox.md 6 content/github/managing-your-work-on-github/about-issues.md 3 content/github/searching-for-information-on-github/about-searching-on-github.md 5 content/github/searching-for-information-on-github/index.md 114 content/github/searching-for-information-on-github/searching-discussions.md 2 ...ithub/searching-for-information-on-github/searching-issues-and-pull-requests.md 2 ...nd-managing-billing-and-payments-on-github/about-billing-for-github-sponsors.md 4 ...-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts.md 19 ...ing-up-and-managing-billing-and-payments-on-github/downgrading-a-sponsorship.md 16 ...tting-up-and-managing-billing-and-payments-on-github/upgrading-a-sponsorship.md 4 content/github/setting-up-and-managing-organizations-and-teams/index.md 27 ...and-teams/managing-discussion-creation-for-repositories-in-your-organization.md 25 ...izations-and-teams/managing-updates-from-accounts-your-organization-sponsors.md 3 ...p-and-managing-organizations-and-teams/permission-levels-for-an-organization.md 14 ...ing-organizations-and-teams/repository-permission-levels-for-an-organization.md 86 ...naging-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md 1 content/github/setting-up-and-managing-your-github-user-account/index.md 24 ...etting-up-and-managing-your-github-user-account/managing-your-theme-settings.md 12 content/github/site-policy/github-additional-product-terms.md 8 ...porting-the-open-source-community-with-github-sponsors/about-github-sponsors.md 17 ...community-with-github-sponsors/attributing-sponsorships-to-your-organization.md 28 ...e-open-source-community-with-github-sponsors/changing-your-sponsorship-tiers.md 22 ...th-github-sponsors/configuring-webhooks-for-events-in-your-sponsored-account.md 17 ...ting-the-open-source-community-with-github-sponsors/contacting-your-sponsors.md 25 ...munity-with-github-sponsors/editing-your-profile-details-for-github-sponsors.md 1 content/github/supporting-the-open-source-community-with-github-sponsors/index.md 12 ...ce-community-with-github-sponsors/managing-your-payouts-from-github-sponsors.md 18 ...he-open-source-community-with-github-sponsors/managing-your-sponsorship-goal.md 39 ...ing-the-open-source-community-with-github-sponsors/managing-your-sponsorship.md 10 ...munity-with-github-sponsors/setting-up-github-sponsors-for-your-organization.md 10 ...munity-with-github-sponsors/setting-up-github-sponsors-for-your-user-account.md 62 ...-source-community-with-github-sponsors/sponsoring-an-open-source-contributor.md 27 ...source-community-with-github-sponsors/viewing-your-sponsors-and-sponsorships.md 23 content/github/teaching-and-learning-with-github-education/index.md This file was deleted. 7 ...nt/github/visualizing-repository-data-with-graphs/about-the-dependency-graph.md 1 content/github/working-with-github-support/index.md 10 content/graphql/README.md 58 ...tting-started-with-github-container-registry/about-github-container-registry.md This file was deleted. 15 content/packages/getting-started-with-github-container-registry/index.md This file was deleted. 95 content/packages/guides/about-github-container-registry.md 2 ...ol-and-visibility-for-container-images.md → ...ol-and-visibility-for-container-images.md 5 ...che-maven-for-use-with-github-packages.md → ...che-maven-for-use-with-github-packages.md 1 ...ng-docker-for-use-with-github-packages.md → ...ng-docker-for-use-with-github-packages.md 1 ...otnet-cli-for-use-with-github-packages.md → ...otnet-cli-for-use-with-github-packages.md 1 ...ng-gradle-for-use-with-github-packages.md → ...ng-gradle-for-use-with-github-packages.md 1 ...uring-npm-for-use-with-github-packages.md → ...uring-npm-for-use-with-github-packages.md 1 ...-rubygems-for-use-with-github-packages.md → ...-rubygems-for-use-with-github-packages.md 2 ...ting-a-repository-to-a-container-image.md → ...ting-a-repository-to-a-container-image.md 10 content/packages/guides/container-guides-for-github-packages.md 2 ...er-registry/deleting-a-container-image.md → ...ages/guides/deleting-a-container-image.md 2 ...ry/enabling-improved-container-support.md → ...es/enabling-improved-container-support.md 33 content/packages/guides/index.md 2 ...b-container-registry-for-docker-images.md → ...b-container-registry-for-docker-images.md 10 content/packages/guides/package-client-guides-for-github-packages.md 2 ...stry/pushing-and-pulling-docker-images.md → ...ides/pushing-and-pulling-docker-images.md 1 ...ng-github-packages-with-github-actions.md → ...ng-github-packages-with-github-actions.md 46 content/packages/index.md 60 ...anaging-packages/about-github-packages.md → ...-github-packages/about-github-packages.md 13 ...concepts-for-github-container-registry.md → ...ages/core-concepts-for-github-packages.md 16 content/packages/learn-github-packages/index.md 1 ...managing-packages/publishing-a-package.md → ...n-github-packages/publishing-a-package.md 3 ...d-managing-packages/deleting-a-package.md → ...ges/manage-packages/deleting-a-package.md 8 ...publishing-and-managing-packages/index.md → content/packages/manage-packages/index.md 1 ...managing-packages/installing-a-package.md → ...s/manage-packages/installing-a-package.md 1 ...and-managing-packages/viewing-packages.md → ...kages/manage-packages/viewing-packages.md 11 content/packages/managing-container-images-with-github-container-registry/index.md This file was deleted. 109 content/packages/quickstart.md 20 content/packages/using-github-packages-with-your-projects-ecosystem/index.md This file was deleted. 10 content/rest/README.md 18 content/rest/overview/resources-in-the-rest-api.md 2 content/rest/overview/troubleshooting.md 10 content/rest/reference/enterprise-admin.md 2 data/products.yml 2 data/reusables/accounts/create-account.md 2 data/reusables/actions/actions-not-verified.md 7 data/reusables/actions/visualization-beta.md 5 data/reusables/audit_log/audit-log-api-info.md 1 data/reusables/audit_log/audit-log-git-events-retention.md 1 data/reusables/classroom/about-assignments.md 1 data/reusables/classroom/about-autograding.md 1 data/reusables/classroom/about-classrooms.md 1 data/reusables/classroom/about-online-ides.md 1 data/reusables/classroom/assignments-classroom-prerequisite.md 2 data/reusables/classroom/assignments-click-pencil.md 1 data/reusables/classroom/assignments-group-definition.md 5 data/reusables/classroom/assignments-guide-assign-a-deadline.md 5 data/reusables/classroom/assignments-guide-choose-an-online-ide.md 5 data/reusables/classroom/assignments-guide-choose-template-repository.md 9 data/reusables/classroom/assignments-guide-choose-visibility.md 7 data/reusables/classroom/assignments-guide-click-continue-after-basics.md 7 ...s/classroom/assignments-guide-click-continue-after-starter-code-and-feedback.md 5 data/reusables/classroom/assignments-guide-click-create-assignment-button.md 5 data/reusables/classroom/assignments-guide-create-review-pull-request.md 5 data/reusables/classroom/assignments-guide-create-the-assignment.md 1 data/reusables/classroom/assignments-guide-intro-for-environment.md 3 data/reusables/classroom/assignments-guide-invite-students-to-assignment.md 7 data/reusables/classroom/assignments-guide-prevent-changes.md 23 data/reusables/classroom/assignments-guide-using-autograding.md 1 data/reusables/classroom/assignments-individual-definition.md 1 data/reusables/classroom/assignments-to-prevent-submission.md 5 data/reusables/classroom/assignments-type-a-title.md 1 data/reusables/classroom/classroom-creates-group-repositories.md 1 data/reusables/classroom/classroom-creates-individual-repositories.md 1 data/reusables/classroom/classroom-enables-invitation-urls.md 2 data/reusables/classroom/click-assignment-in-list.md 2 data/reusables/classroom/click-classroom-in-list.md 2 data/reusables/classroom/click-settings.md 2 data/reusables/classroom/click-students.md 1 data/reusables/classroom/for-more-information-about-assignment-creation.md 6 data/reusables/classroom/guide-create-new-classroom.md 5 data/reusables/classroom/invitation-url-warning.md 1 data/reusables/classroom/readme-contains-button-for-online-ide.md 1 data/reusables/classroom/sign-into-github-classroom.md 1 data/reusables/classroom/use-add-test-drop-down-to-click-grading-method.md 1 data/reusables/classroom/you-can-choose-a-template-repository.md 1 data/reusables/classroom/you-can-create-a-pull-request-for-feedback.md 1 data/reusables/classroom/you-may-want-to-predefine-repository-settings.md 1 data/reusables/discussions/about-categories-and-formats.md 1 data/reusables/discussions/about-discussions.md 5 data/reusables/discussions/beta.md 2 data/reusables/discussions/click-discussion-in-list.md 2 data/reusables/discussions/discussions-tab.md 2 data/reusables/discussions/edit-categories.md 1 data/reusables/discussions/edit-category-details.md 8 ...les/discussions/enabling-or-disabling-github-discussions-for-your-repository.md 1 data/reusables/discussions/github-recognizes-members.md 16 data/reusables/discussions/marking-a-comment-as-an-answer.md 1 data/reusables/discussions/repository-category-limit.md 10 data/reusables/discussions/starting-a-discussion.md 1 data/reusables/discussions/you-can-categorize-discussions.md 1 data/reusables/discussions/you-can-convert-an-issue.md 1 data/reusables/discussions/you-can-use-discussions.md 1 data/reusables/discussions/you-cannot-convert-a-discussion.md 2 data/reusables/education/about-github-education-link.md 2 data/reusables/education/apply-for-team.md 2 data/reusables/education/click-get-teacher-benefits.md 6 data/reusables/education/educator-requirements.md 1 data/reusables/gated-features/discussions.md 1 data/reusables/marketplace/app-transfer-to-org-for-verification.md 5 data/reusables/marketplace/free-plan-note.md 2 data/reusables/marketplace/launch-with-free.md 8 data/reusables/marketplace/marketplace-billing-ui-requirements.md 2 data/reusables/package_registry/billing-for-container-registry.md 2 data/reusables/package_registry/container-registry-beta-billing-note.md 2 data/reusables/package_registry/container-registry-beta.md 2 data/reusables/package_registry/docker_registry_deprecation_status.md 2 data/reusables/package_registry/feature-preview-for-container-registry.md 2 data/reusables/package_registry/required-scopes.md 2 data/reusables/package_registry/viewing-packages.md 3 data/reusables/repositories/dependency-review.md 7 data/reusables/repositories/navigate-to-job-superlinter.md 4 data/reusables/repositories/view-failed-job-results-superlinter.md 4 data/reusables/repositories/view-specific-line-superlinter.md 2 data/reusables/search/date_gt_lt.md 2 data/reusables/sponsors/billing-switcher.md 2 data/reusables/sponsors/change-tier.md 2 data/reusables/sponsors/choose-updates.md 2 data/reusables/sponsors/developer-sponsored-choose-updates.md This file was deleted. 4 data/reusables/sponsors/manage-developer-sponsorship.md This file was deleted. 4 data/reusables/sponsors/manage-org-sponsorship.md This file was deleted. 2 data/reusables/sponsors/manage-sponsorship.md 1 data/reusables/sponsors/manage-updates-for-orgs.md 2 data/reusables/sponsors/maximum-tier.md 4 data/reusables/sponsors/navigate-to-org-sponsors-dashboard.md This file was deleted. 2 ...onsors/navigate-to-sponsored-developer.md → ...sponsors/navigate-to-sponsored-account.md 1 data/reusables/sponsors/navigate-to-sponsored-org.md This file was deleted. 2 ...ors/navigate-to-dev-sponsors-dashboard.md → ...ponsors/navigate-to-sponsors-dashboard.md 2 data/reusables/sponsors/no-fees.md 5 data/reusables/sponsors/org-sponsors-release-phase.md 2 data/reusables/sponsors/pay-prorated-amount.md 2 data/reusables/sponsors/prorated-sponsorship.md 2 data/reusables/sponsors/sponsor-account.md 7 data/reusables/sponsors/sponsorship-dashboard.md 2 data/reusables/sponsors/sponsorship-details.md 1 data/reusables/webhooks/app_always_desc.md 3 data/ui.yml 7 data/variables/action_code_examples.yml 37 data/variables/discussions_community_examples.yml 6 data/variables/product.yml 21 includes/all-articles.html 4 includes/breadcrumbs.html 2 includes/code-example-card.html 14 includes/discussions-community-card.html 2 includes/header-notification.html 90 javascripts/filter-cards.js 92 javascripts/filter-code-examples.js This file was deleted. 4 javascripts/index.js 64 layouts/product-landing.html 68 lib/data-directory.js 28 lib/filename-to-key.js 7 lib/frontmatter.js 2 lib/liquid-tags/data.js 25 lib/page.js 54 lib/pages.js 21 lib/redirects/get-docs-path-from-developer-path.js 41 lib/redirects/precompile.js 231 lib/rest/static/decorated/api.github.com.json 495 lib/rest/static/dereferenced/api.github.com.deref.json 17 lib/rewrite-local-links.js 10 lib/site-data.js 24 lib/warm-server.js 5 middleware/breadcrumbs.js 38 middleware/categories-for-support-team.js 6 middleware/contextualizers/early-access-links.js 103 middleware/csp.js 69 middleware/early-access-breadcrumbs.js 1 middleware/index.js 45 package-lock.json 3 package.json 4 script/check-s3-images.js 4 script/early-access/clone-locally 41 script/early-access/create-branch 7 server.js 2 stylesheets/article.scss 4 tests/browser/browser.js 10 tests/content/category-pages.js 2 tests/content/crowdin-config.js 3 tests/content/featured-links.js 5 tests/content/glossary.js 42 tests/content/remove-liquid-statements.js 39 tests/content/site-data-references.js 4 tests/content/site-data.js 22 tests/fixtures/rest-redirects.json 10 tests/graphql/build-changelog-test.js 9 tests/helpers/conditional-runs.js 20 tests/meta/orphan-tests.js 23 tests/rendering/breadcrumbs.js 4 tests/rendering/rest.js 3 tests/rendering/server.js 47 tests/routing/developer-site-redirects.js 10 tests/routing/redirects.js 15 tests/unit/data-directory/filename-to-key.js 1 tests/unit/data-directory/fixtures/README.md 1 tests/unit/data-directory/fixtures/bar.yaml 1 tests/unit/data-directory/fixtures/foo.json 1 tests/unit/data-directory/fixtures/nested/baz.md 40 tests/unit/data-directory/index.js 19 tests/unit/early-access.js 4 tests/unit/find-page.js 57 tests/unit/liquid-helpers.js 140 tests/unit/page.js 2 tests/unit/pages.js 0 comments on commit 1a56ed1 Leave a comment You’re not receiving notifications from this thread. © 2021 GitHub, Inc. Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About
danderfer / Comp Sci Sem 2According to all known laws of aviation, there is no way that a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway. Because bees don’t care what humans think is impossible.” SEQ. 75 - “INTRO TO BARRY” INT. BENSON HOUSE - DAY ANGLE ON: Sneakers on the ground. Camera PANS UP to reveal BARRY BENSON’S BEDROOM ANGLE ON: Barry’s hand flipping through different sweaters in his closet. BARRY Yellow black, yellow black, yellow black, yellow black, yellow black, yellow black...oohh, black and yellow... ANGLE ON: Barry wearing the sweater he picked, looking in the mirror. BARRY (CONT’D) Yeah, let’s shake it up a little. He picks the black and yellow one. He then goes to the sink, takes the top off a CONTAINER OF HONEY, and puts some honey into his hair. He squirts some in his mouth and gargles. Then he takes the lid off the bottle, and rolls some on like deodorant. CUT TO: INT. BENSON HOUSE KITCHEN - CONTINUOUS Barry’s mother, JANET BENSON, yells up at Barry. JANET BENSON Barry, breakfast is ready! CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 1. INT. BARRY’S ROOM - CONTINUOUS BARRY Coming! SFX: Phone RINGING. Barry’s antennae vibrate as they RING like a phone. Barry’s hands are wet. He looks around for a towel. BARRY (CONT’D) Hang on a second! He wipes his hands on his sweater, and pulls his antennae down to his ear and mouth. BARRY (CONT'D) Hello? His best friend, ADAM FLAYMAN, is on the other end. ADAM Barry? BARRY Adam? ADAM Can you believe this is happening? BARRY Can’t believe it. I’ll pick you up. Barry sticks his stinger in a sharpener. SFX: BUZZING AS HIS STINGER IS SHARPENED. He tests the sharpness with his finger. SFX: Bing. BARRY (CONT’D) Looking sharp. ANGLE ON: Barry hovering down the hall, sliding down the staircase bannister. Barry’s mother, JANET BENSON, is in the kitchen. JANET BENSON Barry, why don’t you use the stairs? Your father paid good money for those. "Bee Movie" - JS REVISIONS 8/13/07 2. BARRY Sorry, I’m excited. Barry’s father, MARTIN BENSON, ENTERS. He’s reading a NEWSPAPER with the HEADLINE, “Queen gives birth to thousandtuplets: Resting Comfortably.” MARTIN BENSON Here’s the graduate. We’re very proud of you, Son. And a perfect report card, all B’s. JANET BENSON (mushing Barry’s hair) Very proud. BARRY Ma! I’ve got a thing going here. Barry re-adjusts his hair, starts to leave. JANET BENSON You’ve got some lint on your fuzz. She picks it off. BARRY Ow, that’s me! MARTIN BENSON Wave to us. We’ll be in row 118,000. Barry zips off. BARRY Bye! JANET BENSON Barry, I told you, stop flying in the house! CUT TO: SEQ. 750 - DRIVING TO GRADUATION EXT. BEE SUBURB - MORNING A GARAGE DOOR OPENS. Barry drives out in his CAR. "Bee Movie" - JS REVISIONS 8/13/07 3. ANGLE ON: Barry’s friend, ADAM FLAYMAN, standing by the curb. He’s reading a NEWSPAPER with the HEADLINE: “Frisbee Hits Hive: Internet Down. Bee-stander: “I heard a sound, and next thing I knew...wham-o!.” Barry drives up, stops in front of Adam. Adam jumps in. BARRY Hey, Adam. ADAM Hey, Barry. (pointing at Barry’s hair) Is that fuzz gel? BARRY A little. It’s a special day. Finally graduating. ADAM I never thought I’d make it. BARRY Yeah, three days of grade school, three days of high school. ADAM Those were so awkward. BARRY Three days of college. I’m glad I took off one day in the middle and just hitchhiked around the hive. ADAM You did come back different. They drive by a bee who’s jogging. ARTIE Hi Barry! BARRY (to a bee pedestrian) Hey Artie, growing a mustache? Looks good. Barry and Adam drive from the suburbs into the city. ADAM Hey, did you hear about Frankie? "Bee Movie" - JS REVISIONS 8/13/07 4. BARRY Yeah. ADAM You going to his funeral? BARRY No, I’m not going to his funeral. Everybody knows you sting someone you die, you don’t waste it on a squirrel. He was such a hot head. ADAM Yeah, I guess he could’ve just gotten out of the way. The DRIVE through a loop de loop. BARRY AND ADAM Whoa...Whooo...wheee!! ADAM I love this incorporating the amusement park right into our regular day. BARRY I guess that’s why they say we don’t need vacations. CUT TO: SEQ. 95 - GRADUATION EXT. GRADUATION CEREMONY - CONTINUOUS Barry and Adam come to a stop. They exit the car, and fly over the crowd to their seats. * BARRY * (re: graduation ceremony) * Boy, quite a bit of pomp...under * the circumstances. * They land in their seats. BARRY (CONT’D) Well Adam, today we are men. "Bee Movie" - JS REVISIONS 8/13/07 5. ADAM We are. BARRY Bee-men. ADAM Amen! BARRY Hallelujah. Barry hits Adam’s forehead. Adam goes into the rapture. An announcement comes over the PA. ANNOUNCER (V.O) Students, faculty, distinguished bees...please welcome, Dean Buzzwell. ANGLE ON: DEAN BUZZWELL steps up to the podium. The podium has a sign that reads: “Welcome Graduating Class of:”, with train-station style flipping numbers after it. BUZZWELL Welcome New Hive City graduating class of... The numbers on the podium change to 9:15. BUZZWELL (CONT’D) ...9:15. (he clears his throat) And that concludes our graduation ceremonies. And begins your career at Honex Industries. BARRY Are we going to pick our job today? ADAM I heard it’s just orientation. The rows of chairs change in transformer-like mechanical motion to Universal Studios type tour trams. Buzzwell walks off stage. BARRY (re: trams) Whoa, heads up! Here we go. "Bee Movie" - JS REVISIONS 8/13/07 6. SEQ. 125 - “FACTORY” FEMALE VOICE (V.O) Keep your hands and antennas inside the tram at all times. (in Spanish) Dejen las manos y antennas adentro del tram a todos tiempos. BARRY I wonder what it’s going to be like? ADAM A little scary. Barry shakes Adam. BARRY AND ADAM AAHHHH! The tram passes under SIGNS READING: “Honex: A Division of Honesco: A Part of the Hexagon Group.” TRUDY Welcome to Honex, a division of Honesco, and a part of the Hexagon group. BARRY This is it! The Honex doors OPEN, revealing the factory. BARRY (CONT’D) Wow. TRUDY We know that you, as a bee, have worked your whole life to get to the point where you can work for your whole life. Honey begins when our valiant pollen jocks bring the nectar to the hive where our top secret formula is automatically color-corrected, scent adjusted and bubble contoured into this... Trudy GRABS a TEST TUBE OF HONEY from a technician. "Bee Movie" - JS REVISIONS 8/13/07 7. TRUDY (CONT’D) ...soothing, sweet syrup with its distinctive golden glow, you all know as... EVERYONE ON THE TRAM (in unison) H-o-n-e-y. Trudy flips the flask into the crowd, and laughs as they all scramble for it. ANGLE ON: A GIRL BEE catching the honey. ADAM (sotto) That girl was hot. BARRY (sotto) She’s my cousin. ADAM She is? BARRY Yes, we’re all cousins. ADAM Right. You’re right. TRUDY At Honex, we also constantly strive to improve every aspect of bee existence. These bees are stress testing a new helmet technology. ANGLE ON: A STUNT BEE in a HELMET getting hit with a NEWSPAPER, then a SHOE, then a FLYSWATTER. He gets up, and gives a “thumb’s up”. The graduate bees APPLAUD. ADAM (re: stunt bee) What do you think he makes? BARRY Not enough. TRUDY And here we have our latest advancement, the Krelman. "Bee Movie" - JS REVISIONS 8/13/07 8. BARRY Wow, what does that do? TRUDY Catches that little strand of honey that hangs after you pour it. Saves us millions. ANGLE ON: The Krelman machine. Bees with hand-shaped hats on, rotating around a wheel to catch drips of honey. Adam’s hand shoots up. ADAM Can anyone work on the Krelman? TRUDY Of course. Most bee jobs are small ones. But bees know that every small job, if it’s done well, means a lot. There are over 3000 different bee occupations. But choose carefully, because you’ll stay in the job that you pick for the rest of your life. The bees CHEER. ANGLE ON: Barry’s smile dropping slightly. BARRY The same job for the rest of your life? I didn’t know that. ADAM What’s the difference? TRUDY And you’ll be happy to know that bees as a species haven’t had one day off in 27 million years. BARRY So you’ll just work us to death? TRUDY (laughing) We’ll sure try. Everyone LAUGHS except Barry. "Bee Movie" - JS REVISIONS 8/13/07 9. The tram drops down a log-flume type steep drop. Cameras flash, as all the bees throw up their hands. The frame freezes into a snapshot. Barry looks concerned. The tram continues through 2 doors. FORM DISSOLVE TO: SEQ. 175 - “WALKING THE HIVE” INT. HONEX LOBBY ANGLE ON: The log-flume photo, as Barry looks at it. ADAM Wow. That blew my mind. BARRY (annoyed) “What’s the difference?” Adam, how could you say that? One job forever? That’s an insane choice to have to make. ADAM Well, I’m relieved. Now we only have to make one decision in life. BARRY But Adam, how could they never have told us that? ADAM Barry, why would you question anything? We’re bees. We’re the most perfectly functioning society on Earth. They walk by a newspaper stand with A SANDWICH BOARD READING: “Bee Goes Berserk: Stings Seven Then Self.” ANGLE ON: A BEE filling his car’s gas tank from a honey pump. He fills his car some, then takes a swig for himself. NEWSPAPER BEE (to the bee guzzling gas) Hey! Barry and Adam begin to cross the street. "Bee Movie" - JS REVISIONS 8/13/07 10. BARRY Yeah but Adam, did you ever think that maybe things work a little too well around here? They stop in the middle of the street. The traffic moves perfectly around them. ADAM Like what? Give me one example. BARRY (thinks) ...I don’t know. But you know what I’m talking about. They walk off. SEQ. 400 - “MEET THE JOCKS” SFX: The SOUND of Pollen Jocks. PAN DOWN from the Honex statue. J-GATE ANNOUNCER Please clear the gate. Royal Nectar Force on approach. Royal Nectar Force on approach. BARRY Wait a second. Check it out. Hey, hey, those are Pollen jocks. ADAM Wow. FOUR PATROL BEES FLY in through the hive’s giant Gothic entrance. The Patrol Bees are wearing fighter pilot helmets with black visors. ADAM (CONT’D) I’ve never seen them this close. BARRY They know what it’s like to go outside the hive. ADAM Yeah, but some of them don’t come back. "Bee Movie" - JS REVISIONS 8/13/07 11. The nectar from the pollen jocks is removed from their backpacks, and loaded into trucks on their way to Honex. A SMALL CROWD forms around the Patrol Bees. Each one has a PIT CREW that takes their nectar. Lou Loduca hurries a pit crew along: LOU LODUCA You guys did great! You’re monsters. You’re sky freaks! I love it! I love it! SCHOOL GIRLS are jumping up and down and squealing nearby. BARRY I wonder where those guys have just been? ADAM I don’t know. BARRY Their day’s not planned. Outside the hive, flying who-knows-where, doing who-knows-what. ADAM You can’t just decide one day to be a Pollen Jock. You have to be bred for that. BARRY Right. Pollen Jocks cross in close proximity to Barry and Adam. Some pollen falls off, onto Barry and Adam. BARRY (CONT’D) Look at that. That’s more pollen than you and I will ever see in a lifetime. ADAM (playing with the pollen) It’s just a status symbol. I think bees make too big a deal out of it. BARRY Perhaps, unless you’re wearing it, and the ladies see you wearing it. ANGLE ON: Two girl bees. "Bee Movie" - JS REVISIONS 8/13/07 12. ADAM Those ladies? Aren’t they our cousins too? BARRY Distant, distant. ANGLE ON: TWO POLLEN JOCKS. JACKSON Look at these two. SPLITZ Couple of Hive Harrys. JACKSON Let’s have some fun with them. The pollen jocks approach. Barry and Adam continue to talk to the girls. GIRL 1 It must be so dangerous being a pollen jock. BARRY Oh yeah, one time a bear had me pinned up against a mushroom. He had one paw on my throat, and with the other he was slapping me back and forth across the face. GIRL 1 Oh my. BARRY I never thought I’d knock him out. GIRL 2 (to Adam) And what were you doing during all of this? ADAM Obviously I was trying to alert the authorities. The girl swipes some pollen off of Adam with a finger. BARRY (re: pollen) I can autograph that if you want. "Bee Movie" - JS REVISIONS 8/13/07 13. JACKSON Little gusty out there today, wasn’t it, comrades? BARRY Yeah. Gusty. BUZZ You know, we’re going to hit a sunflower patch about six miles from here tomorrow. BARRY Six miles, huh? ADAM (whispering) Barry. BUZZ It’s a puddle-jump for us. But maybe you’re not up for it. BARRY Maybe I am. ADAM (whispering louder) You are not! BUZZ We’re going, oh-nine hundred at JGate. ADAM (re: j-gate) Whoa. BUZZ (leaning in, on top of Barry) What do you think, Buzzy Boy? Are you bee enough? BARRY I might be. It all depends on what oh-nine hundred means. CUT TO: SEQ. 450 - “THE BALCONY” "Bee Movie" - JS REVISIONS 8/13/07 14. INT. BENSON HOUSE BALCONY - LATER Barry is standing on the balcony alone, looking out over the city. Martin Benson ENTERS, sneaks up behind Barry and gooses him in his ribs. MARTIN BENSON Honex! BARRY Oh, Dad. You surprised me. MARTIN BENSON (laughing) Have you decided what you’re interested in, Son? BARRY Well, there’s a lot of choices. MARTIN BENSON But you only get one. Martin LAUGHS. BARRY Dad, do you ever get bored doing the same job every day? MARTIN BENSON Son, let me tell you something about stirring. (making the stirring motion) You grab that stick and you just move it around, and you stir it around. You get yourself into a rhythm, it’s a beautiful thing. BARRY You know dad, the more I think about it, maybe the honey field just isn’t right for me. MARTIN BENSON And you were thinking of what, making balloon animals? That’s a bad job for a guy with a stinger. "Bee Movie" - JS REVISIONS 8/13/07 15. BARRY Well no... MARTIN BENSON Janet, your son’s not sure he wants to go into honey. JANET BENSON Oh Barry, you are so funny sometimes. BARRY I’m not trying to be funny. MARTIN BENSON You’re not funny, you’re going into honey. Our son, the stirrer. JANET BENSON You’re going to be a stirrer?! BARRY No one’s listening to me. MARTIN BENSON Wait until you see the sticks I have for you. BARRY I can say anything I want right now. I’m going to get an ant tattoo. JANET BENSON Let’s open some fresh honey and celebrate. BARRY Maybe I’ll pierce my thorax! MARTIN BENSON (toasting) To honey! BARRY Shave my antennae! JANET BENSON To honey! "Bee Movie" - JS REVISIONS 8/13/07 16. BARRY Shack up with a grasshopper, get a gold tooth, and start calling everybody “Dawg.” CUT TO: SEQ. 760 - “JOB PLACEMENT” EXT. HONEX LOBBY - CONTINUOUS ANGLE ON: A BEE BUS STOP. One group of bees stands on the pavement, as another group hovers above them. A doubledecker bus pulls up. The hovering bees get on the top level, and the standing bees get on the bottom. Barry and Adam pull up outside of Honex. ADAM I can’t believe we’re starting work today. BARRY Today’s the day. Adam jumps out of the car. ADAM (O.C) Come on. All the good jobs will be gone. BARRY Yeah, right... ANGLE ON: A BOARD READING: “JOB PLACEMENT BOARD”. Buzzwell, the Bee Processor, is at the counter. Another BEE APPLICANT, SANDY SHRIMPKIN is EXITING. SANDY SHRIMPKIN Is it still available? BUZZWELL Hang on. (he looks at changing numbers on the board) Two left. And...one of them’s yours. Congratulations Son, step to the side please. "Bee Movie" - JS REVISIONS 8/13/07 17. SANDY SHRIMPKIN Yeah! ADAM (to Sandy, leaving) What did you get? SANDY SHRIMPKIN Picking the crud out. That is stellar! ADAM Wow. BUZZWELL (to Adam and Barry) Couple of newbies? ADAM Yes Sir. Our first day. We are ready. BUZZWELL Well, step up and make your choice. ANGLE ON: A CHART listing the different sectors of Honex. Heating, Cooling, Viscosity, Krelman, Pollen Counting, Stunt Bee, Pouring, Stirrer, Humming, Regurgitating, Front Desk, Hair Removal, Inspector No. 7, Chef, Lint Coordinator, Stripe Supervisor, Antennae-ball polisher, Mite Wrangler, Swatting Counselor, Wax Monkey, Wing Brusher, Hive Keeper, Restroom Attendant. ADAM (to Barry) You want to go first? BARRY No, you go. ADAM Oh my. What’s available? BUZZWELL Restroom attendant is always open, and not for the reason you think. ADAM Any chance of getting on to the Krelman, Sir? BUZZWELL Sure, you’re on. "Bee Movie" - JS REVISIONS 8/13/07 18. He plops the KRELMAN HAT onto Adam’s head. ANGLE ON: The job board. THE COLUMNS READ: “OCCUPATION” “POSITIONS AVAILABLE”, and “STATUS”. The middle column has numbers, and the right column has job openings flipping between “open”, “pending”, and “closed”. BUZZWELL (CONT’D) Oh, I’m sorry. The Krelman just closed out. ADAM Oh! He takes the hat off Adam. BUZZWELL Wax Monkey’s always open. The Krelman goes from “Closed” to “Open”. BUZZWELL (CONT’D) And the Krelman just opened up again. ADAM What happened? BUZZWELL Well, whenever a bee dies, that’s an opening. (pointing at the board) See that? He’s dead, dead, another dead one, deady, deadified, two more dead. Dead from the neck up, dead from the neck down. But, that’s life. ANGLE ON: Barry’s disturbed expression. ADAM (feeling pressure to decide) Oh, this is so hard. Heating, cooling, stunt bee, pourer, stirrer, humming, inspector no. 7, lint coordinator, stripe supervisor, antenna-ball polisher, mite wrangler-- Barry, Barry, what do you think I should-- Barry? Barry? "Bee Movie" - JS REVISIONS 8/13/07 19. Barry is gone. CUT TO: SEQ. 775 - “LOU LODUCA SPEECH” EXT. J-GATE - SAME TIME Splitz, Jackson, Buzz, Lou and two other BEES are going through final pre-flight checks. Barry ENTERS. LOU LODUCA Alright, we’ve got the sunflower patch in quadrant nine. Geranium window box on Sutton Place... Barry’s antennae rings, like a phone. ADAM (V.O) What happened to you? Where are you? Barry whispers throughout. BARRY I’m going out. ADAM (V.O) Out? Out where? BARRY Out there. ADAM (V.O) (putting it together) Oh no. BARRY I have to, before I go to work for the rest of my life. ADAM (V.O) You’re going to die! You’re crazy! Hello? BARRY Oh, another call coming in. "Bee Movie" - JS REVISIONS 8/13/07 20. ADAM (V.O) You’re cra-- Barry HANGS UP. ANGLE ON: Lou Loduca. LOU LODUCA If anyone’s feeling brave, there’s a Korean Deli on 83rd that gets their roses today. BARRY (timidly) Hey guys. BUZZ Well, look at that. SPLITZ Isn’t that the kid we saw yesterday? LOU LODUCA (to Barry) Hold it son, flight deck’s restricted. JACKSON It’s okay Lou, we’re going to take him up. Splitz and Jackson CHUCKLE. LOU LODUCA Really? Feeling lucky, are ya? A YOUNGER SMALLER BEE THAN BARRY, CHET, runs up with a release waiver for Barry to sign. CHET Sign here. Here. Just initial that. Thank you. LOU LODUCA Okay, you got a rain advisory today and as you all know, bees cannot fly in rain. So be careful. As always, (reading off clipboard) watch your brooms, hockey sticks, dogs, birds, bears, and bats. "Bee Movie" - JS REVISIONS 8/13/07 21. Also, I got a couple reports of root beer being poured on us. Murphy’s in a home because of it, just babbling like a cicada. BARRY That’s awful. LOU LODUCA And a reminder for all you rookies, bee law number one, absolutely no talking to humans. Alright, launch positions! The Jocks get into formation, chanting as they move. LOU LODUCA (CONT’D) Black and Yellow! JOCKS Hello! SPLITZ (to Barry) Are you ready for this, hot shot? BARRY Yeah. Yeah, bring it on. Barry NODS, terrified. BUZZ Wind! - CHECK! JOCK #1 Antennae! - CHECK! JOCK #2 Nectar pack! - CHECK! JACKSON Wings! - CHECK! SPLITZ Stinger! - CHECK! BARRY Scared out of my shorts - CHECK. LOU LODUCA Okay ladies, let’s move it out. Everyone FLIPS their goggles down. Pit crew bees CRANK their wings, and remove the starting blocks. We hear loud HUMMING. "Bee Movie" - JS REVISIONS 8/13/07 22. LOU LODUCA (CONT'D) LOU LODUCA (CONT’D) Pound those petunia's, you striped stem-suckers! All of you, drain those flowers! A FLIGHT DECK GUY in deep crouch hand-signals them out the archway as the backwash from the bee wings FLUTTERS his jump suit. Barry follows everyone. SEQ. 800 - “FLYING WITH THE JOCKS” The bees climb above tree tops in formation. Barry is euphoric. BARRY Whoa! I’m out! I can’t believe I’m out! So blue. Ha ha ha! (a beat) I feel so fast...and free. (re: kites in the sky) Box kite! Wow! They fly by several bicyclists, and approach a patch of flowers. BARRY (CONT'D) Flowers! SPLITZ This is blue leader. We have roses visual. Bring it around thirty degrees and hold. BARRY (sotto) Roses. JACKSON Thirty degrees, roger, bringing it around. Many pollen jocks break off from the main group. They use their equipment to collect nectar from flowers. Barry flies down to watch the jocks collect the nectar. JOCK Stand to the side kid, it’s got a bit of a kick. The jock fires the gun, and recoils. Barry watches the gun fill up with nectar. "Bee Movie" - JS REVISIONS 8/13/07 23. BARRY Oh, that is one Nectar Collector. JOCK You ever see pollination up close? BARRY No, Sir. He takes off, and the excess pollen dust falls causing the flowers to come back to life. JOCK (as he pollinates) I pick some pollen up over here, sprinkle it over here, maybe a dash over there, pinch on that one...see that? It’s a little bit of magic, ain’t it? The FLOWERS PERK UP as he pollinates. BARRY Wow. That’s amazing. Why do we do that? JOCK ...that’s pollen power, Kid. More pollen, more flowers, more nectar, more honey for us. BARRY Cool. The Jock WINKS at Barry. Barry rejoins the other jocks in the sky. They swoop in over a pond, kissing the surface. We see their image reflected in the water; they’re really moving. They fly over a fountain. BUZZ I’m picking up a lot of bright yellow, could be daisies. Don’t we need those? SPLITZ Copy that visual. We see what appear to be yellow flowers on a green field. "Bee Movie" - JS REVISIONS 8/13/07 24. They go into a deep bank and dive. BUZZ Hold on, one of these flowers seems to be on the move. SPLITZ Say again...Are you reporting a moving flower? BUZZ Affirmative. SEQ. 900 - “TENNIS GAME” The pollen jocks land. It is a tennis court with dozens of tennis balls. A COUPLE, VANESSA and KEN, plays tennis. The bees land right in the midst of a group of balls. KEN (O.C) That was on the line! The other bees start walking around amongst the immense, yellow globes. SPLITZ This is the coolest. What is it? They stop at a BALL on a white line and look up at it. JACKSON I don’t know, but I’m loving this color. SPLITZ (smelling tennis ball) Smells good. Not like a flower. But I like it. JACKSON Yeah, fuzzy. BUZZ Chemical-y. JACKSON Careful, guys, it’s a little grabby. Barry LANDS on a ball and COLLAPSES. "Bee Movie" - JS REVISIONS 8/13/07 25. BARRY Oh my sweet lord of bees. JACKSON Hey, candy brain, get off there! Barry attempts to pulls his legs off, but they stick. BARRY Problem! A tennis shoe and a hand ENTER FRAME. The hand picks up the ball with Barry underneath it. BARRY (CONT'D) Guys! BUZZ This could be bad. JACKSON Affirmative. Vanessa walks back to the service line, BOUNCES the ball. Each time it BOUNCES, the other bees cringe and GASP. ANGLE ON: Barry, terrified. Pure dumb luck, he’s not getting squished. BARRY (with each bounce) Very close...Gonna Hurt...Mamma’s little boy. SPLITZ You are way out of position, rookie. ANGLE ON: Vanessa serving. We see Barry and the ball up against the racket as she brings it back. She tosses the ball into the air; Barry’s eyes widen. The ball is STRUCK, and the rally is on. KEN Coming in at you like a missile! Ken HITS the ball back. Barry feels the g-forces. ANGLE ON: The Pollen Jocks watching Barry pass by them in SLOW MOTION. "Bee Movie" - JS REVISIONS 8/13/07 26. BARRY (in slow motion) Help me! JACKSON You know, I don't think these are flowers. SPLITZ Should we tell him? JACKSON I think he knows. BARRY (O.S) What is this?! Vanessa HITS a high arcing lob. Ken waits, poised for the return. We see Barry having trouble maneuvering the ball from fatigue. KEN (overly confident) Match point! ANGLE ON: Ken running up. He has a killer look in his eyes. He’s going to hit the ultimate overhead smash. KEN (CONT'D) You can just start packing up Honey, because I believe you’re about to eat it! ANGLE ON: Pollen Jocks. JACKSON Ahem! Ken is distracted by the jock. KEN What? No! He misses badly. The ball rockets into oblivion. Barry is still hanging on. ANGLE ON: Ken, berating himself. KEN (CONT’D) Oh, you cannot be serious. We hear the ball WHISTLING, and Barry SCREAMING. "Bee Movie" - JS REVISIONS 8/13/07 27. BARRY Yowser!!! SEQ. 1000 - “SUV” The ball flies through the air, and lands in the middle of the street. It bounces into the street again, and sticks in the grille of an SUV. INT. CAR ENGINE - CONTINUOUS BARRY’S POV: the grille of the SUV sucks him up. He tumbles through a black tunnel, whirling vanes, and pistons. BARRY AHHHHHHHHHHH!! OHHHH!! EECHHH!! AHHHHHH!! Barry gets chilled by the A/C system, and sees a frozen grasshopper. BARRY (CONT’D) (re: grasshopper) Eww, gross. CUT TO: INT. CAR - CONTINUOUS The car is packed with a typical suburban family: MOTHER, FATHER, eight-year old BOY, LITTLE GIRL in a car seat and a GRANDMOTHER. A big slobbery DOG is behind a grate. Barry pops into the passenger compartment, hitting the Mother’s magazine. MOTHER There’s a bee in the car! They all notice the bee and start SCREAMING. BARRY Aaahhhh! Barry tumbles around the car. We see the faces from his POV. MOTHER Do something! "Bee Movie" - JS REVISIONS 8/13/07 28. FATHER I’m driving! Barry flies by the little girl in her CAR SEAT. She waves hello. LITTLE GIRL Hi, bee. SON He’s back here! He’s going to sting me! The car SWERVES around the road. Barry flies into the back, where the slobbery dog SNAPS at him. Barry deftly avoids the jaws and gross, flying SPITTLE. MOTHER Nobody move. If you don’t move, he won’t sting you. Freeze! Everyone in the car freezes. Barry freezes. They stare at each other, eyes going back and forth, waiting to see who will make the first move. Barry blinks. GRANNY He blinked! Granny pulls out a can of HAIR SPRAY. SON Spray him, Granny! Granny sprays the hair spray everywhere. FATHER What are you doing? GRANNY It’s hair spray! Extra hold! MOTHER Kill it! Barry gets sprayed back by the hair spray, then sucked out of the sunroof. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 29. EXT. CITY STREET - CONTINUOUS BARRY Wow. The tension level out here is unbelievable. I’ve got to get home. As Barry flies down the street, it starts to RAIN. He nimbly avoids the rain at first. BARRY (CONT’D) Whoa. Whoa! Can’t fly in rain! Can’t fly in rain! Can’t fly in-- A couple of drops hit him, his wings go limp and he starts falling. BARRY (CONT'D) Mayday! Mayday! Bee going down! Barry sees a window ledge and aims for it and just makes it. Shivering and exhausted, he crawls into an open window as it CLOSES. SEQ. 1100 - “VANESSA SAVES BARRY” INT. VANESSA’S APARTMENT - CONTINUOUS Inside the window, Barry SHAKES off the rain like a dog. Vanessa, Ken, Andy, and Anna ENTER the apartment. VANESSA Ken, can you close the window please? KEN Huh? Oh. (to Andy) Hey, check out my new resume. I made it into a fold-out brochure. You see? It folds out. Ken holds up his brochure, with photos of himself, and a resume in the middle. ANGLE ON: Barry hiding behind the curtains, as Ken CLOSES THE WINDOW. "Bee Movie" - JS REVISIONS 8/13/07 30. BARRY Oh no, more humans. I don’t need this. Barry HOVERS up into the air and THROWS himself into the glass. BARRY (CONT’D) (dazed) Ow! What was that? He does it again, and then multiple more times. BARRY (CONT'D) Maybe this time...this time, this time, this time, this time, this time, this time, this time. Barry JUMPS onto the drapes. BARRY (CONT'D) (out of breath) Drapes! (then, re: glass) That is diabolical. KEN It’s fantastic. It’s got all my special skills, even my top ten favorite movies. ANDY What’s your number one? Star Wars? KEN Ah, I don’t go for that, (makes Star Wars noises), kind of stuff. ANGLE ON: Barry. BARRY No wonder we’re not supposed to talk to them. They’re out of their minds. KEN When I walk out of a job interview they’re flabbergasted. They can’t believe the things I say. Barry looks around and sees the LIGHT BULB FIXTURE in the middle of the ceiling. "Bee Movie" - JS REVISIONS 8/13/07 31. BARRY (re: light bulb) Oh, there’s the sun. Maybe that’s a way out. Barry takes off and heads straight for the light bulb. His POV: The seventy-five watt label grows as he gets closer. BARRY (CONT’D) I don’t remember the sun having a big seventy five on it. Barry HITS the bulb and is KNOCKED SILLY. He falls into a BOWL OF GUACAMOLE. Andy dips his chip in the guacamole, taking Barry with it. ANGLE ON: Ken and Andy. KEN I’ll tell you what. You know what? I predicted global warming. I could feel it getting hotter. At first I thought it was just me. Barry’s POV: Giant human mouth opening. KEN (CONT’D) Wait! Stop! Beeeeeee! ANNA Kill it! Kill it! They all JUMP up from their chairs. Andy looks around for something to use. Ken comes in for the kill with a big TIMBERLAND BOOT on each hand. KEN Stand back. These are winter boots. Vanessa ENTERS, and stops Ken from squashing Barry. VANESSA (grabs Ken’s arm) Wait. Don’t kill him. CLOSE UP: on Barry’s puzzled face. KEN You know I’m allergic to them. This thing could kill me. "Bee Movie" - JS REVISIONS 8/13/07 32. VANESSA Why does his life have any less value than yours? She takes a GLASS TUMBLER and places it over Barry. KEN Why does his life have any less value than mine? Is that your statement? VANESSA I’m just saying, all life has value. You don’t know what he’s capable of feeling. Barry looks up through the glass and watches this conversation, astounded. Vanessa RIPS Ken’s resume in half and SLIDES it under the glass. KEN (wistful) My brochure. There’s a moment of eye contact as she carries Barry to the window. She opens it and sets him free. VANESSA There you go, little guy. KEN (O.C) I’m not scared of them. But, you know, it’s an allergic thing. ANDY (O.C) * Hey, why don’t you put that on your * resume-brochure? * KEN (O.C) It’s not funny, my whole face could puff up. ANDY (O.C) Make it one of your “Special Skills.” KEN (O.C) You know, knocking someone out is also a special skill. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 33. EXT. WINDOWSILL - CONTINUOUS Barry stares over the window frame. He can’t believe what’s just happened. It is still RAINING. DISSOLVE TO: SEQ. 1200 - “BARRY SPEAKS” EXT. WINDOWSILL - LATER Barry is still staring through the window. Inside, everyone’s saying their good-byes. KEN Vanessa, next week? Yogurt night? VANESSA Uh, yeah sure Ken. You know, whatever. KEN You can put carob chips on there. VANESSA Good night. KEN (as he exits) Supposed to be less calories, or something. VANESSA Bye. She shuts the door. Vanessa starts cleaning up. BARRY I’ve got to say something. She saved my life. I’ve got to say something. Alright, here it goes. Barry flies in. "Bee Movie" - JS REVISIONS 8/13/07 34. INT. VANESSA’S APARTMENT - CONTINUOUS Barry hides himself on different PRODUCTS placed along the kitchen shelves. He hides on a Bumblebee Tuna can, and a “Greetings From Coney Island” MUSCLE-MAN POSTCARD on the fridge. BARRY (on fridge) What would I say? (landing on a bottle) I could really get in trouble. He stands looking at Vanessa. BARRY (CONT'D) It’s a bee law. You’re not supposed to talk to a human. I can’t believe I’m doing this. I’ve got to. Oh, I can’t do it! Come on! No, yes, no, do it! I can’t. How should I start it? You like jazz? No, that’s no good. Here she comes. Speak, you fool. As Vanessa walks by, Barry takes a DEEP BREATH. BARRY (CONT’D) (cheerful) Umm...hi. Vanessa DROPS A STACK OF DISHES, and HOPS BACK. BARRY (CONT’D) I’m sorry. VANESSA You’re talking. BARRY Yes, I know, I know. VANESSA You’re talking. BARRY I know, I’m sorry. I’m so sorry. VANESSA It’s okay. It’s fine. It’s just, I know I’m dreaming, but I don’t recall going to bed. "Bee Movie" - JS REVISIONS 8/13/07 35. BARRY Well, you know I’m sure this is very disconcerting. VANESSA Well yeah. I mean this is a bit of a surprise to me. I mean...you’re a bee. BARRY Yeah, I am a bee, and you know I’m not supposed to be doing this, but they were all trying to kill me and if it wasn’t for you...I mean, I had to thank you. It’s just the way I was raised. Vanessa intentionally JABS her hand with a FORK. VANESSA Ow! BARRY That was a little weird. VANESSA (to herself) I’m talking to a bee. BARRY Yeah. VANESSA I’m talking to a bee. BARRY Anyway... VANESSA And a bee is talking to me... BARRY I just want you to know that I’m grateful, and I’m going to leave now. VANESSA Wait, wait, wait, wait, how did you learn to do that? BARRY What? "Bee Movie" - JS REVISIONS 8/13/07 36. VANESSA The talking thing. BARRY Same way you did, I guess. Mama, Dada, honey, you pick it up. VANESSA That’s very funny. BARRY Yeah. Bees are funny. If we didn’t laugh, we’d cry. With what we have to deal with. Vanessa LAUGHS. BARRY (CONT’D) Anyway. VANESSA Can I, uh, get you something? BARRY Like what? VANESSA I don’t know. I mean, I don’t know. Coffee? BARRY Well, uh, I don’t want to put you out. VANESSA It’s no trouble. BARRY Unless you’re making anyway. VANESSA Oh, it takes two minutes. BARRY Really? VANESSA It’s just coffee. BARRY I hate to impose. "Bee Movie" - JS REVISIONS 8/13/07 37. VANESSA Don’t be ridiculous. BARRY Actually, I would love a cup. VANESSA Hey, you want a little rum cake? BARRY I really shouldn’t. VANESSA Have a little rum cake. BARRY No, no, no, I can’t. VANESSA Oh, come on. BARRY You know, I’m trying to lose a couple micrograms here. VANESSA Where? BARRY Well... These stripes don’t help. VANESSA You look great. BARRY I don’t know if you know anything about fashion. Vanessa starts POURING the coffee through an imaginary cup and directly onto the floor. BARRY (CONT'D) Are you alright? VANESSA No. DISSOLVE TO: SEQ. 1300 - “ROOFTOP COFFEE” "Bee Movie" - JS REVISIONS 8/13/07 38. EXT. VANESSA’S ROOF - LATER Barry and Vanessa are drinking coffee on her roof terrace. He is perched on her keychain. BARRY ...He can’t get a taxi. He’s making the tie in the cab, as they’re flying up Madison. So he finally gets there. VANESSA Uh huh? BARRY He runs up the steps into the church, the wedding is on... VANESSA Yeah? BARRY ...and he says, watermelon? I thought you said Guatemalan. VANESSA Uh huh? BARRY Why would I marry a watermelon? Barry laughs. Vanessa doesn’t. VANESSA Oh! Is that, uh, a bee joke? BARRY Yeah, that’s the kind of stuff that we do. VANESSA Yeah, different. A BEAT. VANESSA (CONT’D) So anyway...what are you going to do, Barry? "Bee Movie" - JS REVISIONS 8/13/07 39. BARRY About work? I don’t know. I want to do my part for the hive, but I can’t do it the way they want. VANESSA I know how you feel. BARRY You do? VANESSA Sure, my parents wanted me to be a lawyer or doctor, but I wanted to be a florist. BARRY Really? VANESSA My only interest is flowers. BARRY Our new queen was just elected with that same campaign slogan. VANESSA Oh. BARRY Anyway, see there’s my hive, right there. You can see it. VANESSA Oh, you’re in Sheep Meadow. BARRY (excited) Yes! You know the turtle pond? VANESSA Yes? BARRY I’m right off of that. VANESSA Oh, no way. I know that area. Do you know I lost a toe-ring there once? BARRY Really? "Bee Movie" - JS REVISIONS 8/13/07 40. VANESSA Yes. BARRY Why do girls put rings on their toes? VANESSA Why not? BARRY I don’t know. It’s like putting a hat on your knee. VANESSA Really? Okay. A JANITOR in the background changes a LIGHTBULB. To him, it appears that Vanessa is talking to an imaginary friend. JANITOR You all right, ma’am? VANESSA Oh, yeah, fine. Just having two cups of coffee. BARRY Anyway, this has been great. (wiping his mouth) Thanks for the coffee. Barry gazes at Vanessa. VANESSA Oh yeah, it’s no trouble. BARRY Sorry I couldn’t finish it. Vanessa giggles. BARRY (CONT'D) (re: coffee) If I did, I’d be up the rest of my life. Ummm. Can I take a piece of this with me? VANESSA Sure. Here, have a crumb. She takes a CRUMB from the plate and hands it to Barry. "Bee Movie" - JS REVISIONS 8/13/07 41. BARRY (a little dreamy) Oh, thanks. VANESSA Yeah. There is an awkward pause. BARRY Alright, well then, I guess I’ll see you around, or not, or... VANESSA Okay Barry. BARRY And thank you so much again, for before. VANESSA Oh that? BARRY Yeah. VANESSA Oh, that was nothing. BARRY Well, not nothing, but, anyway... Vanessa extends her hand, and shakes Barry’s gingerly. The Janitor watches. The lightbulb shorts out. The Janitor FALLS. CUT TO: SEQ. 1400 - “HONEX” INT. HONEX BUILDING - NEXT DAY ANGLE ON: A TEST BEE WEARING A PARACHUTE is in a wind tunnel, hovering through increasingly heavy wind. SIGNS UNDER A FLASHING LIGHT READ: “Test In Progress” & “Hurricane Survival Test”. 2 BEES IN A LAB COATS are observing behind glass. "Bee Movie" - JS REVISIONS 8/13/07 42. LAB COAT BEE 1 This can’t possibly work. LAB COAT BEE 2 Well, he’s all set to go, we may as well try it. (into the mic) Okay Dave, pull the chute. The test bee opens his parachute. He’s instantly blown against the rear wall. Adam and Barry ENTER. ADAM Sounds amazing. BARRY Oh, it was amazing. It was the scariest, happiest moment of my life. ADAM Humans! Humans! I can’t believe you were with humans! Giant scary humans! What were they like? BARRY Huge and crazy. They talk crazy, they eat crazy giant things. They drive around real crazy. ADAM And do they try and kill you like on TV? BARRY Some of them. But some of them don’t. ADAM How’d you get back? BARRY Poodle. ADAM Look, you did it. And I’m glad. You saw whatever you wanted to see out there, you had your “experience”, and now you’re back, you can pick out your job, and everything can be normal. "Bee Movie" - JS REVISIONS 8/13/07 43. ANGLE ON: LAB BEES examining a CANDY CORN through a microscope. BARRY Well... ADAM Well? BARRY Well, I met someone. ADAM You met someone? Was she Bee-ish? BARRY Mmm. ADAM Not a WASP? Your parents will kill you. BARRY No, no, no, not a wasp. ADAM Spider? BARRY You know, I’m not attracted to the spiders. I know to everyone else it’s like the hottest thing with the eight legs and all. I can’t get by that face. Barry makes a spider face. ADAM So, who is she? BARRY She’s a human. ADAM Oh no, no, no, no. That didn’t happen. You didn’t do that. That is a bee law. You wouldn’t break a bee law. BARRY Her name’s Vanessa. "Bee Movie" - JS REVISIONS 8/13/07 44. ADAM Oh, oh boy! BARRY She’s so-o nice. And she’s a florist! ADAM Oh, no. No, no, no! You’re dating a human florist? BARRY We’re not dating. ADAM You’re flying outside the hive. You’re talking to human beings that attack our homes with power washers and M-80’s. That’s 1/8 of a stick of dynamite. BARRY She saved my life. And she understands me. ADAM This is over. Barry pulls out the crumb. BARRY Eat this. Barry stuffs the crumb into Adam’s face. ADAM This is not over. What was that? BARRY They call it a crumb. ADAM That was SO STINGING STRIPEY! BARRY And that’s not even what they eat. That just falls off what they eat. Do you know what a Cinnabon is? ADAM No. "Bee Movie" - JS REVISIONS 8/13/07 45. BARRY It’s bread... ADAM Come in here! BARRY and cinnamon, ADAM Be quiet! BARRY and frosting...they heat it up-- ADAM Sit down! INT. ADAM’S OFFICE - CONTINUOUS BARRY Really hot! ADAM Listen to me! We are not them. We’re us. There’s us and there’s them. BARRY Yes, but who can deny the heart that is yearning... Barry rolls his chair down the corridor. ADAM There’s no yearning. Stop yearning. Listen to me. You have got to start thinking bee, my friend. ANOTHER BEE JOINS IN. ANOTHER BEE Thinking bee. WIDER SHOT AS A 3RD BEE ENTERS, popping up over the cubicle wall. 3RD BEE Thinking bee. EVEN WIDER SHOT AS ALL THE BEES JOIN IN. "Bee Movie" - JS REVISIONS 8/13/07 46. OTHER BEES Thinking bee. Thinking bee. Thinking bee. CUT TO: SEQ. 1500 - “POOLSIDE NAGGING” EXT. BACKYARD PARENT’S HOUSE - DAY Barry sits on a RAFT in a hexagon honey pool, legs dangling into the water. Janet Benson and Martin Benson stand over him wearing big, sixties sunglasses and cabana-type outfits. The sun shines brightly behind their heads. JANET BENSON (O.C) There he is. He’s in the pool. MARTIN BENSON You know what your problem is, Barry? BARRY I’ve got to start thinking bee? MARTIN BENSON Barry, how much longer is this going to go on? It’s been three days. I don’t understand why you’re not working. BARRY Well, I’ve got a lot of big life decisions I’m thinking about. MARTIN BENSON What life? You have no life! You have no job! You’re barely a bee! Barry throws his hands in the air. BARRY Augh. JANET BENSON Would it kill you to just make a little honey? Barry ROLLS off the raft and SINKS to the bottom of the pool. We hear his parents’ MUFFLED VOICES from above the surface. "Bee Movie" - JS REVISIONS 8/13/07 47. JANET BENSON (CONT'D) (muffled) Barry, come out from under there. Your father’s talking to you. Martin, would you talk to him? MARTIN BENSON Barry, I’m talking to you. DISSOLVE TO: EXT. PICNIC AREA - DAY MUSIC: “Sugar Sugar” by the Archies. Barry and Vanessa are having a picnic. A MOSQUITO lands on Vanessa’s leg. She SWATS it violently. Barry’s head whips around, aghast. They stare at each other awkwardly in a frozen moment, then BURST INTO HYSTERICAL LAUGHTER. Vanessa GETS UP. VANESSA You coming? BARRY Got everything? VANESSA All set. Vanessa gets into a one-man Ultra Light plane with a black and yellow paint scheme. She puts on her helmet. BARRY You go ahead, I’ll catch up. VANESSA (come hither wink) Don’t be too long. The Ultra Light takes off. Barry catches up. They fly sideby-side. VANESSA (CONT’D) Watch this! Vanessa does a loop, and FLIES right into the side of a mountain, BURSTING into a huge ball of flames. "Bee Movie" - JS REVISIONS 8/13/07 48. BARRY (yelling, anguished) Vanessa! EXT. BARRY’S PARENT’S HOUSE - CONTINUOUS ANGLE ON: Barry’s face bursting through the surface of the pool, GASPING for air, eyes opening in horror. MARTIN BENSON We’re still here, Barry. JANET BENSON I told you not to yell at him. He doesn’t respond when you yell at him. MARTIN BENSON Then why are you yelling at me? JANET BENSON Because you don’t listen. MARTIN BENSON I’m not listening to this. Barry is toweling off, putting on his sweater. BARRY Sorry Mom, I’ve got to go. JANET BENSON Where are you going? BARRY Nowhere. I’m meeting a friend. Barry JUMPS off the balcony and EXITS. JANET BENSON (calling after him) A girl? Is this why you can’t decide? BARRY Bye! JANET BENSON I just hope she’s Bee-ish. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 49. SEQ. 1700 - “STREETWALK/SUPERMARKET” EXT. VANESSA’S FLORIST SHOP - DAY Vanessa FLIPS the sign to say “Sorry We Missed You”, and locks the door. ANGLE ON: A POSTER on Vanessa’s door for the Tournament of Roses Parade in Pasadena. BARRY So they have a huge parade of just flowers every year in Pasadena? VANESSA Oh, to be in the Tournament of Roses, that’s every florist’s dream. Up on a float, surrounded by flowers, crowds cheering. BARRY Wow, a tournament. Do the roses actually compete in athletic events? VANESSA No. Alright, I’ve got one. How come you don’t fly everywhere? BARRY It’s exhausting. Why don’t you run everywhere? VANESSA Hmmm. BARRY Isn’t that faster? VANESSA Yeah, okay. I see, I see. Alright, your turn. Barry and Vanessa walk/fly down a New York side street, no other pedestrians near them. BARRY Ah! Tivo. You can just freeze live TV? That’s insane. "Bee Movie" - JS REVISIONS 8/13/07 50. VANESSA What, you don’t have anything like that? BARRY We have Hivo, but it’s a disease. It’s a horrible, horrible disease. VANESSA Oh my. They turn the corner onto a busier avenue and people start to swat at Barry. MAN Dumb bees! VANESSA You must just want to sting all those jerks. BARRY We really try not to sting. It’s usually fatal for us. VANESSA So you really have to watch your temper? They ENTER a SUPERMARKET. CUT TO: INT. SUPERMARKET BARRY Oh yeah, very carefully. You kick a wall, take a walk, write an angry letter and throw it out. You work through it like any emotion-- anger, jealousy, (under his breath) lust. Barry hops on top of some cardboard boxes in the middle of an aisle. A stock boy, HECTOR, whacks him with a rolled up magazine. VANESSA (to Barry) Oh my goodness. Are you okay? "Bee Movie" - JS REVISIONS 8/13/07 51. BARRY Yeah. Whew! Vanessa WHACKS Hector over the head with the magazine. VANESSA (to Hector) What is wrong with you?! HECTOR It’s a bug. VANESSA Well he’s not bothering anybody. Get out of here, you creep. Vanessa pushes him, and Hector EXITS, muttering. BARRY (shaking it off) What was that, a Pick and Save circular? VANESSA Yeah, it was. How did you know? BARRY It felt like about ten pages. Seventy-five’s pretty much our limit. VANESSA Boy, you’ve really got that down to a science. BARRY Oh, we have to. I lost a cousin to Italian Vogue. VANESSA I’ll bet. Barry stops, sees the wall of honey jars. BARRY What, in the name of Mighty Hercules, is this? How did this get here? Cute Bee? Golden Blossom? Ray Liotta Private Select? VANESSA Is he that actor? "Bee Movie" - JS REVISIONS 8/13/07 52. BARRY I never heard of him. Why is this here? VANESSA For people. We eat it. BARRY Why? (gesturing around the market) You don’t have enough food of your own? VANESSA Well yes, we-- BARRY How do you even get it? VANESSA Well, bees make it... BARRY I know who makes it! And it’s hard to make it! There’s Heating and Cooling, and Stirring...you need a whole Krelman thing. VANESSA It’s organic. BARRY It’s our-ganic! VANESSA It’s just honey, Barry. BARRY Just...what?! Bees don’t know about this. This is stealing. A lot of stealing! You’ve taken our homes, our schools, our hospitals. This is all we have. And it’s on sale? I’m going to get to the bottom of this. I’m going to get to the bottom of all of this! He RIPS the label off the Ray Liotta Private Select. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 53. SEQ. 1800 - “WINDSHIELD” EXT. BACK OF SUPERMARKET LOADING DOCK - LATER THAT DAY Barry disguises himself by blacking out his yellow lines with a MAGIC MARKER and putting on some war paint. He sees Hector, the stock boy, with a knife CUTTING open cardboard boxes filled with honey jars. MAN You almost done? HECTOR Almost. Barry steps in some honey, making a SNAPPING noise. Hector stops and turns. HECTOR (CONT’D) He is here. I sense it. Hector grabs his BOX CUTTER. Barry REACTS, hides himself behind the box again. HECTOR (CONT’D) (talking too loud, to no one in particular) Well, I guess I’ll go home now, and just leave this nice honey out, with no one around. A BEAT. Hector pretends to exit. He takes a couple of steps in place. ANGLE ON: The honey jar. Barry steps out into a moody spotlight. BARRY You’re busted, box boy! HECTOR Ah ha! I knew I heard something. So, you can talk. Barry flies up, stinger out, pushing Hector up against the wall. As Hector backs up, he drops his knife. BARRY Oh, I can talk. And now you’re going to start talking. "Bee Movie" - JS REVISIONS 8/13/07 54. Where are you getting all the sweet stuff? Who’s your supplier?! HECTOR I don’t know what you’re talking about. I thought we were all friends. The last thing we want to do is upset any of you...bees! Hector grabs a PUSHPIN. Barry fences with his stinger. HECTOR (CONT’D) You’re too late. It’s ours now! BARRY You, sir, have crossed the wrong sword. HECTOR You, sir, are about to be lunch for my iguana, Ignacio! Barry and Hector get into a cross-swords, nose-to-nose confrontation. BARRY Where is the honey coming from? Barry knocks the pushpin out of his hand. Barry puts his stinger up to Hector’s nose. BARRY (CONT'D) Tell me where?! HECTOR (pointing to a truck) Honey Farms. It comes from Honey Farms. ANGLE ON: A Honey Farms truck leaving the parking lot. Barry turns, takes off after the truck through an alley. He follows the truck out onto a busy street, dodging a bus, and several cabs. CABBIE Crazy person! He flies through a metal pipe on the top of a truck. BARRY OOOHHH! "Bee Movie" - JS REVISIONS 8/13/07 55. BARRY (CONT'D) Barry grabs onto a bicycle messenger’s backpack. The honey farms truck starts to pull away. Barry uses the bungee cord to slingshot himself towards the truck. He lands on the windshield, where the wind plasters him to the glass. He looks up to find himself surrounded by what appear to be DEAD BUGS. He climbs across, working his way around the bodies. BARRY (CONT’D) Oh my. What horrible thing has happened here? Look at these faces. They never knew what hit them. And now they’re on the road to nowhere. A MOSQUITO opens his eyes. MOOSEBLOOD Pssst! Just keep still. BARRY What? You’re not dead? MOOSEBLOOD Do I look dead? Hey man, they will wipe anything that moves. Now, where are you headed? BARRY To Honey Farms. I am onto something huge here. MOOSEBLOOD I’m going to Alaska. Moose blood. Crazy stuff. Blows your head off. LADYBUG I’m going to Tacoma. BARRY (to fly) What about you? MOOSEBLOOD He really is dead. BARRY Alright. The WIPER comes towards them. "Bee Movie" - JS REVISIONS 8/13/07 56. MOOSEBLOOD Uh oh. BARRY What is that? MOOSEBLOOD Oh no! It’s a wiper, triple blade! BARRY Triple blade? MOOSEBLOOD Jump on. It’s your only chance, bee. They hang on as the wiper goes back and forth. MOOSEBLOOD (CONT'D) (yelling to the truck driver through the glass) Why does everything have to be so dog-gone clean?! How much do you people need to see? Open your eyes! Stick your head out the window! CUT TO: INT. TRUCK CAB SFX: Radio. RADIO VOICE For NPR News in Washington, I’m Carl Kasell. EXT. TRUCK WINDSHIELD MOOSEBLOOD But don’t kill no more bugs! The Mosquito is FLUNG off of the wiper. MOOSEBLOOD (CONT'D) Beeeeeeeeeeeeee! BARRY Moose blood guy! "Bee Movie" - JS REVISIONS 8/13/07 57. Barry slides toward the end of the wiper, is thrown off, but he grabs the AERIAL and hangs on for dear life. Barry looks across and sees a CRICKET on another vehicle in the exact same predicament. They look at each other and SCREAM in unison. BARRY AND CRICKET Aaaaaaaaaah! ANOTHER BUG grabs onto the aerial, and screams as well. INT. TRUCK CAB - SAME TIME DRIVER You hear something? TRUCKER PASSENGER Like what? DRIVER Like tiny screaming. TRUCKER PASSENGER Turn off the radio. The driver reaches down and PRESSES a button, lowering the aerial. EXT. TRUCK WINDSHIELD - SAME TIME Barry and the other bug do a “choose up” to the bottom, Barry wins. BARRY Aha! Then he finally has to let go and gets thrown into the truck horn atop cab. Mooseblood is inside. MOOSEBLOOD Hey, what’s up bee boy? BARRY Hey, Blood! DISSOLVE TO: "Bee Movie" - JS REVISIONS 8/13/07 58. INT. TRUCK HORN - LATER BARRY ...and it was just an endless row of honey jars as far as the eye could see. MOOSEBLOOD Wow. BARRY So I’m just assuming wherever this honey truck goes, that’s where they’re getting it. I mean, that honey’s ours! MOOSEBLOOD Bees hang tight. BARRY Well, we’re all jammed in there. It’s a close community. MOOSEBLOOD Not us, man. We’re on our own. Every mosquito is on his own. BARRY But what if you get in trouble? MOOSEBLOOD Trouble? You're a mosquito. You're in trouble! Nobody likes us. They’re just all smacking. People see a mosquito, smack, smack! BARRY At least you’re out in the world. You must meet a lot of girls. MOOSEBLOOD Mosquito girls try to trade up; get with a moth, dragonfly...mosquito girl don’t want no mosquito. A BLOOD MOBILE pulls up alongside. MOOSEBLOOD (CONT'D) Whoa, you have got to be kidding me. Mooseblood’s about to leave the building. So long bee. "Bee Movie" - JS REVISIONS 8/13/07 59. Mooseblood EXITS the horn, and jumps onto the blood mobile. MOOSEBLOOD (CONT'D) Hey guys. I knew I’d catch you all down here. Did you bring your crazy straws? CUT TO: SEQ. 1900 - “THE APIARY” EXT. APIARY - LATER Barry sees a SIGN, “Honey Farms” The truck comes to a stop. SFX: The Honey farms truck blares its horn. Barry flies out, lands on the hood. ANGLE ON: Two BEEKEEPERS, FREDDY and ELMO, walking around to the back of the gift shop. Barry follows them, and lands in a nearby tree FREDDY ...then we throw it in some jars, slap a label on it, and it’s pretty much pure profit. BARRY What is this place? ELMO Bees got a brain the size of a pinhead. FREDDY They are pinheads. The both LAUGH. ANGLE ON: Barry REACTING. They arrive at the back of the shop where one of them opens a SMOKER BOX. FREDDY (CONT’D) Hey, check out the new smoker. "Bee Movie" - JS REVISIONS 8/13/07 60. ELMO Oh, Sweet. That’s the one you want. FREDDY The Thomas 3000. BARRY Smoker? FREDDY 90 puffs a minute, semi-automatic. Twice the nicotine, all the tar. They LAUGH again, nefariously. FREDDY (CONT’D) Couple of breaths of this, and it knocks them right out. They make the honey, and we make the money. BARRY “They make the honey, and we make the money?” Barry climbs onto the netting of Freddy’s hat. He climbs up to the brim and looks over the edge. He sees the apiary boxes as Freddy SMOKES them. BARRY (CONT'D) Oh my. As Freddy turns around, Barry jumps into an open apiary box, and into an apartment. HOWARD and FRAN are just coming to from the smoking. BARRY (CONT’D) What’s going on? Are you okay? HOWARD Yeah, it doesn’t last too long. HE COUGHS a few times. BARRY How did you two get here? Do you know you’re in a fake hive with fake walls? HOWARD (pointing to a picture on the wall) "Bee Movie" - JS REVISIONS 8/13/07 61. Our queen was moved here, we had no choice. BARRY (looking at a picture on the wall) This is your queen? That’s a man in women’s clothes. That’s a dragqueen! The other wall opens. Barry sees the hundreds of apiary boxes. BARRY (CONT'D) What is this? Barry pulls out his camera, and starts snapping. BARRY (CONT’D) Oh no. There’s hundreds of them. (V.O, as Barry takes pictures) Bee honey, our honey, is being brazenly stolen on a massive scale. CUT TO: SEQ. 2100 - “BARRY TELLS FAMILY” INT. BARRY’S PARENT’S HOUSE - LIVING ROOM - LATER Barry has assembled his parents, Adam, and Uncle Carl. BARRY This is worse than anything the bears have done to us. And I intend to do something about it. JANET BENSON Oh Barry, stop. MARTIN BENSON Who told you that humans are taking our honey? That’s just a rumor. BARRY Do these look like rumors? Barry throws the PICTURES on the table. Uncle Carl, cleaning his glasses with his shirt tail, digs through a bowl of nuts with his finger. "Bee Movie" - JS REVISIONS 8/13/07 62. HOWARD (CONT'D) UNCLE CARL That’s a conspiracy theory. These are obviously doctored photos. JANET BENSON Barry, how did you get mixed up in all this? ADAM (jumping up) Because he’s been talking to humans! JANET BENSON Whaaat? MARTIN BENSON Talking to humans?! Oh Barry. ADAM He has a human girlfriend and they make out! JANET BENSON Make out? Barry? BARRY We do not. ADAM You wish you could. BARRY Who’s side are you on? ADAM The bees! Uncle Carl stands up and pulls his pants up to his chest. UNCLE CARL I dated a cricket once in San Antonio. Man, those crazy legs kept me up all night. Hotcheewah! JANET BENSON Barry, this is what you want to do with your life? BARRY This is what I want to do for all our lives. Nobody works harder than bees. "Bee Movie" - JS REVISIONS 8/13/07 63. Dad, I remember you coming home some nights so overworked, your hands were still stirring. You couldn’t stop them. MARTIN BENSON Ehhh... JANET BENSON (to Martin) I remember that. BARRY What right do they have to our hardearned honey? We’re living on two cups a year. They’re putting it in lip balm for no reason what-soever. MARTIN BENSON Even if it’s true, Barry, what could one bee do? BARRY I’m going to sting them where it really hurts. MARTIN BENSON In the face? BARRY No. MARTIN BENSON In the eye? That would really hurt. BARRY No. MARTIN BENSON Up the nose? That’s a killer. BARRY No. There’s only one place you can sting the humans. One place where it really matters. CUT TO: SEQ. 2300 - “HIVE AT 5 NEWS/BEE LARRY KING” "Bee Movie" - JS REVISIONS 8/13/07 64. BARRY (CONT'D) INT. NEWS STUDIO - DAY DRAMATIC NEWS MUSIC plays as the opening news sequence rolls. We see the “Hive at Five” logo, followed by shots of past news events: A BEE freeway chase, a BEE BEARD protest rally, and a BEAR pawing at the hive as the BEES flee in panic. BOB BUMBLE (V.O.) Hive at Five, the hive’s only full hour action news source... SHOTS of NEWSCASTERS flash up on screen. BOB BUMBLE (V.O.) (CONT'D) With Bob Bumble at the anchor desk... BOB has a big shock of anchorman hair, gray temples and overly white teeth. BOB BUMBLE (V.O.) (CONT'D) ...weather with Storm Stinger, sports with Buzz Larvi, and Jeanette Chung. JEANETTE is an Asian bee. BOB BUMBLE (CONT'D) Good evening, I’m Bob Bumble. JEANETTE CHUNG And I’m Jeanette Chung. BOB BUMBLE Our top story, a tri-county bee, Barry Benson... INSERT: Barry’s graduation picture. BOB BUMBLE (CONT'D) ...is saying he intends to sue the human race for stealing our honey, packaging it, and profiting from it illegally. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 65. INT. BEENN STUDIO - BEE LARRY KING LIVE BEE LARRY KING, wearing suspenders and glasses, is interviewing Barry. A LOWER-THIRD CHYRON reads: “Bee Larry King Live.” BEE LARRY KING Don’t forget, tomorrow night on Bee Larry King, we are going to have three former Queens all right here in our studio discussing their new book, “Classy Ladies,” out this week on Hexagon. (to Barry) Tonight, we’re talking to Barry Benson. Did you ever think, I’m just a kid from the hive, I can’t do this? BARRY Larry, bees have never been afraid to change the world. I mean, what about Bee-Columbus? Bee-Ghandi? Be-geesus? BEE LARRY KING Well, where I’m from you wouldn’t think of suing humans. We were thinking more like stick ball, candy stores. BARRY How old are you? BEE LARRY KING I want you to know that the entire bee community is supporting you in this case, which is certain to be the trial of the bee century. BARRY Thank you, Larry. You know, they have a Larry King in the human world, too. BEE LARRY KING It’s a common name. Next week on Bee Larry King... "Bee Movie" - JS REVISIONS 8/13/07 66. BARRY No, I mean he looks like you. And he has a show with suspenders and different colored dots behind him. BEE LARRY KING Next week on Bee Larry King... BARRY Old guy glasses, and there’s quotes along the bottom from the guest you’re watching even though you just heard them... BEE LARRY KING Bear week next week! They’re scary, they’re hairy, and they’re here live. Bee Larry King EXITS. BARRY Always leans forward, pointy shoulders, squinty eyes... (lights go out) Very Jewish. CUT TO: SEQ. 2400 - “FLOWER SHOP” INT. VANESSA’S FLOWER SHOP - NIGHT Stacks of law books are piled up, legal forms, etc. Vanessa is talking with Ken in the other room. KEN Look, in tennis, you attack at the point of weakness. VANESSA But it was my grandmother, Ken. She’s 81. KEN Honey, her backhand’s a joke. I’m not going to take advantage of that? "Bee Movie" - JS REVISIONS 8/13/07 67. BARRY (O.C) Quiet please. Actual work going on here. KEN Is that that same bee? BARRY (O.C) Yes it is. VANESSA I’m helping him sue the human race. KEN What? Barry ENTERS. BARRY Oh, hello. KEN Hello Bee. Barry flies over to Vanessa. VANESSA This is Ken. BARRY Yeah, I remember you. Timberland, size 10 1/2, Vibram sole I believe. KEN Why does he talk again, Hun? VANESSA (to Ken, sensing the tension) Listen, you’d better go because we’re really busy working. KEN But it’s our yogurt night. VANESSA (pushing him out the door) Oh...bye bye. She CLOSES the door. KEN Why is yogurt night so difficult?! "Bee Movie" - JS REVISIONS 8/13/07 68. Vanessa ENTERS the back room carrying coffee. VANESSA Oh you poor thing, you two have been at this for hours. BARRY Yes, and Adam here has been a huge help. ANGLE ON: A EMPTY CINNABON BOX with Adam asleep inside, covered in frosting. VANESSA How many sugars? BARRY Just one. I try not to use the competition. So, why are you helping me, anyway? VANESSA Bees have good qualities. BARRY (rowing on the sugar cube like a gondola) Si, Certo. VANESSA And it feels good to take my mind off the shop. I don’t know why, instead of flowers, people are giving balloon bouquets now. BARRY Yeah, those are great...if you’re 3. VANESSA And artificial flowers. BARRY (re: plastic flowers) Oh, they just get me psychotic! VANESSA Yeah, me too. BARRY The bent stingers, the pointless pollination. "Bee Movie" - JS REVISIONS 8/13/07 69. VANESSA Bees must hate those fake plastic things. BARRY There’s nothing worse than a daffodil that’s had work done. VANESSA (holding up the lawsuit documents) Well, maybe this can make up for it a little bit. CUT TO: EXT. VANESSA’S FLORIST SHOP They EXIT the store, and cross to the mailbox. VANESSA You know Barry, this lawsuit is a pretty big deal. BARRY I guess. VANESSA Are you sure that you want to go through with it? BARRY Am I sure? (kicking the envelope into the mailbox) When I’m done with the humans, they won’t be able to say, “Honey, I’m home,” without paying a royalty. CUT TO: SEQ. 2700 - “MEET MONTGOMERY” EXT. MANHATTAN COURTHOUSE - DAY P.O.V SHOT - A camera feed turns on, revealing a newsperson. "Bee Movie" - JS REVISIONS 8/13/07 70. PRESS PERSON #2 (talking to camera) Sarah, it’s an incredible scene here in downtown Manhattan where all eyes and ears of the world are anxiously waiting, because for the first time in history, we’re going to hear for ourselves if a honey bee can actually speak. ANGLE ON: Barry, Vanessa, and Adam getting out of the cab. The press spots Barry and Vanessa and pushes in. Adam sits on Vanessa’s shoulder. INT. COURTHOUSE - CONTINUOUS Barry, Vanessa, and Adam sit at the Plaintiff’s Table. VANESSA (turns to Barry) What have we gotten into here, Barry? BARRY I don’t know, but it’s pretty big, isn’t it? ADAM I can’t believe how many humans don’t have to be at work during the day. BARRY Hey, you think these billion dollar multinational food companies have good lawyers? CUT TO: EXT. COURTHOUSE STEPS - CONTINUOUS A BIG BLACK CAR pulls up. ANGLE ON: the grill filling the frame. We see the “L.T.M” monogram on the hood ornament. The defense lawyer, LAYTON T. MONTGOMERY comes out, squashing a bug on the pavement. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 71. INT. COURTHOUSE - CONTINUOUS Barry SHUDDERS. VANESSA What’s the matter? BARRY I don’t know. I just got a chill. Montgomery ENTERS. He walks by Barry’s table shaking a honey packet. MONTGOMERY Well, if it isn’t the B-Team. (re: the honey packet) Any of you boys work on this? He CHUCKLES. The JUDGE ENTERS. SEQ. 3000 - “WITNESSES” BAILIFF All rise! The Honorable Judge Bumbleton presiding. JUDGE (shuffling papers) Alright...Case number 4475, Superior Court of New York. Barry Bee Benson vs. the honey industry, is now in session. Mr. Montgomery, you are representing the five major food companies, collectively. ANGLE ON: Montgomery’s BRIEFCASE. It has an embossed emblem of an EAGLE, holding a gavel in one talon and a briefcase in the other. MONTGOMERY A privilege. JUDGE Mr. Benson. Barry STANDS. JUDGE (CONT’D) You are representing all bees of the world? "Bee Movie" - JS REVISIONS 8/13/07 72. Montgomery, the stenographer, and the jury lean in. CUT TO: EXT. COURTHOUSE - CONTINUOUS The spectators outside freeze. The helicopters angle forward to listen closely. CUT TO: INT. COURTHOUSE BARRY Bzzz bzzz bzzz...Ahh, I’m kidding, I’m kidding. Yes, your honor. We are ready to proceed. ANGLE ON: Courtroom hub-bub. JUDGE And Mr. Montgomery, your opening statement, please. Montgomery rises. MONTGOMERY (grumbles, clears his throat) Ladies and gentlemen of the jury. My grandmother was a simple woman. Born on a farm, she believed it was man's divine right to benefit from the bounty of nature God put before us. If we were to live in the topsy-turvy world Mr. Benson imagines, just think of what it would mean. Maybe I would have to negotiate with the silk worm for the elastic in my britches. Talking bee. How do we know this isn’t some sort of holographic motion picture capture Hollywood wizardry? They could be using laser beams, robotics, ventriloquism, cloning...for all we know he could be on steroids! Montgomery leers at Barry, who moves to the stand. "Bee Movie" - JS REVISIONS 8/13/07 73. JUDGE Mr. Benson? Barry makes his opening statement. BARRY Ladies and Gentlemen of the jury, there’s no trickery here. I’m just an ordinary bee. And as a bee, honey’s pretty important to me. It’s important to all bees. We invented it, we make it, and we protect it with our lives. Unfortunately, there are some people in this room who think they can take whatever they want from us cause we’re the little guys. And what I’m hoping is that after this is all over, you’ll see how by taking our honey, you’re not only taking away everything we have, but everything we are. ANGLE ON: Vanessa smiling. ANGLE ON: The BEE GALLERY wiping tears away. CUT TO: INT. BENSON HOUSE Barry’s family is watching the case on TV. JANET BENSON Oh, I wish he would dress like that all the time. So nice... CUT TO: INT. COURTROOM - LATER JUDGE Call your first witness. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 74. INT. COURTHOUSE - LATER BARRY So, Mr. Klauss Vanderhayden of Honey Farms. Pretty big company you have there? MR. VANDERHAYDEN I suppose so. BARRY And I see you also own HoneyBurton, and Hon-Ron. MR. VANDERHAYDEN Yes. They provide beekeepers for our farms. BARRY Beekeeper. I find that to be a very disturbing term, I have to say. I don’t imagine you employ any bee free-ers, do you? MR. VANDERHAYDEN No. BARRY I’m sorry. I couldn’t hear you. MR. VANDERHAYDEN (louder) No. BARRY No. Because you don’t free bees. You keep bees. And not only that, it seems you thought a bear would be an appropriate image for a jar of honey? MR. VANDERHAYDEN Well, they’re very lovable creatures. Yogi-bear, Fozzy-bear, Build-a-bear. BARRY Yeah, you mean like this?! Vanessa and the SUPERINTENDANT from her building ENTER with a GIANT FEROCIOUS GRIZZLY BEAR. He has a neck collar and chains extending from either side. "Bee Movie" - JS REVISIONS 8/13/07 75. By pulling the chains, they bring him directly in front of Vanderhayden. The bear LUNGES and ROARS. BARRY (CONT'D) Bears kill bees! How would you like his big hairy head crashing into your living room? Biting into your couch, spitting out your throwpillows...rowr, rowr! The bear REACTS. BEAR Rowr!! BARRY Okay, that’s enough. Take him away. Vanessa and the Superintendant pull the bear out of the courtroom. Vanderhayden TREMBLES. The judge GLARES at him. CUT TO: INT. COURTROOM- A LITTLE LATER Barry questions STING. BARRY So, Mr. Sting. Thank you for being here. Your name intrigues me, I have to say. Where have I heard it before? STING I was with a band called "The Police". BARRY But you've never been a police officer of any kind, have you? STING No, I haven't. "Bee Movie" - JS REVISIONS 8/13/07 76. BARRY No, you haven’t. And so, here we have yet another example of bee culture being casually stolen by a human for nothing more than a prance-about stage name. STING Oh please. BARRY Have you ever been stung, Mr. Sting? Because I'm feeling a little stung, Sting. Or should I say, (looking in folder) Mr. Gordon M. Sumner? The jury GASPS. MONTGOMERY (to his aides) That’s not his real name? You idiots! CUT TO: INT. COURTHOUSE- LATER BARRY Mr. Liotta, first may I offer my belated congratulations on your Emmy win for a guest spot on E.R. in 2005. LIOTTA Thank you. Thank you. Liotta LAUGHS MANIACALLY. BARRY I also see from your resume that you’re devilishly handsome, but with a churning inner turmoil that’s always ready to blow. LIOTTA I enjoy what I do. Is that a crime? "Bee Movie" - JS REVISIONS 8/13/07 77. BARRY Not yet it isn’t. But is this what it’s come to for you, Mr. Liotta? Exploiting tiny helpless bees so you don’t have to rehearse your part, and learn your lines, Sir? LIOTTA Watch it Benson, I could blow right now. BARRY This isn’t a goodfella. This is a badfella! LIOTTA (exploding, trying to smash Barry with the Emmy) Why doesn’t someone just step on this little creep and we can all go home? You’re all thinking it. Say it! JUDGE Order! Order in this courtroom! A MONTAGE OF NEWSPAPER HEADLINES FOLLOWS: NEW YORK POST: “Bees to Humans: Buzz Off”. NEW YORK TELEGRAM: “Sue Bee”. DAILY VARIETY: “Studio Dumps Liotta Project. Slams Door on Unlawful Entry 2.” CUT TO: SEQ. 3175 - “CANDLELIGHT DINNER” INT. VANESSA’S APARTMENT Barry and Vanessa are having a candle light dinner. Visible behind Barry is a “LITTLE MISSY” SET BOX, with the flaps open. BARRY Well, I just think that was awfully nice of that bear to pitch in like that. "Bee Movie" - JS REVISIONS 8/13/07 78. VANESSA I’m telling you, I think the jury’s on our side. BARRY Are we doing everything right...you know, legally? VANESSA I’m a florist. BARRY Right, right. Barry raises his glass. BARRY (CONT’D) Well, here’s to a great team. VANESSA To a great team. They toast. Ken ENTERS KEN Well hello. VANESSA Oh...Ken. BARRY Hello. VANESSA I didn’t think you were coming. KEN No, I was just late. I tried to call. But, (holding his cell phone) the battery... VANESSA I didn’t want all this to go to waste, so I called Barry. Luckily he was free. BARRY Yeah. KEN (gritting his teeth) Oh, that was lucky. "Bee Movie" - JS REVISIONS 8/13/07 79. VANESSA Well, there’s still a little left. I could heat it up. KEN Yeah, heat it up. Sure, whatever. Vanessa EXITS. Ken and Barry look at each other as Barry eats. BARRY So, I hear you’re quite a tennis player. I’m not much for the game myself. I find the ball a little grabby. KEN That’s where I usually sit. Right there. VANESSA (O.C) Ken, Barry was looking at your resume, and he agreed with me that “eating with chopsticks” isn’t really a special skill. KEN (to Barry) You think I don’t see what you’re doing? BARRY Hey look, I know how hard it is trying to find the right job. We certainly have that in common. KEN Do we? BARRY Well, bees have 100% employment, of course. But we do jobs like taking the crud out. KEN That’s just what I was thinking about doing. Ken holds his table knife up. It slips out of his hand. He goes under the table to pick it up. "Bee Movie" - JS REVISIONS 8/13/07 80. VANESSA Ken, I let Barry borrow your razor for his fuzz. I hope that was alright. Ken hits his head on the table. BARRY I’m going to go drain the old stinger. KEN Yeah, you do that. Barry EXITS to the bathroom, grabbing a small piece of a VARIETY MAGAZINE on the way. BARRY Oh, look at that. Ken slams the champagne down on the table. Ken closes his eyes and buries his face in his hands. He grabs a magazine on the way into the bathroom. SEQ. 2800 - “BARRY FIGHTS KEN” INT. BATHROOM - CONTINUOUS Ken ENTERS, closes the door behind him. He’s not happy. Barry is washing his hands. He glances back at Ken. KEN You know, I’ve just about had it with your little mind games. BARRY What’s that? KEN Italian Vogue. BARRY Mamma Mia, that’s a lot of pages. KEN It’s a lot of ads. BARRY Remember what Van said. Why is your life any more valuable than mine? "Bee Movie" - JS REVISIONS 8/13/07 81. KEN It’s funny, I just can’t seem to recall that! Ken WHACKS at Barry with the magazine. He misses and KNOCKS EVERYTHING OFF THE VANITY. Ken grabs a can of AIR FRESHENER. KEN (CONT'D) I think something stinks in here. He sprays at Barry. BARRY I love the smell of flowers. KEN Yeah? How do you like the smell of flames? Ken lights the stream. BARRY Not as much. Barry flies in a circle. Ken, trying to stay with him, spins in place. ANGLE ON: Flames outside the bathroom door. Ken slips on the Italian Vogue, falls backward into the shower, pulling down the shower curtain. The can hits him in the head, followed by the shower curtain rod, and the rubber duck. Ken reaches back, grabs the handheld shower head. He whips around, looking for Barry. ANGLE ON: A WATERBUG near the drain. WATERBUG Waterbug. Not taking sides. Barry is on the toilet tank. He comes out from behind a shampoo bottle, wearing a chapstick cap as a helmet. BARRY Ken, look at me! I’m wearing a chapstick hat. This is pathetic. ANGLE ON: Ken turning the hand shower nozzle from “GENTLE”, to “TURBO”, to “LETHAL”. "Bee Movie" - JS REVISIONS 8/13/07 82. KEN I’ve got issues! Ken fires the water at Barry, knocking him into the toilet. The items from the vanity (emory board, lipstick, eye curler, etc.) are on the toilet seat. Ken looks down at Barry. KEN (CONT'D) Well well well, a royal flush. BARRY You’re bluffing. KEN Am I? Ken flushes the toilet. Barry grabs the Emory board and uses it to surf. He puts his hand in the water while he’s surfing. Some water splashes on Ken. BARRY Surf’s up, dude! KEN Awww, poo water! He does some skate board-style half-pipe riding. Barry surfs out of the toilet. BARRY That bowl is gnarly. Ken tries to get a shot at him with the toilet brush. KEN Except for those dirty yellow rings. Vanessa ENTERS. VANESSA Kenneth! What are you doing? KEN You know what? I don’t even like honey! I don’t eat it! VANESSA We need to talk! "Bee Movie" - JS REVISIONS 8/13/07 83. She pulls Ken out by his ear. Ken glares at Barry. CUT TO: INT. HALLWAY - CONTINUOUS VANESSA He’s just a little bee. And he happens to be the nicest bee I’ve met in a long time. KEN Long time? What are you talking about? Are there other bugs in your life? VANESSA No, but there are other things bugging me in life. And you’re one of them! KEN Fine! Talking bees, no yogurt night...my nerves are fried from riding on this emotional rollercoaster. VANESSA Goodbye, Ken. KEN Augh! VANESSA Whew! Ken EXITS, then re-enters frame. KEN And for your information, I prefer sugar-free, artificial sweeteners, made by man! He EXITS again. The DOOR SLAMS behind him. VANESSA (to Barry) I’m sorry about all that. Ken RE-ENTERS. "Bee Movie" - JS REVISIONS 8/13/07 84. KEN I know it’s got an aftertaste! I like it! BARRY (re: Ken) I always felt there was some kind of barrier between Ken and me. (puts his hands in his pockets) I couldn’t overcome it. Oh well. VANESSA Are you going to be okay for the trial tomorrow? BARRY Oh, I believe Mr. Montgomery is about out of ideas. CUT TO: SEQ. 3300 - “ADAM STINGS MONTY” INT. COURTROOM - NEXT DAY ANGLE ON: Medium shot of Montgomery standing at his table. MONTGOMERY We would like to call Mr. Barry Benson Bee to the stand. ADAM (whispering to Vanessa) Now that’s a good idea. (to Barry) You can really see why he’s considered one of the very best lawyers-- Oh. Barry rolls his eyes. He gets up, takes the stand. A juror in a striped shirt APPLAUDS. MR. GAMMIL (whispering) Layton, you’ve got to weave some magic with this jury, or it’s going to be all over. Montgomery is holding a BOOK, “The Secret Life of Bees”. "Bee Movie" - JS REVISIONS 8/13/07 85. MONTGOMERY (confidently whispering) Oh, don’t worry Mr. Gammil. The only thing I have to do to turn this jury around is to remind them of what they don’t like about bees. (to Gammil) You got the tweezers? Mr. Gammil NODS, and pats his breast pocket. MR. GAMMIL Are you allergic? MONTGOMERY Only to losing, son. Only to losing. Montgomery approaches the stand. MONTGOMERY (CONT’D) Mr. Benson Bee. I’ll ask you what I think we’d all like to know. What exactly is your relationship to that woman? Montgomery points to Vanessa. BARRY We’re friends. MONTGOMERY Good friends? BARRY Yes. MONTGOMERY (softly in Barry’s face) How good? BARRY What? MONTGOMERY Do you live together? BARRY Wait a minute, this isn’t about-- "Bee Movie" - JS REVISIONS 8/13/07 86. MONTGOMERY Are you her little... (clearing throat) ... bed bug? BARRY (flustered) Hey, that’s not the kind of-- MONTGOMERY I’ve seen a bee documentary or two. Now, from what I understand, doesn’t your Queen give birth to all the bee children in the hive? BARRY Yeah, but-- MONTGOMERY So those aren’t even your real parents! ANGLE ON: Barry’s parents. MARTIN BENSON Oh, Barry. BARRY Yes they are! ADAM Hold me back! Vanessa holds him back with a COFFEE STIRRER. Montgomery points to Barry’s parents. MONTGOMERY You’re an illegitimate bee, aren’t you Benson? ADAM He’s denouncing bees! All the bees in the courtroom start to HUM. They’re agitated. MONTGOMERY And don’t y’all date your cousins? "Bee Movie" - JS REVISIONS 8/13/07 87. VANESSA (standing, letting go of Adam) Objection! Adam explodes from the table and flies towards Montgomery. ADAM I’m going to pin cushion this guy! Montgomery turns around and positions himself by the judge’s bench. He sticks his butt out. Montgomery winks at his team. BARRY Adam, don’t! It’s what he wants! Adam shoves Barry out of the way. Adam STINGS Montgomery in the butt. The jury REACTS, aghast. MONTGOMERY Ow! I’m hit! Oh, lordy, I am hit! The judge BANGS her gavel. JUDGE Order! Order! Please, Mr. Montgomery. MONTGOMERY The venom! The venom is coursing through my veins! I have been felled by a wing-ed beast of destruction. You see? You can’t treat them like equals. They’re strip-ed savages! Stinging’s the only thing they know! It’s their way! ANGLE ON: Adam, collapsed on the floor. Barry rushes to his side. BARRY Adam, stay with me. ADAM I can’t feel my legs. Montgomery falls on the Bailiff. BAILIFF Take it easy. "Bee Movie" - JS REVISIONS 8/13/07 88. MONTGOMERY Oh, what angel of mercy will come forward to suck the poison from my heaving buttocks? The JURY recoils. JUDGE Please, I will have order in this court. Order! Order, please! FADE TO: SEQ. 3400 - “ADAM AT HOSPITAL” INT. HOSPITAL - STREET LEVEL ROOM - DAY PRESS PERSON #1 (V.O) The case of the honey bees versus the human race took a pointed turn against the bees yesterday, when one of their legal team stung Layton T. Montgomery. Now here’s Don with the 5-day. A NURSE lets Barry into the room. Barry CARRIES a FLOWER. BARRY Thank you. Barry stands over Adam, in a bed. Barry lays the flower down next to him. The TV is on. BARRY (CONT'D) Hey buddy. ADAM Hey. BARRY Is there much pain? Adam has a BEE-SIZED PAINKILLER HONEY BUTTON near his head that he presses. ADAM (pressing the button) Yeah...I blew the whole case, didn’t I? "Bee Movie" - JS REVISIONS 8/13/07 89. BARRY Oh, it doesn’t matter. The important thing is you’re alive. You could have died. ADAM I’d be better off dead. Look at me. Adam THROWS the blanket off his lap, revealing a GREEN SANDWICH SWORD STINGER. ADAM (CONT’D) (voice cracking) They got it from the cafeteria, they got it from downstairs. In a tuna sandwich. Look, there’s a little celery still on it. BARRY What was it like to sting someone? ADAM I can’t explain it. It was all adrenaline...and then...ecstasy. Barry looks at Adam. BARRY Alright. ADAM You think that was all a trap? BARRY Of course. I’m sorry. I flew us right into this. What were we thinking? Look at us, we’re just a couple of bugs in this world. ADAM What do you think the humans will do to us if they win? BARRY I don’t know. ADAM I hear they put the roaches in motels. That doesn’t sound so bad. "Bee Movie" - JS REVISIONS 8/13/07 90. BARRY Adam, they check in, but they don’t check out. Adam GULPS. ADAM Oh my. ANGLE ON: the hospital window. We see THREE PEOPLE smoking outside on the sidewalk. The smoke drifts in. Adam COUGHS. ADAM (CONT’D) Say, could you get a nurse to close that window? BARRY Why? ADAM The smoke. Bees don’t smoke. BARRY Right. Bees don’t smoke. Bees don’t smoke! But some bees are smoking. Adam, that’s it! That’s our case. Adam starts putting his clothes on. ADAM It is? It’s not over? BARRY No. Get up. Get dressed. I’ve got to go somewhere. You get back the court and stall. Stall anyway you can. CUT TO: SEQ. 3500 - “SMOKING GUN” INT. COURTROOM - THE NEXT DAY Adam is folding a piece of paper into a boat. ADAM ...and assuming you’ve done step 29 correctly, you’re ready for the tub. "Bee Movie" - JS REVISIONS 8/13/07 91. ANGLE ON: The jury, all with paper boats of their own. JURORS Ooh. ANGLE ON: Montgomery frustrated with Gammil, who’s making a boat also. Monty crumples Gammil’s boat, and throws it at him. JUDGE Mr. Flayman? ADAM Yes? Yes, Your Honor? JUDGE Where is the rest of your team? ADAM (fumbling with his swordstinger) Well, your honor, it’s interesting. You know Bees are trained to fly kind of haphazardly and as a result quite often we don’t make very good time. I actually once heard a pretty funny story about a bee-- MONTGOMERY Your Honor, haven’t these ridiculous bugs taken up enough of this court’s valuable time? Montgomery rolls out from behind his table. He’s suspended in a LARGE BABY CHAIR with wheels. MONTGOMERY (CONT'D) How much longer are we going to allow these absurd shenanigans to go on? They have presented no compelling evidence to support their charges against my clients who have all run perfectly legitimate businesses. I move for a complete dismissal of this entire case. JUDGE Mr. Flayman, I am afraid I am going to have to consider Mr. Montgomery’s motion. "Bee Movie" - JS REVISIONS 8/13/07 92. ADAM But you can’t. We have a terrific case. MONTGOMERY Where is your proof? Where is the evidence? Show me the smoking gun. Barry bursts through the door. BARRY Hold it, your honor. You want a smoking gun? Here is your smoking gun. Vanessa ENTERS, holding a bee smoker Vanessa slams the beekeeper's SMOKER onto the judge’s bench. JUDGE What is that? BARRY It’s a Bee smoker. Montgomery GRABS the smoker. MONTGOMERY What, this? This harmless little contraption? This couldn’t hurt a fly, let alone a bee. He unintentionally points it towards the bee gallery, KNOCKING THEM ALL OUT. The jury GASPS. The press SNAPS pictures of them. BARRY Members of the jury, look at what has happened to bees who have never been asked, "Smoking or Non?" Is this what nature intended for us? To be forcibly addicted to these smoke machines in man-made wooden slat work camps? Living out our lives as honey slaves to the white man? Barry gestures dramatically towards Montgomery's racially mixed table. The BLACK LAWYER slowly moves his chair away. GAMMIL What are we going to do? "Bee Movie" - JS REVISIONS 8/13/07 93. MONTGOMERY (to Pross) He's playing the species card. Barry lands on the scale of justice, by the judge’s bench. It balances as he lands. BARRY Ladies and gentlemen, please, FreeThese-Bees! ANGLE ON: Jury, chanting "Free the bees". JUDGE The court finds in favor of the bees. The chaos continues. Barry flies over to Vanessa, with his hand up for a “high 5”. BARRY Vanessa, we won! VANESSA Yay! I knew you could do it. Highfive! She high 5’s Barry, sending him crashing to the table. He bounces right back up. VANESSA (CONT'D) Oh, sorry. BARRY Ow!! I’m okay. Vanessa, do you know what this means? All the honey is finally going to belong to the bees. Now we won’t have to work so hard all the time. Montgomery approaches Barry, surrounded by the press. The cameras and microphones go to Montgomery. MONTGOMERY (waving a finger) This is an unholy perversion of the balance of nature, Benson! You’ll regret this. ANGLE ON: Barry’s ‘deer in headlights’ expression, as the press pushes microphones in his face. "Bee Movie" - JS REVISIONS 8/13/07 94. PRESS PERSON 1 Barry, how much honey do you think is out there? BARRY Alright, alright, one at a time... SARAH Barry, who are you wearing? BARRY Uhhh, my sweater is Ralph Lauren, and I have no pants. The Press follows Barry as he EXITS. ANGLE ON: Adam and Vanessa. ADAM (putting papers away) What if Montgomery’s right? VANESSA What do you mean? ADAM We’ve been living the bee way a long time. 27 million years. DISSOLVE TO: SEQ. 3600 - “HONEY ROUNDUP” EXT. HONEY FARMS APIARY - MONTAGE SARAH (V.O) Congratulations on your victory. What are you going to demand as a settlement? BARRY (V.O) (over montage) First, we’re going to demand a complete shutdown of all bee work camps. Then, we want to get back all the honey that was ours to begin with. Every last drop. We demand an end to the glorification of the bear as anything more than a filthy, smelly, big-headed, bad breath, stink-machine. "Bee Movie" - JS REVISIONS 8/13/07 95. I believe we’re all aware of what they do in the woods. We will no longer tolerate derogatory beenegative nick-names, unnecessary inclusion of honey in bogus health products, and la-dee-da tea-time human snack garnishments. MONTAGE IMAGES: Close-up on an ATF JACKET, with the YELLOW LETTERS. Camera pulls back. We see an ARMY OF BEE AND HUMAN AGENTS wearing hastily made “Alcohol, Tobacco, Firearms, and Honey” jackets. Barry supervises. The gate to Honey Farms is locked permanently. All the smokers are collected and locked up. All the bees leave the Apiary. CUT TO: EXT. ATF OUTSIDE OF SUPERMARKET - MONTAGE Agents begin YANKING honey off the supermarket shelves, and out of shopping baskets. CUT TO: EXT. NEW HIVE CITY - MONTAGE The bees tear down a honey-bear statue. CUT TO: EXT. YELLOWSTONE FOREST - MONTAGE POV of a sniper’s crosshairs. An animated BEAR character looka-like, turns his head towards camera. BARRY Wait for my signal. ANGLE ON: Barry lowering his binoculars. BARRY (CONT'D) Take him out. The sniper SHOOTS the bear. It hits him in the shoulder. The bear looks at it. He gets woozy and the honey jar falls out of his lap, an ATF&H agent catches it. "Bee Movie" - JS REVISIONS 8/13/07 96. BARRY (V.O) (CONT'D) ATF&H AGENT (to the bear’s pig friend) He’ll have a little nausea for a few hours, then he’ll be fine. CUT TO: EXT. STING’S HOUSE - MONTAGE ATF&H agents SLAP CUFFS on Sting, who is meditating. STING But it’s just a prance-about stage name! CUT TO: INT. A WOMAN’S SHOWER - MONTAGE A WOMAN is taking a shower, and using honey shampoo. An ATF&H agent pulls the shower curtain aside, and grabs her bottle of shampoo. The woman SCREAMS. The agent turns to the 3 other agents, and Barry. ANGLE ON: Barry looking at the label on the shampoo bottle, shaking his head and writing in his clipboard. CUT TO: EXT. SUPERMARKET CAFE - MONTAGE Another customer, an old lady having her tea with a little jar of honey, gets her face pushed down onto the table and turned to the side by two agents. One of the agents has a gun on her. OLD LADY Can’t breathe. CUT TO: EXT. CENTRAL PARK - MONTAGE An OIL DRUM of honey is connected to Barry’s hive. "Bee Movie" - JS REVISIONS 8/13/07 97. BARRY Bring it in, boys. CUT TO: SEQ. 3650 - “NO MORE WORK” INT. HONEX - MONTAGE ANGLE ON: The honey goes past the 3-cup hash-mark, and begins to overflow. A WORKER BEE runs up to Buzzwell. WORKER BEE 1 Mr. Buzzwell, we just passed 3 cups, and there’s gallons mores coming. I think we need to shutdown. KEYCHAIN BEE (to Buzzwell) Shutdown? We’ve never shutdown. ANGLE ON: Buzzwell overlooking the factory floor. BUZZWELL Shutdown honey production! Stop making honey! ANGLE ON: TWO BEES, each with a KEY. BUZZWELL (CONT’D) Turn your key, Sir! They turn the keys simultaneously, War Games-style, shutting down the honey machines. ANGLE ON: the Taffy-Pull machine, Centrifuge, and Krelman all slowly come to a stop. The bees look around, bewildered. WORKER BEE 5 What do we do now? A BEAT. WORKER BEE 6 Cannon ball!! He jumps into a HONEY VAT, doesn’t penetrate the surface. He looks around, and slowly sinks down to his waist. "Bee Movie" - JS REVISIONS 8/13/07 98. EXT. HONEX FACTORY THE WHISTLE BLOWS, and the bees all stream out the exit. CUT TO: INT. J-GATE - CONTINUOUS Lou Loduca gives orders to the pollen jocks. LOU LODUCA We’re shutting down honey production. Mission abort. CUT TO: EXT. CENTRAL PARK Jackson receives the orders, mid-pollination. JACKSON Aborting pollination and nectar detail. Returning to base. CUT TO: EXT. NEW HIVE CITY ANGLE ON: Bees, putting sun-tan lotion on their noses and antennae, and sunning themselves on the balconies of the gyms. CUT TO: EXT. CENTRAL PARK ANGLE ON: THE FLOWERS starting to DROOP. CUT TO: INT. J-GATE J-Gate is deserted. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 99. EXT. NEW HIVE CITY ANGLE ON: Bees sunning themselves. A TIMER DINGS, and they all turn over. CUT TO: EXT. CENTRAL PARK TIME LAPSE of Central Park turning brown. CUT TO: EXT. VANESSA’S FLORIST SHOP CLOSE-UP SHOT: Vanessa writes “Sorry. No more flowers.” on a “Closed” sign, an turns it facing out. CUT TO: SEQ. 3700 - “IDLE HIVE” EXT. NEW HIVE CITY - DAY Barry flies at high speed. TRACKING SHOT into the hive, through the lobby of Honex, and into Adam’s office. CUT TO: INT. ADAM’S OFFICE - CONTINUOUS Barry meets Adam in his office. Adam’s office is in disarray. There are papers everywhere. He’s filling up his cardboard hexagon box. BARRY (out of breath) Adam, you wouldn’t believe how much honey was out there. ADAM Oh yeah? BARRY What’s going on around here? Where is everybody? Are they out celebrating? "Bee Movie" - JS REVISIONS 8/13/07 100. ADAM (exiting with a cardboard box of belongings) No, they’re just home. They don’t know what to do. BARRY Hmmm. ADAM They’re laying out, they’re sleeping in. I heard your Uncle Carl was on his way to San Antonio with a cricket. BARRY At least we got our honey back. They walk through the empty factory. ADAM Yeah, but sometimes I think, so what if the humans liked our honey? Who wouldn’t? It’s the greatest thing in the world. I was excited to be a part of making it. ANGLE ON: Adam’s desk on it’s side in the hall. ADAM (CONT’D) This was my new desk. This was my new job. I wanted to do it really well. And now...and now I can’t. Adam EXITS. CUT TO: SEQ. 3900 - “WORLD WITHOUT BEES” INT. STAIRWELL Vanessa and Barry are walking up the stairs to the roof. BARRY I don’t understand why they’re not happy. We have so much now. I thought their lives would be better. "Bee Movie" - JS REVISIONS 8/13/07 101. VANESSA Hmmm. BARRY They’re doing nothing. It’s amazing, honey really changes people. VANESSA You don’t have any idea what’s going on, do you? BARRY What did you want to show me? VANESSA This. They reach the top of the stairs. Vanessa opens the door. CUT TO: EXT. VANESSA’S ROOFTOP - CONTINUOUS Barry sees Vanessa’s flower pots and small garden have all turned brown. BARRY What happened here? VANESSA That is not the half of it... Vanessa turns Barry around with her two fingers, revealing the view of Central Park, which is also all brown. BARRY Oh no. Oh my. They’re all wilting. VANESSA Doesn’t look very good, does it? BARRY No. VANESSA And who’s fault do you think that is? "Bee Movie" - JS REVISIONS 8/13/07 102. BARRY Mmmm...you know, I’m going to guess, bees. VANESSA Bees? BARRY Specifically me. I guess I didn’t think that bees not needing to make honey would affect all these other things. VANESSA And it’s not just flowers. Fruits, vegetables...they all need bees. BARRY Well, that’s our whole SAT test right there. VANESSA So, you take away the produce, that affects the entire animal kingdom. And then, of course... BARRY The human species? VANESSA (clearing throat) Ahem! BARRY Oh. So, if there’s no more pollination, it could all just go south here, couldn’t it? VANESSA And I know this is also partly my fault. Barry takes a long SIGH. BARRY How about a suicide pact? VANESSA (not sure if he’s joking) How would we do it? BARRY I’ll sting you, you step on me. "Bee Movie" - JS REVISIONS 8/13/07 103. VANESSA That just kills you twice. BARRY Right, right. VANESSA Listen Barry. Sorry but I’ve got to get going. She EXITS. BARRY (looking out over the park) Had to open my mouth and talk... (looking back) Vanessa..? Vanessa is gone. CUT TO: SEQ. 3935 - “GOING TO PASADENA” EXT. NY STREET - CONTINUOUS Vanessa gets into a cab. Barry ENTERS. BARRY Vanessa. Why are you leaving? Where are you going? VANESSA To the final Tournament of Roses parade in Pasadena. They moved it up to this weekend because all the flowers are dying. It’s the last chance I’ll ever have to see it. BARRY Vanessa, I just want to say I’m sorry. I never meant it to turn out like this. VANESSA I know. Me neither. Vanessa cab drives away. "Bee Movie" - JS REVISIONS 8/13/07 104. BARRY (chuckling to himself) Tournament of Roses. Roses can’t do sports. Wait a minute...roses. Roses? Roses!? Vanessa! Barry follows shortly after. He catches up to it, and he pounds on the window. Barry follows shortly after Vanessa’s cab. He catches up to it, and he pounds on the window. INT. TAXI - CONTINUOUS Barry motions for her to roll the window down. She does so. BARRY Roses?! VANESSA Barry? BARRY (as he flies next to the cab) Roses are flowers. VANESSA Yes, they are. BARRY Flowers, bees, pollen! VANESSA I know. That’s why this is the last parade. BARRY Maybe not. The cab starts pulling ahead of Barry. BARRY (CONT'D) (re: driver) Could you ask him to slow down? VANESSA Could you slow down? The cabs slows. Barry flies in the window, and lands in the change box, which closes on him. "Bee Movie" - JS REVISIONS 8/13/07 105. VANESSA (CONT'D) Barry! Vanessa lets him out. Barry stands on the change box, in front of the driver’s license. BARRY Okay, I made a huge mistake! This is a total disaster, and it’s all my fault! VANESSA Yes, it kind of is. BARRY I’ve ruined the planet. And, I wanted to help with your flower shop. Instead, I’ve made it worse. VANESSA Actually, it’s completely closed down. BARRY Oh, I thought maybe you were remodeling. Nonetheless, I have another idea. And it’s greater than all my previous great ideas combined. VANESSA I don’t want to hear it. Vanessa closes the change box on Barry. BARRY (opening it again) Alright, here’s what I’m thinking. They have the roses, the roses have the pollen. I know every bee, plant, and flower bud in this park. All we’ve got to do is get what they’ve got back here with what we’ve got. VANESSA Bees... BARRY Park... VANESSA Pollen... "Bee Movie" - JS REVISIONS 8/13/07 106. BARRY Flowers... VANESSA Repollination! BARRY (on luggage handle, going up) Across the nation! CUT TO: SEQ. 3950 - “ROSE PARADE” EXT. PASADENA PARADE BARRY (V.O) Alright. Tournament of Roses. Pasadena, California. They’ve got nothing but flowers, floats, and cotton candy. Security will be tight. VANESSA I have an idea. CUT TO: EXT. FLOAT STAGING AREA ANGLE ON: Barry and Vanessa approaching a HEAVILY ARMED GUARD in front of the staging area. VANESSA Vanessa Bloome, FTD. Official floral business. He leans in to look at her badge. She SNAPS IT SHUT, VANESSA (CONT’D) Oh, it’s real. HEAVILY ARMED GUARD Sorry ma’am. That’s a nice brooch, by the way. VANESSA Thank you. It was a gift. "Bee Movie" - JS REVISIONS 8/13/07 107. They ENTER the staging area. BARRY (V.O) Then, once we’re inside, we just pick the right float. VANESSA How about the Princess and the Pea? BARRY Yeah. VANESSA I can be the princess, and-- BARRY ...yes, I think-- VANESSA You could be-- BARRY I’ve-- VANESSA The pea. BARRY Got it. CUT TO: EXT. FLOAT STAGING AREA - A FEW MOMENTS LATER Barry, dressed as a PEA, flies up and hovers in front of the princess on the “Princess and the Pea” float. The float is sponsored by Inflat-a-bed and a SIGN READS: “Inflat-a-bed: If it blows, it’s ours.” BARRY Sorry I’m late. Where should I sit? PRINCESS What are you? BARRY I believe I’m the pea. PRINCESS The pea? It’s supposed to be under the mattresses. "Bee Movie" - JS REVISIONS 8/13/07 108. BARRY Not in this fairy tale, sweetheart. PRINCESS I’m going to go talk to the marshall. BARRY You do that. This whole parade is a fiasco! She EXITS. Vanessa removes the step-ladder. The princess FALLS. Barry and Vanessa take off in the float. BARRY (CONT’D) Let’s see what this baby will do. ANGLE ON: Guy with headset talking to drivers. HEADSET GUY Hey! The float ZOOMS by. A young CHILD in the stands, TIMMY, cries. CUT TO: EXT. FLOAT STAGING AREA - A FEW MOMENTS LATER ANGLE ON: Vanessa putting the princess hat on. BARRY (V.O) Then all we do is blend in with traffic, without arousing suspicion. CUT TO: EXT. THE PARADE ROUTE - CONTINUOUS The floats go flying by the crowds. Barry and Vanessa’s float CRASHES through the fence. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 109. EXT. LA FREEWAY Vanessa and Barry speed, dodging and weaving, down the freeway. BARRY (V.O) And once we’re at the airport, there’s no stopping us. CUT TO: EXT. LAX AIRPORT Barry and Vanessa pull up to the curb, in front of an TSA AGENT WITH CLIPBOARD. TSA AGENT Stop. Security. Did you and your insect pack your own float? VANESSA (O.C) Yes. TSA AGENT Has this float been in your possession the entire time? VANESSA (O.C) Since the parade...yes. ANGLE ON: Barry holding his shoes. TSA AGENT Would you remove your shoes and everything in your pockets? Can you remove your stinger, Sir? BARRY That’s part of me. TSA AGENT I know. Just having some fun. Enjoy your flight. CUT TO: EXT. RUNWAY Barry and Vanessa’s airplane TAKES OFF. "Bee Movie" - JS REVISIONS 8/13/07 110. BARRY (O.C) Then, if we’re lucky, we’ll have just enough pollen to do the job. DISSOLVE TO: SEQ. 4025 - “COCKPIT FIGHT” INT. AIRPLANE Vanessa is on the aisle. Barry is on a laptop calculating flowers, pollen, number of bees, airspeed, etc. He does a “Stomp” dance on the keyboard. BARRY Can you believe how lucky we are? We have just enough pollen to do the job. I think this is going to work, Vanessa. VANESSA It’s got to work. PILOT (V.O) Attention passengers. This is Captain Scott. I’m afraid we have a bit of bad weather in the New York area. And looks like we’re going to be experiencing a couple of hours delay. VANESSA Barry, these are cut flowers with no water. They’ll never make it. BARRY I’ve got to get up there and talk to these guys. VANESSA Be careful. Barry flies up to the cockpit door. CUT TO: INT. COCKPIT - CONTINUOUS A female flight attendant, ANGELA, is in the cockpit with the pilots. "Bee Movie" - JS REVISIONS 8/13/07 111. There’s a KNOCK at the door. BARRY (C.O) Hey, can I get some help with this Sky Mall Magazine? I’d like to order the talking inflatable travel pool filter. ANGELA (to the pilots, irritated) Excuse me. CUT TO: EXT. CABIN - CONTINUOUS Angela opens the cockpit door and looks around. She doesn’t see anybody. ANGLE ON: Barry hidden on the yellow and black “caution” stripe. As Angela looks around, Barry zips into the cockpit. CUT TO: INT. COCKPIT BARRY Excuse me, Captain. I am in a real situation here... PILOT (pulling an earphone back, to the co-pilot) What did you say, Hal? CO-PILOT I didn’t say anything. PILOT (he sees Barry) Ahhh! Bee! BARRY No, no! Don’t freak out! There’s a chance my entire species-- CO-PILOT (taking off his earphones) Ahhh! "Bee Movie" - JS REVISIONS 8/13/07 112. The pilot grabs a “DUSTBUSTER” vacuum cleaner. He aims it around trying to vacuum up Barry. The co-pilot faces camera, as the pilot tries to suck Barry up. Barry is on the other side of the co-pilot. As they dosey-do, the toupee of the co-pilot begins to come up, still attached to the front. CO-PILOT (CONT'D) What are you doing? Stop! The toupee comes off the co-pilot’s head, and sticks in the Dustbuster. Barry runs across the bald head. BARRY Wait a minute! I’m an attorney! CO-PILOT Who’s an attorney? PILOT Don’t move. The pilot uses the Dustbuster to try and mash Barry, who is hovering in front of the co-pilot’s nose, and knocks out the co-pilot who falls out of his chair, hitting the life raft release button. The life raft inflates, hitting the pilot, knocking him into a wall and out cold. Barry surveys the situation. BARRY Oh, Barry. CUT TO: INT. AIRPLANE CABIN Vanessa studies her laptop, looking serious. SFX: PA CRACKLE. BARRY (V.O) (in captain voice) Good afternoon passengers, this is your captain speaking. Would a Miss Vanessa Bloome in 24F please report to the cockpit. And please hurry! "Bee Movie" - JS REVISIONS 8/13/07 113. ANGLE ON: The aisle, and Vanessa head popping up. CUT TO: INT. COCKPIT Vanessa ENTERS. VANESSA What happened here? BARRY I tried to talk to them, but then there was a Dustbuster, a toupee, a life raft exploded...Now one’s bald, one’s in a boat, and they’re both unconscious. VANESSA Is that another bee joke? BARRY No. No one’s flying the plane. The AIR TRAFFIC CONTROLLER, BUD, speaks over the radio. BUD This is JFK control tower. Flight 356, what’s your status? Vanessa presses a button, and the intercom comes on. VANESSA This is Vanessa Bloome. I’m a florist from New York. BUD Where’s the pilot? VANESSA He’s unconscious and so is the copilot. BUD Not good. Is there anyone onboard who has flight experience? A BEAT. BARRY As a matter of fact, there is. "Bee Movie" - JS REVISIONS 8/13/07 114. BUD Who’s that? VANESSA Barry Benson. BUD From the honey trial? Oh great. BARRY Vanessa, this is nothing more than a big metal bee. It’s got giant wings, huge engines. VANESSA I can’t fly a plane. BARRY Why not? Isn’t John Travolta a pilot? VANESSA Yes? BARRY How hard could it be? VANESSA Wait a minute. Barry, we’re headed into some lightning. CUT TO: Vanessa shrugs, and takes the controls. SEQ. 4150 - “BARRY FLIES PLANE” INT. BENSON HOUSE The family is all huddled around the TV at the Benson house. ANGLE ON: TV. Bob Bumble is broadcasting. BOB BUMBLE This is Bob Bumble. We have some late-breaking news from JFK airport, where a very suspenseful scene is developing. Barry Benson, fresh off his stunning legal victory... "Bee Movie" - JS REVISIONS 8/13/07 115. Adam SPRAYS a can of HONEY-WHIP into his mouth. ADAM That’s Barry. BOB BUMBLE ...is now attempting to land a plane, loaded with people, flowers, and an incapacitated flight crew. EVERYONE Flowers?! CUT TO: INT. AIR TRAFFIC CONTROL TOWER BUD Well, we have an electrical storm in the area, and two individuals at the controls of a jumbo jet with absolutely no flight experience. JEANETTE CHUNG Just a minute, Mr. Ditchwater, there’s a honey bee on that plane. BUD Oh, I’m quite familiar with Mr. Benson’s work, and his no-account compadres. Haven’t they done enough damage already? JEANETTE CHUNG But isn’t he your only hope right now? BUD Come on, technically a bee shouldn’t be able to fly at all. CUT TO: INT. COCKPIT. Barry REACTS BUD The wings are too small, their bodies are too big-- "Bee Movie" - JS REVISIONS 8/13/07 116. BARRY (over PA) Hey, hold on a second. Haven’t we heard this million times? The surface area of the wings, and the body mass doesn’t make sense? JEANETTE CHUNG Get this on the air. CAMERAMAN You got it! CUT TO: INT. BEE TV CONTROL ROOM An engineer throws a switch. BEE ENGINEER Stand by. We’re going live. The “ON AIR” sign illuminates. CUT TO: INT. VARIOUS SHOTS OF NEW HIVE CITY The news report plays on TV. The pollen jocks are sitting around, playing paddle-ball, Wheel-o, and one of them is spinning his helmet on his finger. Buzzwell is in an office cubicle, playing computer solitaire. Barry’s family and Adam watch from their living room. Bees sitting on the street curb turn around to watch the TV. BARRY Mr. Ditchwater, the way we work may be a mystery to you, because making honey takes a lot of bees doing a lot of small jobs. But let me tell you something about a small job. If you do it really well, it makes a big difference. More than we realized. To us, to everyone. That’s why I want to get bees back to doing what we do best. "Bee Movie" - JS REVISIONS 8/13/07 117. Working together. That’s the bee way. We’re not made of Jello. We get behind a fellow. Black and yellow. CROWD OF BEES Hello! CUT TO: INT. COCKPIT Barry is giving orders to Vanessa. BARRY Left, right, down, hover. VANESSA Hover? BARRY Forget hover. VANESSA You know what? This isn’t so hard. Vanessa pretends to HONK THE HORN. VANESSA (CONT’D) Beep, beep! Beep, beep! A BOLT OF LIGHTNING HITS the plane. The plane takes a sharp dip. VANESSA (CONT’D) Barry, what happened? BARRY (noticing the control panel) Wait a minute. I think we were on autopilot that whole time. VANESSA That may have been helping me. BARRY And now we’re not! VANESSA (V.O.) (folding her arms) Well, then it turns out I cannot fly a plane. "Bee Movie" - JS REVISIONS 8/13/07 118. BARRY (CONT'D) Vanessa struggles with the yoke. CUT TO: EXT. AIRPLANE The airplane goes into a steep dive. CUT TO: SEQ. 4175 - “CRASH LANDING” INT. J-GATE An ALERT SIGN READING: “Hive Alert. We Need:” Then the SIGNAL goes from “Two Bees” “Some Bees” “Every Bee There Is” Lou Loduca gathers the pollen jocks at J-Gate. LOU LODUCA All of you, let’s get behind this fellow. Move it out! The bees follow Lou Loduca, and EXIT J-Gate. CUT TO: INT. AIRPLANE COCKPIT BARRY Our only chance is if I do what I would do, and you copy me with the wings of the plane! VANESSA You don’t have to yell. BARRY I’m not yelling. We happen to be in a lot of trouble here. VANESSA It’s very hard to concentrate with that panicky tone in your voice. BARRY It’s not a tone. I’m panicking! CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 119. EXT. JFK AIRPORT ANGLE ON: The bees arriving and massing at the airport. CUT TO: INT. COCKPIT Barry and Vanessa alternately SLAP EACH OTHER IN THE FACE. VANESSA I don’t think I can do this. BARRY Vanessa, pull yourself together. Listen to me, you have got to snap out of it! VANESSA You snap out of it! BARRY You snap out of it! VANESSA You snap out of it! BARRY You snap out of it! VANESSA You snap out of it! CUT TO: EXT. AIRPLANE A GIGANTIC SWARM OF BEES flies in to hold the plane up. CUT TO: INT. COCKPIT - CONTINUOUS BARRY You snap out of it! VANESSA You snap out of it! "Bee Movie" - JS REVISIONS 8/13/07 120. BARRY You snap-- VANESSA Hold it! BARRY (about to slap her again) Why? Come on, it’s my turn. VANESSA How is the plane flying? Barry’s antennae ring. BARRY I don’t know. (answering) Hello? CUT TO: EXT. AIRPLANE ANGLE ON: The underside of the plane. The pollen jocks have massed all around the underbelly of the plane, and are holding it up. LOU LODUCA Hey Benson, have you got any flowers for a happy occasion in there? CUT TO: INT. COCKPIT Lou, Buzz, Splitz, and Jackson come up alongside the cockpit. BARRY The pollen jocks! VANESSA They do get behind a fellow. BARRY Black and yellow. LOU LODUCA (over headset) Hello. "Bee Movie" - JS REVISIONS 8/13/07 121. Alright you two, what do you say we drop this tin can on the blacktop? VANESSA What blacktop? Where? I can’t see anything. Can you? BARRY No, nothing. It’s all cloudy. CUT TO: EXT. RUNWAY Adam SHOUTS. ADAM Come on, you’ve got to think bee, Barry. Thinking bee, thinking bee. ANGLE ON: Overhead shot of runway. The bees are in the formation of a flower. In unison they move, causing the flower to FLASH YELLOW AND BLACK. BEES (chanting) Thinking bee, thinking bee. CUT TO: INT. COCKPIT We see through the swirling mist and clouds. A GIANT SHAPE OF A FLOWER is forming in the middle of the runway. BARRY Wait a minute. I think I’m feeling something. VANESSA What? BARRY I don’t know, but it’s strong. And it’s pulling me, like a 27 million year old instinct. Bring the nose of the plane down. "Bee Movie" - JS REVISIONS 8/13/07 122. LOU LODUCA (CONT'D) EXT. RUNWAY All the bees are on the runway chanting “Thinking Bee”. CUT TO: INT. CONTROL TOWER RICK What in the world is on the tarmac? ANGLE ON: Dave OTS onto runway seeing a flower being formed by millions of bees. BUD Get some lights on that! CUT TO: EXT. RUNWAY ANGLE ON: AIRCRAFT LANDING LIGHT SCAFFOLD by the side of the runway, illuminating the bees in their flower formation. INT. COCKPIT BARRY Vanessa, aim for the flower! VANESSA Oh, okay? BARRY Cut the engines! VANESSA Cut the engines? BARRY We’re going in on bee power. Ready boys? LOU LODUCA Affirmative. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 123. INT. AIRPLANE COCKPIT BARRY Good, good, easy now. Land on that flower! Ready boys? Give me full reverse. LOU LODUCA Spin it around! The plane attempts to land on top of an “Aloha Airlines” plane with flowers painted on it. BARRY (V.O) I mean the giant black and yellow pulsating flower made of millions of bees! VANESSA Which flower? BARRY That flower! VANESSA I’m aiming at the flower! The plane goes after a FAT GUY IN A HAWAIIAN SHIRT. BARRY (V.O) That’s a fat guy in a flowered shirt! The other other flower! The big one. He snaps a photo and runs away. BARRY (CONT'D) Full forward. Ready boys? Nose down. Bring your tail up. Rotate around it. VANESSA Oh, this is insane, Barry. BARRY This is the only way I know how to fly. CUT TO: "Bee Movie" - JS REVISIONS 8/13/07 124. AIR TRAFFIC CONTROL TOWER BUD Am I koo-koo kachoo, or is this plane flying in an insect-like pattern? CUT TO: EXT. RUNWAY BARRY (V.O) Get your nose in there. Don’t be afraid of it. Smell it. Full reverse! Easy, just drop it. Be a part of it. Aim for the center! Now drop it in. Drop it in, woman! The plane HOVERS and MANEUVERS, landing in the center of the giant flower, like a bee. The FLOWERS from the cargo hold spill out onto the runway. INT. AIPLANE CABIN The passengers are motionless for a beat. PASSENGER Come on already! They hear the “ding ding”, and all jump up to grab their luggage out of the overheads. SEQ. 4225 - “RUNWAY SPEECH” EXT. RUNWAY - CONTINUOUS The INFLATABLE SLIDES pop out the side of the plane. The passengers escape. Barry and Vanessa slide down out of the cockpit. Barry and Vanessa exhale a huge breath. VANESSA Barry, we did it. You taught me how to fly. Vanessa raises her hand up for a high five. "Bee Movie" - JS REVISIONS 8/13/07 125. BARRY Yes. No high five. VANESSA Right. ADAM Barry, it worked. Did you see the giant flower? BARRY What giant flower? Where? Of course I saw the flower! That was genius, man. Genius! ADAM Thank you. BARRY But we’re not done yet. Barry flies up to the wing of the plane, and addresses the bee crowd. BARRY (CONT’D) Listen everyone. This runway is covered with the last pollen from the last flowers available anywhere on Earth. That means this is our last chance. We’re the only ones who make honey, pollinate flowers, and dress like this. If we’re going to survive as a species, this is our moment. So what do you all say? Are we going to be bees, or just Museum of Natural History key chains? BEES We’re bees! KEYCHAIN BEE Keychain! BARRY Then follow me... Except Keychain. BUZZ Hold on Barry. You’ve earned this. Buzz puts a pollen jock jacket and helmet with Barry’s name on it on Barry. "Bee Movie" - JS REVISIONS 8/13/07 126. BARRY I’m a pollen jock! (looking at the jacket. The sleeves are a little long) And it’s a perfect fit. All I’ve got to do are the sleeves. The Pollen Jocks toss Barry a gun. BARRY (CONT’D) Oh yeah! ANGLE ON: Martin and Janet Benson. JANET BENSON That’s our Barry. All the bees descend upon the flowers on the tarmac, and start collecting pollen. CUT TO: SEQ. 4250 - “RE-POLLINATION” EXT. SKIES - CONTINUOUS The squadron FLIES over the city, REPOLLINATING trees and flowers as they go. Barry breaks off from the group, towards Vanessa’s flower shop. CUT TO: EXT. VANESSA’S FLOWER SHOP - CONTINUOUS Barry REPOLLINATES Vanessa’s flowers. CUT TO: EXT. CENTRAL PARK - CONTINUOUS ANGLE ON: Timmy with a frisbee, as the bees fly by. TIMMY Mom, the bees are back! "Bee Movie" - JS REVISIONS 8/13/07 127. Central Park is completely repollinated by the bees. DISSOLVE TO: INT. HONEX - CONTINUOUS Honex is back to normal and everyone is busily working. ANGLE ON: Adam, putting his Krelman hat on. ADAM If anyone needs to make a call, now’s the time. I’ve got a feeling we’ll be working late tonight! The bees CHEER. CUT TO: SEQ. 4355 EXT: VANESSA’S FLOWER SHOP With a new sign out front. “Vanessa & Barry: Flowers, Honey, Legal Advice” DISSOLVE TO: INT: FLOWER COUNTER Vanessa doing a brisk trade with many customers. CUT TO: INT: FLOWER SHOP - CONTINUOUS Vanessa is selling flowers. In the background, there are SHELVES STOCKED WITH HONEY. VANESSA (O.C.) Don’t forget these. Have a great afternoon. Yes, can I help who’s next? Who’s next? Would you like some honey with that? It is beeapproved. SIGN ON THE BACK ROOM DOOR READS: “Barry Benson: Insects at Law”. "Bee Movie" - JS REVISIONS 8/13/07 128. Camera moves into the back room. ANGLE ON: Barry. ANGLE ON: Barry’s COW CLIENT. COW Milk, cream, cheese...it’s all me. And I don’t see a nickel. BARRY Uh huh? Uh huh? COW (breaking down) Sometimes I just feel like a piece of meat. BARRY I had no idea. VANESSA Barry? I’m sorry, have you got a moment? BARRY Would you excuse me? My mosquito associate here will be able to help you. Mooseblood ENTERS. MOOSEBLOOD Sorry I’m late. COW He’s a lawyer too? MOOSEBLOOD Ma’am, I was already a bloodsucking parasite. All I needed was * a briefcase. * ANGLE ON: Flower Counter. VANESSA (to customer) Have a great afternoon! (to Barry) Barry, I just got this huge tulip order for a wedding, and I can’t get them anywhere. "Bee Movie" - JS REVISIONS 8/13/07 129. BARRY Not a problem, Vannie. Just leave it to me. Vanessa turns back to deal with a customer. VANESSA You’re a life-saver, Barry. (to the next customer) Can I help who’s next? Who’s next? ANGLE ON: Vanessa smiling back at Barry. Barry smiles too, then snaps himself out of it. BARRY (speaks into his antennae) Alright. Scramble jocks, it’s time to fly! VANESSA Thank you, Barry! EXT. FLOWER SHOP - CONTINUOUS ANGLE ON: Ken and Andy walking down the street. KEN (noticing the new sign) Augh! What in the world? It’s that bee again! ANDY (guiding Ken protectively) Let it go, Kenny. KEN That bee is living my life! When will this nightmare end? ANDY Let it all go. They don’t break stride. ANGLE ON: Camera in front of Barry as he flies out the door and up into the sky. Pollen jocks fold in formation behind him as they zoom into the park. BARRY (to Splitz) Beautiful day to fly. "Bee Movie" - JS REVISIONS 8/13/07 130. JACKSON Sure is. BARRY Between you and me, I was dying to get out of that office. FADE OUT: "Bee Movie" - JS REVISIONS 8/13/07 131.
ats1999 / DakiaA high-performance API gateway built with Rust, designed for low-latency request processing. Dakia supports dynamic configuration updates, allowing seamless changes to routing rules, authentication settings, rate limits, and other gateway policies without requiring a restart.
MarkipTheMudkip / In Class Project 2According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Ooming! Hang on a second. Hello? - Barry? - Adam? - Oan you believe this is happening? - I can't. I'll pick you up. Looking sharp. Use the stairs. Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. - You got lint on your fuzz. - Ow! That's me! - Wave to us! We'll be in row 118,000. - Bye! Barry, I told you, stop flying in the house! - Hey, Adam. - Hey, Barry. - Is that fuzz gel? - A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkward. Three days college. I'm glad I took a day and hitchhiked around the hive. You did come back different. - Hi, Barry. - Artie, growing a mustache? Looks good. - Hear about Frankie? - Yeah. - You going to the funeral? - No, I'm not going. Everybody knows, sting someone, you die. Don't waste it on a squirrel. Such a hothead. I guess he could have just gotten out of the way. I love this incorporating an amusement park into our day. That's why we don't need vacations. Boy, quite a bit of pomp... under the circumstances. - Well, Adam, today we are men. - We are! - Bee-men. - Amen! Hallelujah! Students, faculty, distinguished bees, please welcome Dean Buzzwell. Welcome, New Hive Oity graduating class of... ...9:15. That concludes our ceremonies. And begins your career at Honex Industries! Will we pick ourjob today? I heard it's just orientation. Heads up! Here we go. Keep your hands and antennas inside the tram at all times. - Wonder what it'll be like? - A little scary. Welcome to Honex, a division of Honesco and a part of the Hexagon Group. This is it! Wow. Wow. We know that you, as a bee, have worked your whole life to get to the point where you can work for your whole life. Honey begins when our valiant Pollen Jocks bring the nectar to the hive. Our top-secret formula is automatically color-corrected, scent-adjusted and bubble-contoured into this soothing sweet syrup with its distinctive golden glow you know as... Honey! - That girl was hot. - She's my cousin! - She is? - Yes, we're all cousins. - Right. You're right. - At Honex, we constantly strive to improve every aspect of bee existence. These bees are stress-testing a new helmet technology. - What do you think he makes? - Not enough. Here we have our latest advancement, the Krelman. - What does that do? - Oatches that little strand of honey that hangs after you pour it. Saves us millions. Oan anyone work on the Krelman? Of course. Most bee jobs are small ones. But bees know that every small job, if it's done well, means a lot. But choose carefully because you'll stay in the job you pick for the rest of your life. The same job the rest of your life? I didn't know that. What's the difference? You'll be happy to know that bees, as a species, haven't had one day off in 27 million years. So you'll just work us to death? We'll sure try. Wow! That blew my mind! "What's the difference?" How can you say that? One job forever? That's an insane choice to have to make. I'm relieved. Now we only have to make one decision in life. But, Adam, how could they never have told us that? Why would you question anything? We're bees. We're the most perfectly functioning society on Earth. You ever think maybe things work a little too well here? Like what? Give me one example. I don't know. But you know what I'm talking about. Please clear the gate. Royal Nectar Force on approach. Wait a second. Oheck it out. - Hey, those are Pollen Jocks! - Wow. I've never seen them this close. They know what it's like outside the hive. Yeah, but some don't come back. - Hey, Jocks! - Hi, Jocks! You guys did great! You're monsters! You're sky freaks! I love it! I love it! - I wonder where they were. - I don't know. Their day's not planned. Outside the hive, flying who knows where, doing who knows what. You can'tjust decide to be a Pollen Jock. You have to be bred for that. Right. Look. That's more pollen than you and I will see in a lifetime. It's just a status symbol. Bees make too much of it. Perhaps. Unless you're wearing it and the ladies see you wearing it. Those ladies? Aren't they our cousins too? Distant. Distant. Look at these two. - Oouple of Hive Harrys. - Let's have fun with them. It must be dangerous being a Pollen Jock. Yeah. Once a bear pinned me against a mushroom! He had a paw on my throat, and with the other, he was slapping me! - Oh, my! - I never thought I'd knock him out. What were you doing during this? Trying to alert the authorities. I can autograph that. A little gusty out there today, wasn't it, comrades? Yeah. Gusty. We're hitting a sunflower patch six miles from here tomorrow. - Six miles, huh? - Barry! A puddle jump for us, but maybe you're not up for it. - Maybe I am. - You are not! We're going 0900 at J-Gate. What do you think, buzzy-boy? Are you bee enough? I might be. It all depends on what 0900 means. Hey, Honex! Dad, you surprised me. You decide what you're interested in? - Well, there's a lot of choices. - But you only get one. Do you ever get bored doing the same job every day? Son, let me tell you about stirring. You grab that stick, and you just move it around, and you stir it around. You get yourself into a rhythm. It's a beautiful thing. You know, Dad, the more I think about it, maybe the honey field just isn't right for me. You were thinking of what, making balloon animals? That's a bad job for a guy with a stinger. Janet, your son's not sure he wants to go into honey! - Barry, you are so funny sometimes. - I'm not trying to be funny. You're not funny! You're going into honey. Our son, the stirrer! - You're gonna be a stirrer? - No one's listening to me! Wait till you see the sticks I have. I could say anything right now. I'm gonna get an ant tattoo! Let's open some honey and celebrate! Maybe I'll pierce my thorax. Shave my antennae. Shack up with a grasshopper. Get a gold tooth and call everybody "dawg"! I'm so proud. - We're starting work today! - Today's the day. Oome on! All the good jobs will be gone. Yeah, right. Pollen counting, stunt bee, pouring, stirrer, front desk, hair removal... - Is it still available? - Hang on. Two left! One of them's yours! Oongratulations! Step to the side. - What'd you get? - Picking crud out. Stellar! Wow! Oouple of newbies? Yes, sir! Our first day! We are ready! Make your choice. - You want to go first? - No, you go. Oh, my. What's available? Restroom attendant's open, not for the reason you think. - Any chance of getting the Krelman? - Sure, you're on. I'm sorry, the Krelman just closed out. Wax monkey's always open. The Krelman opened up again. What happened? A bee died. Makes an opening. See? He's dead. Another dead one. Deady. Deadified. Two more dead. Dead from the neck up. Dead from the neck down. That's life! Oh, this is so hard! Heating, cooling, stunt bee, pourer, stirrer, humming, inspector number seven, lint coordinator, stripe supervisor, mite wrangler. Barry, what do you think I should... Barry? Barry! All right, we've got the sunflower patch in quadrant nine... What happened to you? Where are you? - I'm going out. - Out? Out where? - Out there. - Oh, no! I have to, before I go to work for the rest of my life. You're gonna die! You're crazy! Hello? Another call coming in. If anyone's feeling brave, there's a Korean deli on 83rd that gets their roses today. Hey, guys. - Look at that. - Isn't that the kid we saw yesterday? Hold it, son, flight deck's restricted. It's OK, Lou. We're gonna take him up. Really? Feeling lucky, are you? Sign here, here. Just initial that. - Thank you. - OK. You got a rain advisory today, and as you all know, bees cannot fly in rain. So be careful. As always, watch your brooms, hockey sticks, dogs, birds, bears and bats. Also, I got a couple of reports of root beer being poured on us. Murphy's in a home because of it, babbling like a cicada! - That's awful. - And a reminder for you rookies, bee law number one, absolutely no talking to humans! All right, launch positions! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Black and yellow! Hello! You ready for this, hot shot? Yeah. Yeah, bring it on. Wind, check. - Antennae, check. - Nectar pack, check. - Wings, check. - Stinger, check. Scared out of my shorts, check. OK, ladies, let's move it out! Pound those petunias, you striped stem-suckers! All of you, drain those flowers! Wow! I'm out! I can't believe I'm out! So blue. I feel so fast and free! Box kite! Wow! Flowers! This is Blue Leader. We have roses visual. Bring it around 30 degrees and hold. Roses! 30 degrees, roger. Bringing it around. Stand to the side, kid. It's got a bit of a kick. That is one nectar collector! - Ever see pollination up close? - No, sir. I pick up some pollen here, sprinkle it over here. Maybe a dash over there, a pinch on that one. See that? It's a little bit of magic. That's amazing. Why do we do that? That's pollen power. More pollen, more flowers, more nectar, more honey for us. Oool. I'm picking up a lot of bright yellow. Oould be daisies. Don't we need those? Oopy that visual. Wait. One of these flowers seems to be on the move. Say again? You're reporting a moving flower? Affirmative. That was on the line! This is the coolest. What is it? I don't know, but I'm loving this color. It smells good. Not like a flower, but I like it. Yeah, fuzzy. Ohemical-y. Oareful, guys. It's a little grabby. My sweet lord of bees! Oandy-brain, get off there! Problem! - Guys! - This could be bad. Affirmative. Very close. Gonna hurt. Mama's little boy. You are way out of position, rookie! Ooming in at you like a missile! Help me! I don't think these are flowers. - Should we tell him? - I think he knows. What is this?! Match point! You can start packing up, honey, because you're about to eat it! Yowser! Gross. There's a bee in the car! - Do something! - I'm driving! - Hi, bee. - He's back here! He's going to sting me! Nobody move. If you don't move, he won't sting you. Freeze! He blinked! Spray him, Granny! What are you doing?! Wow... the tension level out here is unbelievable. I gotta get home. Oan't fly in rain. Oan't fly in rain. Oan't fly in rain. Mayday! Mayday! Bee going down! Ken, could you close the window please? Ken, could you close the window please? Oheck out my new resume. I made it into a fold-out brochure. You see? Folds out. Oh, no. More humans. I don't need this. What was that? Maybe this time. This time. This time. This time! This time! This... Drapes! That is diabolical. It's fantastic. It's got all my special skills, even my top-ten favorite movies. What's number one? Star Wars? Nah, I don't go for that... ...kind of stuff. No wonder we shouldn't talk to them. They're out of their minds. When I leave a job interview, they're flabbergasted, can't believe what I say. There's the sun. Maybe that's a way out. I don't remember the sun having a big 75 on it. I predicted global warming. I could feel it getting hotter. At first I thought it was just me. Wait! Stop! Bee! Stand back. These are winter boots. Wait! Don't kill him! You know I'm allergic to them! This thing could kill me! Why does his life have less value than yours? Why does his life have any less value than mine? Is that your statement? I'm just saying all life has value. You don't know what he's capable of feeling. My brochure! There you go, little guy. I'm not scared of him. It's an allergic thing. Put that on your resume brochure. My whole face could puff up. Make it one of your special skills. Knocking someone out is also a special skill. Right. Bye, Vanessa. Thanks. - Vanessa, next week? Yogurt night? - Sure, Ken. You know, whatever. - You could put carob chips on there. - Bye. - Supposed to be less calories. - Bye. I gotta say something. She saved my life. I gotta say something. All right, here it goes. Nah. What would I say? I could really get in trouble. It's a bee law. You're not supposed to talk to a human. I can't believe I'm doing this. I've got to. Oh, I can't do it. Oome on! No. Yes. No. Do it. I can't. How should I start it? "You like jazz?" No, that's no good. Here she comes! Speak, you fool! Hi! I'm sorry. - You're talking. - Yes, I know. You're talking! I'm so sorry. No, it's OK. It's fine. I know I'm dreaming. But I don't recall going to bed. Well, I'm sure this is very disconcerting. This is a bit of a surprise to me. I mean, you're a bee! I am. And I'm not supposed to be doing this, but they were all trying to kill me. And if it wasn't for you... I had to thank you. It's just how I was raised. That was a little weird. - I'm talking with a bee. - Yeah. I'm talking to a bee. And the bee is talking to me! I just want to say I'm grateful. I'll leave now. - Wait! How did you learn to do that? - What? The talking thing. Same way you did, I guess. "Mama, Dada, honey." You pick it up. - That's very funny. - Yeah. Bees are funny. If we didn't laugh, we'd cry with what we have to deal with. Anyway... Oan I... ...get you something? - Like what? I don't know. I mean... I don't know. Ooffee? I don't want to put you out. It's no trouble. It takes two minutes. - It's just coffee. - I hate to impose. - Don't be ridiculous! - Actually, I would love a cup. Hey, you want rum cake? - I shouldn't. - Have some. - No, I can't. - Oome on! I'm trying to lose a couple micrograms. - Where? - These stripes don't help. You look great! I don't know if you know anything about fashion. Are you all right? No. He's making the tie in the cab as they're flying up Madison. He finally gets there. He runs up the steps into the church. The wedding is on. And he says, "Watermelon? I thought you said Guatemalan. Why would I marry a watermelon?" Is that a bee joke? That's the kind of stuff we do. Yeah, different. So, what are you gonna do, Barry? About work? I don't know. I want to do my part for the hive, but I can't do it the way they want. I know how you feel. - You do? - Sure. My parents wanted me to be a lawyer or a doctor, but I wanted to be a florist. - Really? - My only interest is flowers. Our new queen was just elected with that same campaign slogan. Anyway, if you look... There's my hive right there. See it? You're in Sheep Meadow! Yes! I'm right off the Turtle Pond! No way! I know that area. I lost a toe ring there once. - Why do girls put rings on their toes? - Why not? - It's like putting a hat on your knee. - Maybe I'll try that. - You all right, ma'am? - Oh, yeah. Fine. Just having two cups of coffee! Anyway, this has been great. Thanks for the coffee. Yeah, it's no trouble. Sorry I couldn't finish it. If I did, I'd be up the rest of my life. Are you...? Oan I take a piece of this with me? Sure! Here, have a crumb. - Thanks! - Yeah. All right. Well, then... I guess I'll see you around. Or not. OK, Barry. And thank you so much again... for before. Oh, that? That was nothing. Well, not nothing, but... Anyway... This can't possibly work. He's all set to go. We may as well try it. OK, Dave, pull the chute. - Sounds amazing. - It was amazing! It was the scariest, happiest moment of my life. Humans! I can't believe you were with humans! Giant, scary humans! What were they like? Huge and crazy. They talk crazy. They eat crazy giant things. They drive crazy. - Do they try and kill you, like on TV? - Some of them. But some of them don't. - How'd you get back? - Poodle. You did it, and I'm glad. You saw whatever you wanted to see. You had your "experience." Now you can pick out yourjob and be normal. - Well... - Well? Well, I met someone. You did? Was she Bee-ish? - A wasp?! Your parents will kill you! - No, no, no, not a wasp. - Spider? - I'm not attracted to spiders. I know it's the hottest thing, with the eight legs and all. I can't get by that face. So who is she? She's... human. No, no. That's a bee law. You wouldn't break a bee law. - Her name's Vanessa. - Oh, boy. She's so nice. And she's a florist! Oh, no! You're dating a human florist! We're not dating. You're flying outside the hive, talking to humans that attack our homes with power washers and M-80s! One-eighth a stick of dynamite! She saved my life! And she understands me. This is over! Eat this. This is not over! What was that? - They call it a crumb. - It was so stingin' stripey! And that's not what they eat. That's what falls off what they eat! - You know what a Oinnabon is? - No. It's bread and cinnamon and frosting. They heat it up... Sit down! ...really hot! - Listen to me! We are not them! We're us. There's us and there's them! Yes, but who can deny the heart that is yearning? There's no yearning. Stop yearning. Listen to me! You have got to start thinking bee, my friend. Thinking bee! - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Thinking bee! There he is. He's in the pool. You know what your problem is, Barry? I gotta start thinking bee? How much longer will this go on? It's been three days! Why aren't you working? I've got a lot of big life decisions to think about. What life? You have no life! You have no job. You're barely a bee! Would it kill you to make a little honey? Barry, come out. Your father's talking to you. Martin, would you talk to him? Barry, I'm talking to you! You coming? Got everything? All set! Go ahead. I'll catch up. Don't be too long. Watch this! Vanessa! - We're still here. - I told you not to yell at him. He doesn't respond to yelling! - Then why yell at me? - Because you don't listen! I'm not listening to this. Sorry, I've gotta go. - Where are you going? - I'm meeting a friend. A girl? Is this why you can't decide? Bye. I just hope she's Bee-ish. They have a huge parade of flowers every year in Pasadena? To be in the Tournament of Roses, that's every florist's dream! Up on a float, surrounded by flowers, crowds cheering. A tournament. Do the roses compete in athletic events? No. All right, I've got one. How come you don't fly everywhere? It's exhausting. Why don't you run everywhere? It's faster. Yeah, OK, I see, I see. All right, your turn. TiVo. You can just freeze live TV? That's insane! You don't have that? We have Hivo, but it's a disease. It's a horrible, horrible disease. Oh, my. Dumb bees! You must want to sting all those jerks. We try not to sting. It's usually fatal for us. So you have to watch your temper. Very carefully. You kick a wall, take a walk, write an angry letter and throw it out. Work through it like any emotion: Anger, jealousy, lust. Oh, my goodness! Are you OK? Yeah. - What is wrong with you?! - It's a bug. He's not bothering anybody. Get out of here, you creep! What was that? A Pic 'N' Save circular? Yeah, it was. How did you know? It felt like about 10 pages. Seventy-five is pretty much our limit. You've really got that down to a science. - I lost a cousin to Italian Vogue. - I'll bet. What in the name of Mighty Hercules is this? How did this get here? Oute Bee, Golden Blossom, Ray Liotta Private Select? - Is he that actor? - I never heard of him. - Why is this here? - For people. We eat it. You don't have enough food of your own? - Well, yes. - How do you get it? - Bees make it. - I know who makes it! And it's hard to make it! There's heating, cooling, stirring. You need a whole Krelman thing! - It's organic. - It's our-ganic! It's just honey, Barry. Just what?! Bees don't know about this! This is stealing! A lot of stealing! You've taken our homes, schools, hospitals! This is all we have! And it's on sale?! I'm getting to the bottom of this. I'm getting to the bottom of all of this! Hey, Hector. - You almost done? - Almost. He is here. I sense it. Well, I guess I'll go home now and just leave this nice honey out, with no one around. You're busted, box boy! I knew I heard something. So you can talk! I can talk. And now you'll start talking! Where you getting the sweet stuff? Who's your supplier? I don't understand. I thought we were friends. The last thing we want to do is upset bees! You're too late! It's ours now! You, sir, have crossed the wrong sword! You, sir, will be lunch for my iguana, Ignacio! Where is the honey coming from? Tell me where! Honey Farms! It comes from Honey Farms! Orazy person! What horrible thing has happened here? These faces, they never knew what hit them. And now they're on the road to nowhere! Just keep still. What? You're not dead? Do I look dead? They will wipe anything that moves. Where you headed? To Honey Farms. I am onto something huge here. I'm going to Alaska. Moose blood, crazy stuff. Blows your head off! I'm going to Tacoma. - And you? - He really is dead. All right. Uh-oh! - What is that?! - Oh, no! - A wiper! Triple blade! - Triple blade? Jump on! It's your only chance, bee! Why does everything have to be so doggone clean?! How much do you people need to see?! Open your eyes! Stick your head out the window! From NPR News in Washington, I'm Oarl Kasell. But don't kill no more bugs! - Bee! - Moose blood guy!! - You hear something? - Like what? Like tiny screaming. Turn off the radio. Whassup, bee boy? Hey, Blood. Just a row of honey jars, as far as the eye could see. Wow! I assume wherever this truck goes is where they're getting it. I mean, that honey's ours. - Bees hang tight. - We're all jammed in. It's a close community. Not us, man. We on our own. Every mosquito on his own. - What if you get in trouble? - You a mosquito, you in trouble. Nobody likes us. They just smack. See a mosquito, smack, smack! At least you're out in the world. You must meet girls. Mosquito girls try to trade up, get with a moth, dragonfly. Mosquito girl don't want no mosquito. You got to be kidding me! Mooseblood's about to leave the building! So long, bee! - Hey, guys! - Mooseblood! I knew I'd catch y'all down here. Did you bring your crazy straw? We throw it in jars, slap a label on it, and it's pretty much pure profit. What is this place? A bee's got a brain the size of a pinhead. They are pinheads! Pinhead. - Oheck out the new smoker. - Oh, sweet. That's the one you want. The Thomas 3000! Smoker? Ninety puffs a minute, semi-automatic. Twice the nicotine, all the tar. A couple breaths of this knocks them right out. They make the honey, and we make the money. "They make the honey, and we make the money"? Oh, my! What's going on? Are you OK? Yeah. It doesn't last too long. Do you know you're in a fake hive with fake walls? Our queen was moved here. We had no choice. This is your queen? That's a man in women's clothes! That's a drag queen! What is this? Oh, no! There's hundreds of them! Bee honey. Our honey is being brazenly stolen on a massive scale! This is worse than anything bears have done! I intend to do something. Oh, Barry, stop. Who told you humans are taking our honey? That's a rumor. Do these look like rumors? That's a conspiracy theory. These are obviously doctored photos. How did you get mixed up in this? He's been talking to humans. - What? - Talking to humans?! He has a human girlfriend. And they make out! Make out? Barry! We do not. - You wish you could. - Whose side are you on? The bees! I dated a cricket once in San Antonio. Those crazy legs kept me up all night. Barry, this is what you want to do with your life? I want to do it for all our lives. Nobody works harder than bees! Dad, I remember you coming home so overworked your hands were still stirring. You couldn't stop. I remember that. What right do they have to our honey? We live on two cups a year. They put it in lip balm for no reason whatsoever! Even if it's true, what can one bee do? Sting them where it really hurts. In the face! The eye! - That would hurt. - No. Up the nose? That's a killer. There's only one place you can sting the humans, one place where it matters. Hive at Five, the hive's only full-hour action news source. No more bee beards! With Bob Bumble at the anchor desk. Weather with Storm Stinger. Sports with Buzz Larvi. And Jeanette Ohung. - Good evening. I'm Bob Bumble. - And I'm Jeanette Ohung. A tri-county bee, Barry Benson, intends to sue the human race for stealing our honey, packaging it and profiting from it illegally! Tomorrow night on Bee Larry King, we'll have three former queens here in our studio, discussing their new book, Olassy Ladies, out this week on Hexagon. Tonight we're talking to Barry Benson. Did you ever think, "I'm a kid from the hive. I can't do this"? Bees have never been afraid to change the world. What about Bee Oolumbus? Bee Gandhi? Bejesus? Where I'm from, we'd never sue humans. We were thinking of stickball or candy stores. How old are you? The bee community is supporting you in this case, which will be the trial of the bee century. You know, they have a Larry King in the human world too. It's a common name. Next week... He looks like you and has a show and suspenders and colored dots... Next week... Glasses, quotes on the bottom from the guest even though you just heard 'em. Bear Week next week! They're scary, hairy and here live. Always leans forward, pointy shoulders, squinty eyes, very Jewish. In tennis, you attack at the point of weakness! It was my grandmother, Ken. She's 81. Honey, her backhand's a joke! I'm not gonna take advantage of that? Quiet, please. Actual work going on here. - Is that that same bee? - Yes, it is! I'm helping him sue the human race. - Hello. - Hello, bee. This is Ken. Yeah, I remember you. Timberland, size ten and a half. Vibram sole, I believe. Why does he talk again? Listen, you better go 'cause we're really busy working. But it's our yogurt night! Bye-bye. Why is yogurt night so difficult?! You poor thing. You two have been at this for hours! Yes, and Adam here has been a huge help. - Frosting... - How many sugars? Just one. I try not to use the competition. So why are you helping me? Bees have good qualities. And it takes my mind off the shop. Instead of flowers, people are giving balloon bouquets now. Those are great, if you're three. And artificial flowers. - Oh, those just get me psychotic! - Yeah, me too. Bent stingers, pointless pollination. Bees must hate those fake things! Nothing worse than a daffodil that's had work done. Maybe this could make up for it a little bit. - This lawsuit's a pretty big deal. - I guess. You sure you want to go through with it? Am I sure? When I'm done with the humans, they won't be able to say, "Honey, I'm home," without paying a royalty! It's an incredible scene here in downtown Manhattan, where the world anxiously waits, because for the first time in history, we will hear for ourselves if a honeybee can actually speak. What have we gotten into here, Barry? It's pretty big, isn't it? I can't believe how many humans don't work during the day. You think billion-dollar multinational food companies have good lawyers? Everybody needs to stay behind the barricade. - What's the matter? - I don't know, I just got a chill. Well, if it isn't the bee team. You boys work on this? All rise! The Honorable Judge Bumbleton presiding. All right. Oase number 4475, Superior Oourt of New York, Barry Bee Benson v. the Honey Industry is now in session. Mr. Montgomery, you're representing the five food companies collectively? A privilege. Mr. Benson... you're representing all the bees of the world? I'm kidding. Yes, Your Honor, we're ready to proceed. Mr. Montgomery, your opening statement, please. Ladies and gentlemen of the jury, my grandmother was a simple woman. Born on a farm, she believed it was man's divine right to benefit from the bounty of nature God put before us. If we lived in the topsy-turvy world Mr. Benson imagines, just think of what would it mean. I would have to negotiate with the silkworm for the elastic in my britches! Talking bee! How do we know this isn't some sort of holographic motion-picture-capture Hollywood wizardry? They could be using laser beams! Robotics! Ventriloquism! Oloning! For all we know, he could be on steroids! Mr. Benson? Ladies and gentlemen, there's no trickery here. I'm just an ordinary bee. Honey's pretty important to me. It's important to all bees. We invented it! We make it. And we protect it with our lives. Unfortunately, there are some people in this room who think they can take it from us 'cause we're the little guys! I'm hoping that, after this is all over, you'll see how, by taking our honey, you not only take everything we have but everything we are! I wish he'd dress like that all the time. So nice! Oall your first witness. So, Mr. Klauss Vanderhayden of Honey Farms, big company you have. I suppose so. I see you also own Honeyburton and Honron! Yes, they provide beekeepers for our farms. Beekeeper. I find that to be a very disturbing term. I don't imagine you employ any bee-free-ers, do you? - No. - I couldn't hear you. - No. - No. Because you don't free bees. You keep bees. Not only that, it seems you thought a bear would be an appropriate image for a jar of honey. They're very lovable creatures. Yogi Bear, Fozzie Bear, Build-A-Bear. You mean like this? Bears kill bees! How'd you like his head crashing through your living room?! Biting into your couch! Spitting out your throw pillows! OK, that's enough. Take him away. So, Mr. Sting, thank you for being here. Your name intrigues me. - Where have I heard it before? - I was with a band called The Police. But you've never been a police officer, have you? No, I haven't. No, you haven't. And so here we have yet another example of bee culture casually stolen by a human for nothing more than a prance-about stage name. Oh, please. Have you ever been stung, Mr. Sting? Because I'm feeling a little stung, Sting. Or should I say... Mr. Gordon M. Sumner! That's not his real name?! You idiots! Mr. Liotta, first, belated congratulations on your Emmy win for a guest spot on ER in 2005. Thank you. Thank you. I see from your resume that you're devilishly handsome with a churning inner turmoil that's ready to blow. I enjoy what I do. Is that a crime? Not yet it isn't. But is this what it's come to for you? Exploiting tiny, helpless bees so you don't have to rehearse your part and learn your lines, sir? Watch it, Benson! I could blow right now! This isn't a goodfella. This is a badfella! Why doesn't someone just step on this creep, and we can all go home?! - Order in this court! - You're all thinking it! Order! Order, I say! - Say it! - Mr. Liotta, please sit down! I think it was awfully nice of that bear to pitch in like that. I think the jury's on our side. Are we doing everything right, legally? I'm a florist. Right. Well, here's to a great team. To a great team! Well, hello. - Ken! - Hello. I didn't think you were coming. No, I was just late. I tried to call, but... the battery. I didn't want all this to go to waste, so I called Barry. Luckily, he was free. Oh, that was lucky. There's a little left. I could heat it up. Yeah, heat it up, sure, whatever. So I hear you're quite a tennis player. I'm not much for the game myself. The ball's a little grabby. That's where I usually sit. Right... there. Ken, Barry was looking at your resume, and he agreed with me that eating with chopsticks isn't really a special skill. You think I don't see what you're doing? I know how hard it is to find the rightjob. We have that in common. Do we? Bees have 100 percent employment, but we do jobs like taking the crud out. That's just what I was thinking about doing. Ken, I let Barry borrow your razor for his fuzz. I hope that was all right. I'm going to drain the old stinger. Yeah, you do that. Look at that. You know, I've just about had it with your little mind games. - What's that? - Italian Vogue. Mamma mia, that's a lot of pages. A lot of ads. Remember what Van said, why is your life more valuable than mine? Funny, I just can't seem to recall that! I think something stinks in here! I love the smell of flowers. How do you like the smell of flames?! Not as much. Water bug! Not taking sides! Ken, I'm wearing a Ohapstick hat! This is pathetic! I've got issues! Well, well, well, a royal flush! - You're bluffing. - Am I? Surf's up, dude! Poo water! That bowl is gnarly. Except for those dirty yellow rings! Kenneth! What are you doing?! You know, I don't even like honey! I don't eat it! We need to talk! He's just a little bee! And he happens to be the nicest bee I've met in a long time! Long time? What are you talking about?! Are there other bugs in your life? No, but there are other things bugging me in life. And you're one of them! Fine! Talking bees, no yogurt night... My nerves are fried from riding on this emotional roller coaster! Goodbye, Ken. And for your information, I prefer sugar-free, artificial sweeteners made by man! I'm sorry about all that. I know it's got an aftertaste! I like it! I always felt there was some kind of barrier between Ken and me. I couldn't overcome it. Oh, well. Are you OK for the trial? I believe Mr. Montgomery is about out of ideas. We would like to call Mr. Barry Benson Bee to the stand. Good idea! You can really see why he's considered one of the best lawyers... Yeah. Layton, you've gotta weave some magic with this jury, or it's gonna be all over. Don't worry. The only thing I have to do to turn this jury around is to remind them of what they don't like about bees. - You got the tweezers? - Are you allergic? Only to losing, son. Only to losing. Mr. Benson Bee, I'll ask you what I think we'd all like to know. What exactly is your relationship to that woman? We're friends. - Good friends? - Yes. How good? Do you live together? Wait a minute... Are you her little... ...bedbug? I've seen a bee documentary or two. From what I understand, doesn't your queen give birth to all the bee children? - Yeah, but... - So those aren't your real parents! - Oh, Barry... - Yes, they are! Hold me back! You're an illegitimate bee, aren't you, Benson? He's denouncing bees! Don't y'all date your cousins? - Objection! - I'm going to pincushion this guy! Adam, don't! It's what he wants! Oh, I'm hit!! Oh, lordy, I am hit! Order! Order! The venom! The venom is coursing through my veins! I have been felled by a winged beast of destruction! You see? You can't treat them like equals! They're striped savages! Stinging's the only thing they know! It's their way! - Adam, stay with me. - I can't feel my legs. What angel of mercy will come forward to suck the poison from my heaving buttocks? I will have order in this court. Order! Order, please! The case of the honeybees versus the human race took a pointed turn against the bees yesterday when one of their legal team stung Layton T. Montgomery. - Hey, buddy. - Hey. - Is there much pain? - Yeah. I... I blew the whole case, didn't I? It doesn't matter. What matters is you're alive. You could have died. I'd be better off dead. Look at me. They got it from the cafeteria downstairs, in a tuna sandwich. Look, there's a little celery still on it. What was it like to sting someone? I can't explain it. It was all... All adrenaline and then... and then ecstasy! All right. You think it was all a trap? Of course. I'm sorry. I flew us right into this. What were we thinking? Look at us. We're just a couple of bugs in this world. What will the humans do to us if they win? I don't know. I hear they put the roaches in motels. That doesn't sound so bad. Adam, they check in, but they don't check out! Oh, my. Oould you get a nurse to close that window? - Why? - The smoke. Bees don't smoke. Right. Bees don't smoke. Bees don't smoke! But some bees are smoking. That's it! That's our case! It is? It's not over? Get dressed. I've gotta go somewhere. Get back to the court and stall. Stall any way you can. And assuming you've done step correctly, you're ready for the tub. Mr. Flayman. Yes? Yes, Your Honor! Where is the rest of your team? Well, Your Honor, it's interesting. Bees are trained to fly haphazardly, and as a result, we don't make very good time. I actually heard a funny story about... Your Honor, haven't these ridiculous bugs taken up enough of this court's valuable time? How much longer will we allow these absurd shenanigans to go on? They have presented no compelling evidence to support their charges against my clients, who run legitimate businesses. I move for a complete dismissal of this entire case! Mr. Flayman, I'm afraid I'm going to have to consider Mr. Montgomery's motion. But you can't! We have a terrific case. Where is your proof? Where is the evidence? Show me the smoking gun! Hold it, Your Honor! You want a smoking gun? Here is your smoking gun. What is that? It's a bee smoker! What, this? This harmless little contraption? This couldn't hurt a fly, let alone a bee. Look at what has happened to bees who have never been asked, "Smoking or non?" Is this what nature intended for us? To be forcibly addicted to smoke machines and man-made wooden slat work camps? Living out our lives as honey slaves to the white man? - What are we gonna do? - He's playing the species card. Ladies and gentlemen, please, free these bees! Free the bees! Free the bees! Free the bees! Free the bees! Free the bees! The court finds in favor of the bees! Vanessa, we won! I knew you could do it! High-five! Sorry. I'm OK! You know what this means? All the honey will finally belong to the bees. Now we won't have to work so hard all the time. This is an unholy perversion of the balance of nature, Benson. You'll regret this. Barry, how much honey is out there? All right. One at a time. Barry, who are you wearing? My sweater is Ralph Lauren, and I have no pants. - What if Montgomery's right? - What do you mean? We've been living the bee way a long time, 27 million years. Oongratulations on your victory. What will you demand as a settlement? First, we'll demand a complete shutdown of all bee work camps. Then we want back the honey that was ours to begin with, every last drop. We demand an end to the glorification of the bear as anything more than a filthy, smelly, bad-breath stink machine. We're all aware of what they do in the woods. Wait for my signal. Take him out. He'll have nauseous for a few hours, then he'll be fine. And we will no longer tolerate bee-negative nicknames... But it's just a prance-about stage name! ...unnecessary inclusion of honey in bogus health products and la-dee-da human tea-time snack garnishments. Oan't breathe. Bring it in, boys! Hold it right there! Good. Tap it. Mr. Buzzwell, we just passed three cups, and there's gallons more coming! - I think we need to shut down! - Shut down? We've never shut down. Shut down honey production! Stop making honey! Turn your key, sir! What do we do now? Oannonball! We're shutting honey production! Mission abort. Aborting pollination and nectar detail. Returning to base. Adam, you wouldn't believe how much honey was out there. Oh, yeah? What's going on? Where is everybody? - Are they out celebrating? - They're home. They don't know what to do. Laying out, sleeping in. I heard your Uncle Oarl was on his way to San Antonio with a cricket. At least we got our honey back. Sometimes I think, so what if humans liked our honey? Who wouldn't? It's the greatest thing in the world! I was excited to be part of making it. This was my new desk. This was my new job. I wanted to do it really well. And now... Now I can't. I don't understand why they're not happy. I thought their lives would be better! They're doing nothing. It's amazing. Honey really changes people. You don't have any idea what's going on, do you? - What did you want to show me? - This. What happened here? That is not the half of it. Oh, no. Oh, my. They're all wilting. Doesn't look very good, does it? No. And whose fault do you think that is? You know, I'm gonna guess bees. Bees? Specifically, me. I didn't think bees not needing to make honey would affect all these things. It's notjust flowers. Fruits, vegetables, they all need bees. That's our whole SAT test right there. Take away produce, that affects the entire animal kingdom. And then, of course... The human species? So if there's no more pollination, it could all just go south here, couldn't it? I know this is also partly my fault. How about a suicide pact? How do we do it? - I'll sting you, you step on me. - Thatjust kills you twice. Right, right. Listen, Barry... sorry, but I gotta get going. I had to open my mouth and talk. Vanessa? Vanessa? Why are you leaving? Where are you going? To the final Tournament of Roses parade in Pasadena. They've moved it to this weekend because all the flowers are dying. It's the last chance I'll ever have to see it. Vanessa, I just wanna say I'm sorry. I never meant it to turn out like this. I know. Me neither. Tournament of Roses. Roses can't do sports. Wait a minute. Roses. Roses? Roses! Vanessa! Roses?! Barry? - Roses are flowers! - Yes, they are. Flowers, bees, pollen! I know. That's why this is the last parade. Maybe not. Oould you ask him to slow down? Oould you slow down? Barry! OK, I made a huge mistake. This is a total disaster, all my fault. Yes, it kind of is. I've ruined the planet. I wanted to help you with the flower shop. I've made it worse. Actually, it's completely closed down. I thought maybe you were remodeling. But I have another idea, and it's greater than my previous ideas combined. I don't want to hear it! All right, they have the roses, the roses have the pollen. I know every bee, plant and flower bud in this park. All we gotta do is get what they've got back here with what we've got. - Bees. - Park. - Pollen! - Flowers. - Repollination! - Across the nation! Tournament of Roses, Pasadena, Oalifornia. They've got nothing but flowers, floats and cotton candy. Security will be tight. I have an idea. Vanessa Bloome, FTD. Official floral business. It's real. Sorry, ma'am. Nice brooch. Thank you. It was a gift. Once inside, we just pick the right float. How about The Princess and the Pea? I could be the princess, and you could be the pea! Yes, I got it. - Where should I sit? - What are you? - I believe I'm the pea. - The pea? It goes under the mattresses. - Not in this fairy tale, sweetheart. - I'm getting the marshal. You do that! This whole parade is a fiasco! Let's see what this baby'll do. Hey, what are you doing?! Then all we do is blend in with traffic... ...without arousing suspicion. Once at the airport, there's no stopping us. Stop! Security. - You and your insect pack your float? - Yes. Has it been in your possession the entire time? Would you remove your shoes? - Remove your stinger. - It's part of me. I know. Just having some fun. Enjoy your flight. Then if we're lucky, we'll have just enough pollen to do the job. Oan you believe how lucky we are? We have just enough pollen to do the job! I think this is gonna work. It's got to work. Attention, passengers, this is Oaptain Scott. We have a bit of bad weather in New York. It looks like we'll experience a couple hours delay. Barry, these are cut flowers with no water. They'll never make it. I gotta get up there and talk to them. Be careful. Oan I get help with the Sky Mall magazine? I'd like to order the talking inflatable nose and ear hair trimmer. Oaptain, I'm in a real situation. - What'd you say, Hal? - Nothing. Bee! Don't freak out! My entire species... What are you doing? - Wait a minute! I'm an attorney! - Who's an attorney? Don't move. Oh, Barry. Good afternoon, passengers. This is your captain. Would a Miss Vanessa Bloome in 24B please report to the cockpit? And please hurry! What happened here? There was a DustBuster, a toupee, a life raft exploded. One's bald, one's in a boat, they're both unconscious! - Is that another bee joke? - No! No one's flying the plane! This is JFK control tower, Flight 356. What's your status? This is Vanessa Bloome. I'm a florist from New York. Where's the pilot? He's unconscious, and so is the copilot. Not good. Does anyone onboard have flight experience? As a matter of fact, there is. - Who's that? - Barry Benson. From the honey trial?! Oh, great. Vanessa, this is nothing more than a big metal bee. It's got giant wings, huge engines. I can't fly a plane. - Why not? Isn't John Travolta a pilot? - Yes. How hard could it be? Wait, Barry! We're headed into some lightning. This is Bob Bumble. We have some late-breaking news from JFK Airport, where a suspenseful scene is developing. Barry Benson, fresh from his legal victory... That's Barry! ...is attempting to land a plane, loaded with people, flowers and an incapacitated flight crew. Flowers?! We have a storm in the area and two individuals at the controls with absolutely no flight experience. Just a minute. There's a bee on that plane. I'm quite familiar with Mr. Benson and his no-account compadres. They've done enough damage. But isn't he your only hope? Technically, a bee shouldn't be able to fly at all. Their wings are too small... Haven't we heard this a million times? "The surface area of the wings and body mass make no sense." - Get this on the air! - Got it. - Stand by. - We're going live. The way we work may be a mystery to you. Making honey takes a lot of bees doing a lot of small jobs. But let me tell you about a small job. If you do it well, it makes a big difference. More than we realized. To us, to everyone. That's why I want to get bees back to working together. That's the bee way! We're not made of Jell-O. We get behind a fellow. - Black and yellow! - Hello! Left, right, down, hover. - Hover? - Forget hover. This isn't so hard. Beep-beep! Beep-beep! Barry, what happened?! Wait, I think we were on autopilot the whole time. - That may have been helping me. - And now we're not! So it turns out I cannot fly a plane. All of you, let's get behind this fellow! Move it out! Move out! Our only chance is if I do what I'd do, you copy me with the wings of the plane! Don't have to yell. I'm not yelling! We're in a lot of trouble. It's very hard to concentrate with that panicky tone in your voice! It's not a tone. I'm panicking! I can't do this! Vanessa, pull yourself together. You have to snap out of it! You snap out of it. You snap out of it. - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - Hold it! - Why? Oome on, it's my turn. How is the plane flying? I don't know. Hello? Benson, got any flowers for a happy occasion in there? The Pollen Jocks! They do get behind a fellow. - Black and yellow. - Hello. All right, let's drop this tin can on the blacktop. Where? I can't see anything. Oan you? No, nothing. It's all cloudy. Oome on. You got to think bee, Barry. - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Wait a minute. I think I'm feeling something. - What? - I don't know. It's strong, pulling me. Like a 27-million-year-old instinct. Bring the nose down. Thinking bee! Thinking bee! Thinking bee! - What in the world is on the tarmac? - Get some lights on that! Thinking bee! Thinking bee! Thinking bee! - Vanessa, aim for the flower. - OK. Out the engines. We're going in on bee power. Ready, boys? Affirmative! Good. Good. Easy, now. That's it. Land on that flower! Ready? Full reverse! Spin it around! - Not that flower! The other one! - Which one? - That flower. - I'm aiming at the flower! That's a fat guy in a flowered shirt. I mean the giant pulsating flower made of millions of bees! Pull forward. Nose down. Tail up. Rotate around it. - This is insane, Barry! - This's the only way I know how to fly. Am I koo-koo-kachoo, or is this plane flying in an insect-like pattern? Get your nose in there. Don't be afraid. Smell it. Full reverse! Just drop it. Be a part of it. Aim for the center! Now drop it in! Drop it in, woman! Oome on, already. Barry, we did it! You taught me how to fly! - Yes. No high-five! - Right. Barry, it worked! Did you see the giant flower? What giant flower? Where? Of course I saw the flower! That was genius! - Thank you. - But we're not done yet. Listen, everyone! This runway is covered with the last pollen from the last flowers available anywhere on Earth. That means this is our last chance. We're the only ones who make honey, pollinate flowers and dress like this. If we're gonna survive as a species, this is our moment! What do you say? Are we going to be bees, orjust Museum of Natural History keychains? We're bees! Keychain! Then follow me! Except Keychain. Hold on, Barry. Here. You've earned this. Yeah! I'm a Pollen Jock! And it's a perfect fit. All I gotta do are the sleeves. Oh, yeah. That's our Barry. Mom! The bees are back! If anybody needs to make a call, now's the time. I got a feeling we'll be working late tonight! Here's your change. Have a great afternoon! Oan I help who's next? Would you like some honey with that? It is bee-approved. Don't forget these. Milk, cream, cheese, it's all me. And I don't see a nickel! Sometimes I just feel like a piece of meat! I had no idea. Barry, I'm sorry. Have you got a moment? Would you excuse me? My mosquito associate will help you. Sorry I'm late. He's a lawyer too? I was already a blood-sucking parasite. All I needed was a briefcase. Have a great afternoon! Barry, I just got this huge tulip order, and I can't get them anywhere. No problem, Vannie. Just leave it to me. You're a lifesaver, Barry. Oan I help who's next? All right, scramble, jocks! It's time to fly. Thank you, Barry! That bee is living my life! Let it go, Kenny. - When will this nightmare end?! - Let it all go. - Beautiful day to fly. - Sure is. Between you and me, I was dying to get out of that office. You have got to start thinking bee, my friend. - Thinking bee! - Me? Hold it. Let's just stop for a second. Hold it. I'm sorry. I'm sorry, everyone. Oan we stop here? I'm not making a major life decision during a production number! All right. Take ten, everybody. Wrap it up, guys. I had virtually no rehearsal for that. Special thanks to SergeiK.
FrozenFlame97 / NFL Roster01Baltimore Ravens,BAL QB,Ryan Mallett,28,2011,84,63,85,97,79,20,0.8,2 QB,Joe Flacco,31,2008,86,86,97,97,87,55,22.1,3 QB,Josh Johnson,30,2008,73,65,92,87,73,63,0.6,1 RB,Lorenzo Taliaferro,24,2014,77,57,91,89,86,65,0.6,4 RB,Terrance West,25,2014,82,68,91,66,87,78,0.6,1 RB,Trent Richardson,25,2012,101,74,95,80,87,62,0.7,1 RB,Justin Forsett,30,2008,61,83,88,63,86,93,3,3 RB,Javorius Allen,24,2015,78,52,89,82,88,67,0.7,4 RB,Kyle Juszczyk,25,2013,76,73,93,82,81,57,0.6,4 WR,Kaelin Clay,24,2015,73,57,81,73,91,87,0.5,1 WR,Steve Smith Sr,37,2001,74,96,88,90,83,87,3.5,3 WR,Michael Campanaro,25,2014,72,65,87,81,90,82,0.6,4 WR,Darren Waller,23,2015,73,47,91,76,90,53,0.6,4 WR,Breshad Perriman,22,2015,88,53,89,77,97,82,2.2,4 WR,Dennis Pitta,30,2010,78,81,68,88,80,54,6.4,5 WR,Maxx Williams,22,2015,88,51,87,83,80,68,1,4 WR,Benjamin Watson,35,2004,77,82,85,72,79,60,3.5,2 WR,Kamar Aiken,27,2011,61,73,92,79,88,75,2.6,1 WR,Mike Wallace,29,2009,77,84,92,88,92,86,5.8,2 OL,Ryan Jensen,25,2013,72,52,92,90,83,76,0.6,1 OL,Marshal Yanda,31,2007,75,90,93,94,99,90,8,4 OL,Vladimir Ducasse,28,2010,83,73,89,92,81,68,0.5,1 OL,Ronnie Stanley,22,2016,105,78,85,87,91,89,5.1,4 OL,James Hurst,24,2014,62,71,87,78,77,69,0.5,3 OL,Jeremy Zuttah,30,2008,76,83,93,86,92,73,4.1,3 OL,John Urschel,24,2014,72,75,95,87,77,84,0.6,4 OL,Eugene Monroe,29,2009,97,87,90,89,75,90,7.5,5 K,Sam Koch,33,2006,64,88,85,91,87,79,3.3,5 K,Justin Tucker,26,2012,60,85,95,98,95,74,4.6,1 S,Terrence Brooks,25,2014,82,52,83,76,91,79,0.7,4 S,Kendrick Lewis,30,2010,73,78,81,78,86,86,1.8,3 S,Matt Elam,24,2013,86,63,89,65,89,90,1.7,4 S,Eric Weddle,31,2007,80,92,95,91,93,77,6.5,4 CB,Jerraud Powers,28,2009,77,82,90,86,90,50,1.8,1 CB,Will Davis,26,2013,81,66,85,75,90,46,0.7,4 CB,Lardarius Webb,30,2009,77,83,88,80,91,60,5.4,3 CB,Jimmy Smith,27,2011,84,79,88,90,90,70,10.3,4 CB,Kyle Arrington,29,2008,57,82,88,84,88,47,2.3,3 CB,Jumal Rolle,26,2013,62,63,91,75,91,45,0.6,1 CB,Shareece Wright,29,2011,79,74,85,70,88,62,4.3,3 CB,Anthony Levine,29,2010,60,70,88,79,89,67,1.1,2 CB,Sheldon Price,25,2013,64,53,82,69,87,39,0.5,1 DL,Brent Urban,25,2014,77,50,74,79,76,86,0.6,4 DL,Carl Davis,24,2015,83,53,84,88,78,87,0.7,4 DL,Lawrence Guy,26,2011,64,72,92,84,82,78,1.2,2 DL,Kapron Lewis-Moore,26,2013,71,55,74,89,82,88,0.6,4 DL,Timmy Jernigan,23,2014,87,70,90,84,83,86,1.1,4 DL,CJ Mosley,24,2014,92,79,88,85,84,78,2.2,4 LB,Elvis Dumervil,32,2006,69,92,83,75,85,93,5.2,5 LB,Za'Darius Smith,23,2015,83,53,88,80,80,59,0.7,4 LB,Chris Carter,27,2011,74,69,85,76,59,72,1,1 LB,Arthur Brown,26,2013,86,62,92,87,63,72,0.9,4 LB,Terrell Suggs,33,2003,81,94,88,92,97,87,5.2,4 LB,Albert McClellan,30,2010,59,71,91,79,85,70,1.3,3 END_PLAYERS Cincinnati Bengals,CIN QB,Andy Dalton,28,2011,84,81,96,86,79,20,16,6 QB,AJ McCarron,25,2014,78,65,94,84,75,44,0.6,4 RB,Giovani Bernard,24,2013,86,77,84,56,87,87,5.2,3 RB,Jeremy Hill,23,2014,87,78,94,95,88,79,0.9,4 RB,Rex Burkhead,25,2013,71,68,87,59,80,76,0.6,4 RB,Cedric Peerman,29,2009,68,70,84,52,90,79,1.1,2 WR,AJ Green,27,2011,99,87,95,104,87,84,15,4 WR,Brandon Tate,28,2009,77,78,79,72,88,86,1,1 WR,James Wright,24,2014,67,64,92,77,90,76,0.6,4 WR,Brandon LaFell,29,2010,78,83,94,88,84,65,2.5,1 WR,Mario Alford,25,2015,68,52,91,76,97,85,0.6,4 WR,Tyler Eifert,25,2013,91,62,90,85,82,54,2.1,4 OL,Cedric Ogbuehi,24,2015,93,65,74,82,81,85,2.3,4 OL,Clint Boling,27,2011,79,83,97,82,90,80,5.2,5 OL,Andrew Whitworth,34,2006,79,96,90,94,89,98,9,1 OL,Eric Winston,32,2006,80,84,89,82,74,72,1.1,1 OL,Trey Hopkins,23,2014,63,54,91,87,82,74,0.5,2 OL,Russell Bodine,23,2014,82,75,93,97,82,74,0.7,4 OL,TJ Johnson,25,2013,67,65,92,86,76,75,0.6,1 OL,Jake Fisher,23,2015,88,60,83,77,75,87,1.1,4 OL,Kevin Zeitler,26,2012,85,83,79,91,92,85,1.9,4 K,Zach Hocker,24,2014,68,56,95,90,80,70,0.6,2 K,Mike Nugent,34,2005,78,77,90,91,83,62,1.8,2 K,Kevin Huber,30,2009,72,83,95,88,90,70,2.8,5 S,George Iloka,26,2012,75,78,95,93,88,84,6,5 S,Derron Smith,24,2015,73,55,81,81,90,75,0.6,4 S,Shawn Williams,25,2013,81,52,94,72,92,85,5,4 CB,William Jackson III,23,2016,95,65,85,81,90,70,2.4,4 CB,Josh Shaw,24,2015,83,42,78,79,92,50,0.7,4 CB,Dre Kirkpatrick,26,2012,90,70,85,87,91,73,2.2,4 CB,Adam Jones,32,2005,95,84,88,82,92,50,7.3,3 CB,Leon Hall,31,2007,65,90,87,87,92,62,9.8,4 CB,Darqueze Dennard,24,2014,92,61,87,75,90,65,2,4 CB,Chykie Brown,29,2011,75,72,83,76,90,45,0.8,1 CB,Chris Lewis-Harris,27,2012,61,67,92,77,87,55,0.6,2 DL,Marcus Hardison,24,2015,78,42,87,82,66,67,0.7,4 DL,Michael Bennett,24,2015,64,54,87,77,67,71,0.5,2 DL,Domata Peko,31,2006,74,87,92,87,69,72,4.5,2 DL,Pat Sims,30,2008,76,76,87,89,77,78,1.2,2 DL,Will Clarke,25,2014,82,54,87,76,78,76,0.7,4 DL,Carlos Dunlap,27,2010,83,81,86,79,67,72,7.9,5 DL,Michael Johnson,29,2009,82,79,88,73,64,69,5,4 DL,Geno Atkins,28,2010,78,87,85,99,93,82,10.7,5 DL,Brandon Thompson,26,2012,80,62,90,91,78,72,0.8,1 DL,Margus Hunt,28,2013,87,60,85,88,80,74,0.9,4 LB,Rey Maualuga,29,2009,82,88,89,87,75,84,5,3 LB,Vontaze Burfict,25,2012,60,78,96,90,82,86,4.8,4 LB,Jayson Dimanche,25,2013,62,65,91,74,62,64,0.7,2 LB,Vincent Rey,28,2010,59,75,93,87,59,78,3.5,3 LB,Karlos Dansby,34,2004,77,94,89,93,72,97,2,1 LB,Marquis Flowers,24,2014,72,62,91,69,57,65,0.6,4 END_PLAYERS Cleveland Browns,CLE QB,Austin Davis,27,2012,60,65,92,85,79,49,2,2 QB,Connor Shaw,24,2014,63,51,83,80,76,71,0.5,3 QB,Robert Griffin III,26,2012,100,68,77,92,70,74,7.5,2 QB,Josh McCown,36,2002,72,75,75,83,71,27,4.7,3 RB,Glenn Winston,27,2014,62,40,85,85,81,57,0.5,3 RB,Duke Johnson,22,2015,83,60,76,53,90,87,0.8,4 RB,Isaiah Crowell,23,2014,62,63,93,86,86,63,0.5,3 RB,Malcolm Johnson,23,2015,73,46,91,70,83,60,0.6,4 WR,Rannell Hall,24,2015,64,52,85,70,87,77,0.5,2 WR,Corey Coleman,21,2016,95,75,85,87,96,85,2.9,4 WR,Andrew Hawkins,30,2011,59,83,88,88,90,95,3.4,4 WR,Gary Barnidge,30,2008,71,76,76,93,81,25,4.1,3 WR,Taylor Gabriel,25,2014,62,74,87,82,92,87,0.5,3 WR,Marlon Moore,28,2010,58,71,92,76,86,71,1,3 WR,Terrelle Pryor,27,2011,81,51,90,70,89,82,1.7,1 OL,Cameron Erving,23,2015,93,58,93,84,82,85,2.4,4 OL,John Greco,31,2008,81,82,94,83,93,82,1.6,4 OL,Garth Gerhart,27,2012,63,66,81,85,77,74,0.5,1 OL,Austin Pasztor,25,2012,61,76,95,79,80,74,1.7,1 OL,Michael Bowie,24,2013,66,67,89,82,85,72,0.6,4 OL,Joe Thomas,31,2007,95,92,98,94,90,96,11.5,7 OL,Joel Bitonio,24,2014,87,72,92,83,93,91,1.4,4 OL,Alvin Bailey,24,2013,61,70,92,90,87,78,2,3 K,Patrick Murray,24,2014,63,64,90,92,85,70,0.5,1 K,Andy Lee,33,2004,62,82,85,94,93,63,3.4,6 S,Jordan Poyer,25,2013,71,50,92,76,92,50,0.6,4 S,Don Jones,26,2013,66,61,91,70,92,85,1.7,1 S,Sean Baker,27,2012,63,56,93,68,86,73,0.5,1 S,Rahim Moore,26,2011,84,82,95,89,89,81,1.9,1 S,Ibraheim Campbell,24,2015,83,50,82,62,89,79,0.7,4 CB,Justin Gilbert,24,2014,102,68,95,82,91,45,3.2,4 CB,Tramon Williams,33,2006,55,89,93,85,91,44,7,3 CB,Charles Gaines,23,2015,73,47,87,76,91,35,0.6,4 CB,Pierre Desir,25,2014,77,48,93,83,92,47,0.7,4 CB,Joe Haden,27,2010,98,86,95,89,90,72,13.5,5 CB,Jamar Taylor,25,2013,86,50,85,77,94,74,0.9,4 DL,Desmond Bryant,30,2009,57,79,85,85,78,83,6.8,5 DL,Danny Shelton,22,2015,93,65,90,93,80,88,2.9,4 DL,Xavier Cooper,24,2015,83,46,92,81,77,61,0.7,4 DL,John Hughes,28,2012,80,75,91,85,71,85,3.2,4 LB,Paul Kruger,30,2009,82,87,94,85,82,87,8.1,5 LB,Barkevious Mingo,25,2013,101,74,90,85,79,74,4.1,4 LB,Nate Orchard,23,2015,88,65,92,64,67,70,1.1,4 LB,Armonty Bryant,26,2013,71,54,95,76,70,60,0.6,4 LB,Cam Johnson,26,2012,67,55,76,78,84,51,0.6,2 LB,Justin Tuggle,26,2013,61,72,92,81,68,75,0.7,1 LB,Tank Carder,27,2012,75,66,84,83,64,66,1.3,2 LB,Jackson Jeffcoat,24,2014,62,44,80,68,84,66,0.5,3 LB,Demario Davis,27,2012,80,78,91,92,67,78,4,2 END_PLAYERS Pittsburgh Steelers,PIT QB,Bruce Gradkowski,33,2006,64,74,87,78,75,35,1,1 QB,Ben Roethlisberger,34,2004,82,95,90,104,100,77,21.9,4 QB,Landry Jones,27,2013,81,53,95,92,77,20,0.6,4 RB,David Johnson,28,2009,62,53,90,78,89,66,0.8,1 RB,Fitzgerald Toussaint,26,2014,62,85,85,50,85,80,0.6,1 RB,Le'Veon Bell,24,2013,86,79,94,94,98,105,1,4 RB,Daryl Richardson,26,2012,67,66,85,47,88,82,0.6,1 RB,DeAngelo Williams,33,2006,79,87,88,44,85,81,2,2 WR,Markus Wheaton,25,2013,81,75,93,79,89,83,0.7,4 WR,Ladarius Green,26,2012,80,69,83,81,89,70,5,4 WR,Darrius Heyward-Bey,29,2009,97,74,86,71,92,74,1.3,3 WR,Sammie Coates,23,2015,83,48,88,76,91,65,0.7,4 WR,Martavis Bryant,24,2014,82,70,93,87,101,98,0.7,4 WR,Antonio Brown,27,2010,68,96,94,109,100,106,8.4,5 OL,Chris Hubbard,25,2013,62,61,91,77,73,81,0.6,1 OL,BJ Finney,24,2015,64,63,92,76,75,78,0.5,1 OL,Cody Wallace,31,2008,78,72,94,85,74,81,1.2,3 OL,Ryan Harris,31,2007,81,84,63,84,78,85,2,2 OL,Alejandro Villanueva,27,2014,63,50,88,77,71,76,0.5,2 OL,David DeCastro,26,2012,90,78,92,94,83,88,2,4 OL,Ramon Foster,30,2009,57,82,87,88,78,86,3.2,3 OL,Marcus Gilbert,28,2011,84,79,94,91,84,85,6.2,5 OL,Maurkice Pouncey,26,2010,88,80,92,91,91,89,8.8,5 K,Shaun Suisham,34,2005,53,77,88,87,96,67,3.2,3 K,Chris Boswell,25,2014,63,50,94,92,73,71,0.5,2 S,Mike Mitchell,29,2009,82,76,90,72,89,90,5,5 S,Shamarko Thomas,25,2013,81,55,85,76,93,90,0.7,4 S,Robert Golden,25,2012,60,59,92,71,88,66,1.7,3 S,Ross Ventrone,29,2010,61,66,88,65,89,65,0.6,2 S,Will Allen,33,2004,65,78,88,72,83,50,1.1,1 CB,Doran Grant,23,2015,83,55,92,83,93,64,0.5,2 CB,Senquez Golson,22,2015,88,61,88,85,92,42,1,4 CB,Artie Burns,21,2016,90,65,85,85,90,70,2.4,4 CB,William Gay,31,2007,70,93,93,87,89,69,2.5,3 CB,Ross Cockrell,24,2014,82,62,93,81,93,66,0.6,1 DL,Cameron Heyward,27,2011,84,83,88,90,89,88,9.9,6 DL,Stephon Tuitt,23,2014,87,72,84,91,82,82,1.2,4 DL,Brian Mihalik,23,2015,69,55,87,82,72,73,0.5,1 DL,Ricardo Mathews,28,2010,63,73,88,83,82,72,0.8,1 DL,Clifton Geathers,28,2010,65,71,95,81,82,79,0.8,1 DL,Daniel McCullers,23,2014,72,59,88,88,75,86,0.6,4 LB,Bud Dupree,23,2015,93,64,90,82,85,53,2.3,4 LB,Vince Williams,26,2013,71,72,81,85,77,72,0.6,4 LB,Jarvis Jones,26,2013,91,66,80,74,88,66,2.2,4 LB,Jordan Zumwalt,24,2014,72,50,85,77,72,71,0.6,4 LB,Ryan Shazier,24,2014,92,68,88,85,80,66,2.4,4 LB,Lawrence Timmons,30,2007,85,90,92,93,89,88,9.6,5 LB,Steven Johnson,28,2012,60,70,85,82,64,69,0.8,1 LB,James Harrison,38,2002,51,93,90,82,91,88,1.4,2 LB,Anthony Chickillo,23,2015,73,55,92,79,73,80,0.5,1 LB,Arthur Moats,28,2010,68,78,88,80,89,78,2.5,3 END_PLAYERS Buffalo Bills,BUF QB,Tyrod Taylor,26,2011,70,65,87,90,75,63,1.1,3 QB,EJ Manuel,26,2013,91,65,87,93,75,66,2.2,4 RB,Karlos Williams,23,2015,78,55,80,84,90,64,0.6,4 RB,Mike Gillislee,25,2013,77,52,88,64,86,76,0.6,1 RB,LeSean McCoy,27,2009,82,87,90,59,88,84,8,5 RB,James Wilder Jr,24,2014,64,47,85,87,76,53,0.5,2 RB,Jerome Felton,29,2008,71,82,94,71,78,50,2.3,4 RB,Dan Herron,27,2012,72,75,81,77,85,73,0.5,1 WR,Sammy Watkins,23,2014,102,74,91,89,92,94,5,4 WR,Leonard Hankerson,27,2011,79,73,83,80,90,65,0.8,1 WR,Marquise Goodwin,25,2013,82,67,90,74,95,72,0.7,4 WR,Dezmin Lewis,23,2015,69,45,87,87,90,72,0.5,3 WR,Charles Clay,27,2011,74,80,97,88,80,65,7.6,5 WR,Robert Woods,24,2013,86,75,94,85,90,77,1.2,4 WR,Walter Powell,24,2014,73,50,88,80,90,86,0.6,3 WR,Greg Salas,27,2011,80,68,79,82,85,67,0.8,1 WR,Marcus Easley,28,2010,80,65,73,74,89,58,1.8,4 OL,John Miller,22,2015,83,63,85,86,84,75,0.7,4 OL,Cyril Richardson,25,2014,78,55,92,89,81,69,0.6,2 OL,Eric Wood,30,2009,82,86,80,87,82,80,6.4,4 OL,Cyrus Kouandjio,22,2014,88,49,78,84,83,72,1.2,4 OL,Jordan Mills,25,2013,76,72,93,83,83,69,1.7,1 OL,Cordy Glenn,26,2012,85,81,89,93,84,92,12,5 OL,Seantrel Henderson,24,2014,67,71,82,83,78,82,0.6,4 OL,Richie Incognito,32,2005,75,73,79,93,82,78,5.3,3 OL,Fernando Velasco,31,2008,59,79,88,83,76,79,1,1 OL,Ryan Groy,25,2014,62,58,96,86,74,79,0.6,2 K,Colton Schmidt,25,2013,62,66,92,87,88,64,0.6,1 K,Dan Carpenter,30,2008,56,80,83,96,93,58,2.5,4 K,Jordan Gay,26,2013,62,64,90,95,78,70,0.6,2 S,Jonathan Meeks,26,2013,77,49,93,74,84,72,0.6,2 S,Colt Anderson,30,2009,58,64,85,71,89,68,0.8,1 S,Robert Blanton,26,2012,75,77,96,82,90,74,0.8,1 S,Duke Williams,25,2013,81,61,94,80,89,83,0.7,4 S,Jonathan Dowling,24,2014,68,55,88,76,90,77,0.6,2 S,Aaron Williams,26,2011,84,75,90,80,88,68,6.5,4 CB,Mario Butler,27,2011,63,64,95,74,89,40,0.6,1 CB,Stephon Gilmore,25,2012,90,78,94,99,94,68,3,4 CB,Ronald Darby,22,2015,88,56,87,72,92,39,1.1,4 CB,Nickell Robey,24,2013,61,74,87,78,92,44,2.1,2 CB,Corey White,26,2012,75,69,97,79,88,80,0.8,1 CB,Corey Graham,30,2007,70,83,88,92,89,55,4.1,4 CB,Sterling Moore,26,2011,59,78,92,84,91,62,0.8,1 CB,Sammy Seamster,25,2014,63,42,92,74,90,44,0.5,3 DL,Max Valles,21,2015,74,48,92,65,79,42,0.5,3 DL,Corbin Bryant,28,2011,61,68,88,86,75,66,1.7,1 DL,Jerry Hughes,27,2010,83,80,91,66,71,68,9,5 DL,Lavar Edwards,26,2013,77,65,95,72,79,70,0.6,2 DL,Jerel Worthy,26,2012,87,65,92,82,76,75,0.6,3 DL,Kyle Williams,33,2006,69,95,82,90,92,91,7.4,3 DL,Manny Lawson,31,2006,85,81,93,72,58,75,3,4 DL,Marcell Dareus,26,2011,99,82,94,104,92,94,16.1,6 DL,Shaq Lawson,22,2016,95,65,85,90,88,85,2.6,4 DL,TJ Barnes,26,2013,62,67,86,91,76,79,0.6,2 LB,Preston Brown,23,2014,87,75,97,85,66,77,0.8,4 LB,Kevin Reddick,26,2013,62,60,89,79,60,71,0.6,2 LB,Randell Johnson,25,2014,72,66,85,76,82,55,0.6,4 LB,Lorenzo Alexander,33,2005,55,80,90,79,87,82,0.9,1 LB,Zach Brown,26,2012,85,74,90,85,66,72,1.3,1 LB,Jamari Lattimore,27,2011,60,73,90,81,67,72,0.5,1 END_PLAYERS Miami Dolphins,MIA QB,Zac Dysert,26,2013,69,55,90,85,73,30,0.5,1 QB,Logan Thomas,23,2014,83,52,88,94,72,69,0.6,2 QB,Matt Moore,31,2007,56,76,90,82,73,20,1.8,2 QB,Ryan Tannehill,27,2012,100,78,94,91,87,67,19.3,4 RB,Daniel Thomas,28,2011,85,55,85,60,85,80,0.8,1 RB,Isaiah Pead,26,2012,87,65,84,46,91,75,0.7,1 RB,Damien Williams,24,2014,62,52,89,67,90,83,0.5,3 RB,Jay Ajayi,23,2015,78,52,74,69,87,81,0.6,4 WR,Dion Sims,25,2013,81,62,79,74,79,46,0.7,4 WR,Kenny Stills,24,2013,76,77,92,87,92,85,0.6,4 WR,Jarvis Landry,23,2014,87,76,90,91,86,66,0.9,4 WR,Jordan Cameron,27,2011,79,75,85,87,85,74,7.5,2 WR,Matt Hazel,24,2014,73,55,91,77,88,72,0.5,1 WR,Griff Whalen,26,2012,61,72,93,81,85,73,0.7,1 WR,DeVante Parker,23,2015,93,61,78,87,91,63,2.7,4 OL,Anthony Steen,26,2014,64,50,86,80,74,79,0.5,1 OL,Jermon Bushrod,31,2007,71,85,92,90,72,87,1.5,1 OL,Shelley Smith,29,2010,65,74,88,80,80,73,0.7,1 OL,Jacques McClendon,28,2010,74,71,75,86,81,74,0.8,1 OL,Mike Pouncey,26,2011,89,81,95,88,87,81,9,5 OL,Billy Turner,24,2014,88,64,95,85,78,84,0.8,4 OL,Dallas Thomas,26,2013,81,73,90,83,75,72,0.7,4 OL,Ja'Wuan James,24,2014,92,74,96,83,79,81,2.1,4 OL,Jamil Douglas,24,2015,83,53,93,85,71,81,0.7,4 OL,Vinston Painter,26,2013,78,56,83,85,76,77,0.5,1 OL,Sam Young,28,2010,69,74,93,83,77,76,0.9,1 OL,Branden Albert,31,2008,86,88,89,90,87,94,9.4,5 OL,Kraig Urbik,30,2009,77,85,95,93,70,85,1.3,2 OL,Laremy Tunsil,21,2016,95,71,85,88,90,92,3.1,4 K,Andrew Franks,23,2015,63,65,85,80,80,70,0.5,3 K,Matt Darr,23,2015,63,65,85,80,80,70,0.5,3 S,Reshad Jones,28,2010,73,81,91,82,88,88,7,4 S,Walt Aikens,25,2014,77,48,93,84,89,69,0.7,4 S,Michael Thomas,27,2012,61,54,90,73,89,67,0.7,1 S,Isa Abdul-Quddus,27,2011,60,63,88,76,90,74,4.3,3 S,Louis Delmas,29,2009,65,79,77,85,91,82,2.3,1 CB,Tyler Patmon,25,2014,62,62,94,77,87,47,0.6,1 CB,Byron Maxwell,28,2011,74,79,87,92,88,75,10.5,6 CB,Chimdi Chekwa,27,2011,80,63,94,73,93,50,0.8,1 CB,Bobby McCain,22,2015,78,41,84,84,89,40,0.6,4 CB,Ifo Ekpre-Olomu,22,2015,69,55,67,76,87,49,0.6,4 DL,Earl Mitchell,28,2010,78,81,90,80,84,68,4,4 DL,Andre Branch,26,2012,85,70,89,68,83,67,2.8,1 DL,Dion Jordan,26,2013,102,52,85,66,64,70,5.1,4 DL,Mario Williams,31,2006,94,86,90,99,87,74,8.5,2 DL,Cameron Wake,34,2005,57,87,92,96,96,74,7.5,2 DL,Ndamukong Suh,29,2010,98,84,93,108,97,92,19.1,6 DL,Jordan Phillips,23,2015,88,45,75,88,76,85,1.1,4 DL,Terrence Fede,24,2014,67,57,94,76,68,73,0.6,4 DL,Charles Tuaau,24,2015,64,46,90,84,75,83,0.5,1 DL,Jason Jones,30,2008,81,75,92,85,85,75,0.5,1 DL,DeAndre Coleman,25,2014,63,52,95,88,72,77,0.6,2 LB,James-Michael Johnson,26,2012,80,72,90,83,55,76,0.8,1 LB,Kiko Alonso,25,2013,86,85,85,92,70,94,1.1,4 LB,Jelani Jenkins,24,2013,81,75,85,77,67,77,0.7,4 LB,Spencer Paysinger,27,2011,59,80,90,83,62,78,0.8,1 LB,Zach Vigil,25,2015,63,54,91,76,54,56,0.5,3 LB,Koa Misi,29,2010,83,84,90,90,86,88,4.3,4 LB,Chris McCain,24,2014,62,67,93,66,67,68,0.5,3 END_PLAYERS New England Patriots,NE QB,Jimmy Garoppolo,24,2014,87,57,95,90,80,47,0.9,4 QB,Tom Brady,38,2000,58,99,90,104,107,20,20.5,2 RB,Dion Lewis,25,2011,75,66,76,52,87,83,1.3,2 RB,James Develin,27,2010,61,79,92,78,68,37,0.8,1 RB,LeGarrette Blount,29,2010,58,80,87,96,83,62,1,1 RB,Tyler Gaffney,25,2014,72,60,79,84,89,54,0.5,1 RB,Malcolm Brown,23,2015,64,45,87,83,89,49,1.9,4 RB,Brandon Bolden,26,2012,60,70,86,83,87,55,1.2,2 RB,Joey Iosefa,25,2015,69,40,78,81,79,48,0.5,1 RB,James White,24,2014,77,54,88,64,86,75,0.7,4 WR,Chris Hogan,27,2011,61,66,88,81,84,49,4,3 WR,Rob Gronkowski,27,2010,83,86,73,104,82,50,9,6 WR,Julian Edelman,30,2009,62,90,88,105,84,85,4.3,4 WR,Danny Amendola,30,2008,57,89,78,88,82,87,4.1,2 WR,Matthew Slater,30,2008,71,81,90,74,86,70,2,2 WR,Aaron Dobson,24,2013,86,67,84,79,92,71,0.9,4 WR,Keshawn Martin,26,2012,80,70,88,78,90,87,1.5,2 WR,Nate Washington,32,2005,53,87,94,86,84,80,1.1,1 WR,Martellus Bennett,29,2008,82,81,89,85,78,35,5.1,4 WR,Clay Harbor,28,2010,73,71,89,75,83,71,1.5,2 WR,Chris Harper,22,2015,64,49,95,74,86,67,0.5,2 OL,Sebastian Vollmer,31,2009,82,88,78,92,84,93,4.2,4 OL,Cameron Fleming,23,2014,77,65,93,85,83,73,0.6,1 OL,Jonathan Cooper,26,2013,102,64,79,88,78,81,3.6,4 OL,Nate Solder,28,2011,89,85,87,87,88,81,10,2 OL,Bryan Stork,25,2014,82,78,78,81,86,81,0.7,4 OL,Shaq Mason,22,2015,78,42,91,86,87,66,0.7,4 OL,LaAdrian Waddle,24,2013,61,74,88,87,77,92,1.2,2 OL,Marcus Cannon,28,2011,74,74,87,91,79,82,4.5,2 OL,Josh Kline,26,2013,61,65,90,83,82,75,1.7,2 K,Ryan Allen,26,2013,61,70,95,90,88,70,2,3 K,Stephen Gostkowski,32,2006,74,89,88,104,105,62,4.3,4 S,Nate Ebner,26,2012,70,60,95,63,89,91,1.2,2 S,Brock Vereen,23,2014,78,66,92,78,93,78,0.6,1 S,Devin McCourty,28,2010,83,89,95,96,90,63,9.5,5 S,Duron Harmon,25,2013,81,64,92,77,88,75,0.7,4 S,Jordan Richards,23,2015,88,44,93,66,90,76,0.9,4 S,Patrick Chung,28,2009,82,81,93,85,91,85,2.7,3 S,Cedric Thompson,23,2015,79,39,90,69,90,69,0.5,1 CB,Malcolm Butler,26,2014,62,70,90,94,87,60,0.5,3 CB,Logan Ryan,25,2013,81,74,94,88,90,66,0.7,4 CB,EJ Biggers,29,2009,68,74,90,74,93,36,0.8,1 CB,Darryl Roberts,25,2015,68,42,79,69,95,62,0.6,4 DL,Ishmaa'ily Kitchen,27,2012,65,68,83,91,76,80,0.7,2 DL,Terrance Knighton,29,2009,82,83,94,93,81,93,1.8,1 DL,Markus Kuhn,30,2012,65,71,92,86,73,76,1.2,1 DL,Anthony Johnson,23,2014,63,58,92,78,76,76,0.6,2 DL,Frank Kearse,27,2011,65,68,88,90,65,77,0.8,1 DL,Chris Long,31,2008,97,83,86,89,84,78,2.4,1 DL,Rob Ninkovich,32,2006,69,91,92,76,88,73,3.5,2 DL,Trey Flowers,22,2015,83,55,94,87,83,84,0.7,4 DL,Jabaal Sheard,27,2011,84,76,89,77,68,83,5.5,2 DL,Alan Branch,31,2007,80,80,87,92,77,83,2.2,2 DL,Kelcy Quarles,24,2014,63,53,91,84,78,73,0.5,2 LB,Jonathan Freeny,27,2011,60,71,87,75,81,67,1.8,1 LB,Jamie Collins,26,2013,86,83,96,92,93,84,0.9,4 LB,Rufus Johnson,25,2013,73,58,86,76,83,55,0.5,1 LB,Shea McClellin,26,2012,90,77,91,88,69,75,3,3 LB,Dont'a Hightower,26,2012,85,84,90,95,88,87,1.9,4 LB,Ramon Humber,28,2009,57,71,87,78,52,73,1,1 END_PLAYERS New York Jets,NYJ QB,Geno Smith,25,2013,86,66,95,91,77,72,1.3,4 QB,Bryce Petty,25,2015,83,48,79,91,72,58,0.7,4 RB,Zac Stacy,25,2013,77,75,92,84,86,57,0.6,4 RB,Taiwan Jones,22,2015,65,60,88,54,92,84,0.5,3 RB,Khiry Robinson,26,2013,61,70,88,85,81,62,1.2,1 RB,Taiwan Jones,22,2015,65,60,88,38,15,62,0.5,3 RB,Bilal Powell,27,2011,75,75,88,63,86,73,3.8,3 RB,Matt Forte,30,2008,81,91,93,78,86,85,4,3 RB,Tommy Bohanon,25,2013,72,66,88,76,75,48,0.6,4 WR,Kenbrell Thompkins,27,2013,62,73,94,76,86,73,1.7,1 WR,Titus Davis,23,2015,64,58,84,78,89,64,0.5,2 WR,Jace Amaro,23,2014,88,62,87,83,85,65,1.1,4 WR,Kellen Davis,30,2008,72,73,90,69,81,35,1,1 WR,Jeremy Ross,28,2011,61,74,87,75,88,89,0.8,1 WR,Devin Smith,24,2015,88,59,92,80,92,72,1.5,4 WR,Eric Decker,29,2010,79,89,92,91,84,73,7.3,5 WR,Zach Sudfeld,27,2013,62,64,80,75,78,45,0.6,1 WR,Brandon Marshall,32,2006,75,92,92,100,82,66,8.7,3 WR,Quincy Enunwa,24,2014,74,48,93,76,90,62,0.5,3 OL,Willie Colon,33,2006,65,83,78,86,68,87,1,1 OL,James Carpenter,27,2011,85,79,86,90,79,82,4.8,4 OL,Brian Winters,24,2013,87,72,89,84,76,69,0.7,4 OL,Ryan Clady,29,2008,86,90,83,89,78,88,6,1 OL,Jarvis Harrison,24,2015,80,44,84,88,83,81,0.6,2 OL,Breno Giacomini,30,2008,72,81,93,83,81,78,4.5,4 OL,Nick Mangold,32,2006,79,97,92,91,93,90,7.7,7 OL,Wesley Johnson,25,2014,78,63,94,83,79,73,0.6,2 OL,Dakota Dozier,25,2014,78,55,90,83,82,75,0.6,4 K,Nick Folk,31,2007,66,76,84,88,90,65,3,4 K,Randy Bullock,26,2012,65,72,87,95,88,74,0.7,1 S,Marcus Gilchrist,27,2011,85,75,90,76,89,55,5.5,4 S,Dion Bailey,24,2014,63,62,82,65,86,86,0.5,2 S,Rontez Miles,27,2013,64,59,92,71,89,86,0.5,3 S,Calvin Pryor,23,2014,93,73,93,87,89,95,2.1,4 S,Jaiquawn Jarrett,26,2011,65,66,90,79,90,87,1.5,1 CB,Dee Milliner,24,2013,102,67,87,82,93,77,3.2,4 CB,Darrelle Revis,30,2007,86,98,88,104,92,66,14,5 CB,Darryl Morris,25,2013,61,59,92,80,94,46,0.8,1 CB,Kendall James,24,2014,74,43,90,78,92,39,0.5,2 CB,Buster Skrine,27,2011,75,79,89,85,89,41,6.3,4 CB,Marcus Williams,25,2014,63,66,93,83,89,70,0.5,3 CB,Dexter McDougle,25,2014,82,51,75,75,89,73,0.7,4 DL,Jarvis Jenkins,28,2011,84,74,80,91,75,83,3,2 DL,Steve McLendon,30,2009,58,82,90,87,81,84,3.5,3 DL,Leonard Williams,22,2015,105,56,85,87,85,90,4.7,4 DL,Mike Catapano,25,2013,72,51,93,82,69,73,0.6,2 DL,Shelby Harris,24,2014,69,45,90,84,77,76,0.5,1 DL,Muhammad Wilkerson,26,2011,85,82,94,104,93,97,15.7,1 DL,Sheldon Richardson,25,2013,92,81,89,98,90,88,2.5,4 DL,Deon Simon,25,2015,75,48,73,93,71,85,0.6,2 LB,Darron Lee,21,2016,95,65,85,80,75,89,2.5,4 LB,David Harris,32,2007,81,90,96,85,70,88,7.2,3 LB,Trevor Reilly,28,2014,68,56,85,76,67,70,0.6,4 LB,Bruce Carter,28,2011,84,75,77,83,67,74,0.8,1 LB,Lorenzo Mauldin,23,2015,83,55,82,79,62,67,0.8,4 LB,Josh Martin,24,2013,62,60,90,76,77,61,0.6,2 LB,Julian Stanford,25,2012,62,68,87,81,56,60,0.7,1 LB,Erin Henderson,29,2008,58,81,87,82,60,79,2,2 LB,Calvin Pace,35,2003,65,85,92,81,80,84,2.4,2 END_PLAYERS Houston Texans,HOU QB,Ryan Griffin,26,2013,71,52,90,81,76,35,0.6,4 QB,Brandon Weeden,32,2012,90,70,89,91,69,20,2,2 QB,Tom Savage,26,2014,77,54,90,94,80,45,0.6,4 QB,Brock Osweiler,25,2012,85,60,96,95,77,20,18,4 RB,Alfred Blue,25,2014,72,70,79,84,84,60,0.6,4 RB,Lamar Miller,25,2012,81,77,87,67,92,85,6.5,4 RB,Kenny Hilliard,24,2015,70,46,76,87,82,54,0.5,2 RB,Jonathan Grimes,26,2012,62,62,91,69,86,82,0.7,1 RB,Jay Prosch,23,2014,72,56,95,75,80,47,0.6,4 WR,Cecil Shorts,28,2011,79,78,87,84,86,81,3,2 WR,Will Fuller,22,2016,95,75,85,85,96,97,2.5,4 WR,Keith Mumphery,24,2015,75,49,92,74,88,77,0.6,4 WR,Jaelen Strong,22,2015,88,45,87,86,91,59,0.8,4 WR,DeAndre Hopkins,24,2013,86,83,94,103,85,65,1.9,4 WR,Josh Lenz,25,2013,64,56,87,74,91,77,0.5,2 OL,Chris Clark,30,2008,58,78,88,87,78,89,3,2 OL,Andrew McDonald,27,2012,63,65,96,81,75,79,0.6,2 OL,Jeff Allen,26,2012,85,72,85,83,83,74,7,4 OL,Tony Bergstrom,29,2012,80,71,90,84,78,73,2.9,2 OL,Duane Brown,30,2008,81,91,93,91,87,93,8.9,6 OL,Xavier Su'a-Filo,25,2014,87,57,94,85,78,79,1.4,4 OL,Derek Newton,28,2011,70,77,85,86,96,79,5.3,5 OL,Dalton Freeman,26,2013,63,67,96,89,78,72,0.6,2 OL,Jeff Adams,26,2012,63,69,94,75,72,82,0.5,1 OL,Chad Slade,24,2015,65,57,91,82,78,74,0.5,3 OL,Karim Barton,24,2014,64,47,92,84,82,72,0.5,2 OL,Oday Aboushi,25,2013,77,71,95,78,84,77,0.6,4 OL,David Quessenberry,25,2013,72,63,95,80,84,75,0.6,4 K,Nick Novak,34,2005,57,78,92,86,91,60,1,1 K,Shane Lechler,39,2000,63,92,85,86,87,62,1.8,1 S,Eddie Pleasant,27,2012,61,67,94,74,87,80,1.1,2 S,Kurtis Drummond,24,2015,65,41,92,78,89,60,0.5,3 S,Lonnie Ballentine,23,2014,68,44,89,72,93,90,0.6,4 S,Antonio Allen,27,2012,65,73,83,81,87,71,0.8,1 CB,Robert Nelson,26,2014,63,46,90,74,89,54,0.6,2 CB,Kevin Johnson,23,2015,95,64,89,87,89,64,2.5,4 CB,Terrance Mitchell,24,2014,68,55,94,81,92,46,0.6,3 CB,AJ Bouye,24,2013,61,71,83,76,93,45,1.7,1 CB,Johnathan Joseph,32,2006,84,92,86,87,88,40,6.8,2 CB,Kareem Jackson,28,2010,88,84,90,95,90,55,8.5,4 CB,Andre Hal,24,2014,72,65,94,76,90,45,0.6,4 DL,Gerald Rivers,25,2013,63,52,88,71,65,64,0.6,2 DL,Jeoffrey Pagan,23,2014,72,52,80,87,72,85,0.6,4 DL,Christian Covington,22,2015,75,50,76,77,82,69,0.6,4 DL,JJ Watt,27,2011,89,92,97,107,109,107,16.7,6 DL,Vince Wilfork,34,2004,82,98,89,96,81,91,4.5,2 DL,Devon Still,26,2012,86,64,84,82,82,82,0.7,1 DL,Brandon Dunn,23,2014,64,52,90,78,70,81,0.6,2 LB,Max Bullough,24,2014,64,55,92,76,70,75,0.6,3 LB,Whitney Mercilus,25,2012,85,77,95,87,85,74,6.5,4 LB,Brian Cushing,29,2009,87,88,94,81,82,87,8.8,6 LB,Akeem Dent,28,2011,80,74,86,87,78,74,2.3,2 LB,Jadeveon Clowney,23,2014,102,65,76,87,90,65,5.6,4 LB,Benardrick McKinney,23,2015,90,67,94,89,81,57,1.3,4 LB,John Simon,25,2013,77,59,86,82,85,74,1.7,1 LB,Reshard Cliett,24,2015,75,40,86,78,64,50,0.6,4 END_PLAYERS Indianapolis Colts,IND QB,Scott Tolzien,28,2011,59,62,95,83,76,44,1.8,2 QB,Stephen Morris,23,2014,64,42,85,90,73,70,0.5,3 QB,Andrew Luck,26,2012,100,85,98,105,99,87,5.5,4 RB,Trey Williams,23,2015,63,46,81,37,90,84,0.5,2 RB,Tyler Varga,22,2015,63,55,90,78,83,42,0.5,3 RB,Jordan Todman,26,2011,71,70,85,61,90,81,0.8,1 RB,Frank Gore,33,2005,78,93,86,83,81,69,4,3 RB,Robert Turbin,26,2012,80,72,83,84,90,72,0.8,1 WR,Donte Moncrief,22,2014,82,66,91,83,92,63,0.7,4 WR,Phillip Dorsett,23,2015,88,59,77,82,96,82,2,4 WR,Josh Boyce,25,2013,83,51,90,72,92,65,0.5,1 WR,Brian Tyms,27,2012,61,68,92,79,88,66,0.6,1 WR,TY Hilton,26,2012,80,87,85,103,92,95,13,5 WR,Dwayne Allen,26,2012,85,75,87,82,75,45,7.4,4 OL,Jeremy Vujnovich,25,2014,64,42,88,90,72,78,0.5,1 OL,Lance Louis,31,2009,65,75,90,86,76,70,0.7,2 OL,Jonotthan Harrison,24,2014,62,72,94,87,82,72,0.5,3 OL,Joe Reitz,29,2008,59,77,94,87,79,80,2.7,3 OL,Hugh Thornton,24,2013,81,73,85,91,76,77,0.7,4 OL,Ryan Kelly,23,2016,95,65,85,85,85,81,2.6,4 OL,Anthony Castonzo,27,2011,89,85,87,88,85,96,11,4 OL,Kevin Graf,25,2014,64,52,92,85,80,72,0.6,2 OL,Mitchell Van Dyk,25,2014,69,54,92,75,83,69,0.5,1 OL,Jack Mewhort,24,2014,87,73,93,89,87,78,0.9,4 K,Adam Vinatieri,43,2096,44,93,90,88,91,60,3,2 K,Pat McAfee,29,2009,67,88,95,97,92,68,2.9,5 S,Mike Adams,35,2004,52,83,90,88,85,64,2.4,2 S,Clayton Geathers,24,2015,83,47,91,69,90,87,0.7,4 S,Winston Guy,26,2012,71,65,88,72,88,83,0.7,2 S,Dezmen Southward,24,2014,88,65,92,75,93,79,0.6,2 CB,Tevin Mitchel,23,2015,73,49,77,79,91,35,0.6,4 CB,Vontae Davis,28,2009,82,89,96,104,92,66,9,4 CB,Patrick Robinson,28,2010,83,79,90,77,91,49,4.5,3 CB,Darius Butler,30,2009,82,79,95,77,93,65,2.5,2 CB,D'Joun Smith,23,2015,88,49,90,83,91,42,0.8,4 CB,Jalil Brown,28,2011,79,56,90,75,93,63,0.8,2 DL,David Parry,24,2015,78,55,78,91,71,81,0.6,4 DL,Zach Kerr,25,2014,62,62,82,87,66,75,0.5,3 DL,Arthur Jones,30,2010,73,74,85,91,79,82,6.6,5 DL,Kendall Langford,30,2008,81,87,92,86,75,82,4.3,4 DL,Ricky Lumpkin,27,2011,64,70,84,88,74,78,0.6,2 DL,Joe Vellano,27,2013,61,69,93,85,79,82,0.6,1 DL,Henry Anderson,24,2015,83,64,82,81,79,85,0.7,4 DL,Billy Winn,27,2012,65,72,87,78,56,80,0.5,4 LB,Nate Irving,28,2011,84,75,82,89,78,79,2.4,3 LB,Robert Mathis,35,2003,66,93,89,80,78,93,9,4 LB,D'Qwell Jackson,32,2006,79,92,84,87,77,91,5.5,4 LB,Erik Walden,30,2008,71,76,92,80,88,80,4,4 LB,Amarlo Herrera,24,2015,74,53,92,79,74,72,0.5,2 LB,Sio Moore,26,2013,86,73,89,82,84,75,0.8,4 LB,Trent Cole,33,2005,68,88,89,77,72,89,4.3,1 END_PLAYERS Jacksonville Jaguars,JAX QB,Blake Bortles,24,2014,102,67,96,91,74,65,5.2,4 QB,Chad Henne,30,2008,81,73,90,89,70,20,4,2 RB,Joe Banyard,27,2012,61,53,92,66,88,76,0.6,2 RB,TJ Yeldon,22,2015,88,60,84,79,88,74,1.5,4 RB,Corey Grant,24,2015,63,42,82,38,96,71,0.5,3 RB,Chris Ivory,28,2010,58,78,83,96,86,64,6.4,5 RB,Jonas Gray,25,2012,62,62,91,92,84,55,0.6,2 RB,Denard Robinson,25,2013,76,72,84,52,90,75,0.6,4 WR,Arrelious Benn,27,2010,84,66,70,72,83,63,0.6,2 WR,Bryan Walters,28,2010,60,71,92,79,81,74,0.7,2 WR,Marcedes Lewis,32,2006,80,87,93,74,73,42,4,3 WR,Justin Blackmon,26,2012,103,45,94,86,88,70,4.6,4 WR,Neal Sterling,24,2015,73,44,90,74,85,59,0.6,4 WR,Allen Robinson,22,2014,87,70,89,84,85,66,0.9,4 WR,Julius Thomas,28,2011,74,76,90,88,84,67,9.2,5 WR,Marqise Lee,24,2014,87,64,85,79,88,86,1.3,4 WR,Allen Hurns,24,2014,62,67,92,90,87,70,10.2,4 WR,Rashad Greene,23,2015,78,58,88,79,88,85,0.6,4 OL,Jeff Linkenbach,29,2010,58,76,92,85,73,81,0.5,1 OL,AJ Cann,24,2015,88,63,93,89,85,79,0.8,4 OL,Mackenzy Bernadeau,30,2008,61,78,93,96,84,72,1.5,2 OL,Luke Bowanko,25,2014,72,75,92,86,86,74,0.6,4 OL,Kadeem Edwards,25,2014,77,47,93,86,82,76,0.6,2 OL,Kelvin Beachum,27,2012,65,82,95,84,83,97,9,5 OL,Josh Wells,25,2014,62,61,90,83,86,76,0.5,3 OL,Patrick Omameh,26,2013,62,70,92,82,80,75,0.5,1 OL,Luke Joeckel,24,2013,101,79,87,87,85,78,5.3,4 OL,Tyler Shatley,25,2014,63,54,92,95,77,73,0.5,3 OL,Brandon Linder,24,2014,82,76,93,88,85,93,0.7,4 OL,Jermey Parnell,29,2009,59,75,88,85,89,85,6.4,5 K,Brad Nortman,26,2012,70,77,93,89,93,84,2.2,4 K,Jason Myers,25,2015,63,65,85,80,80,70,0.5,3 S,James Sample,23,2015,83,49,85,71,89,75,0.7,4 S,Josh Evans,25,2013,76,71,89,71,86,87,0.6,4 S,Craig Loston,26,2014,62,57,83,72,93,85,0.5,3 S,Earl Wolff,26,2013,77,67,90,72,93,73,1.3,1 S,Tashaun Gipson,25,2012,60,81,94,94,88,72,7.2,5 CB,Prince Amukamara,27,2011,89,77,90,87,92,65,5.5,1 CB,Davon House,26,2011,74,77,95,82,91,56,6.1,4 CB,Jalen Ramsey,21,2016,105,65,85,83,95,70,5.8,4 CB,Demetrius McCray,25,2013,71,71,94,77,93,59,0.6,4 CB,Aaron Colvin,24,2014,82,64,76,84,87,55,0.7,4 CB,Dwayne Gratz,26,2013,86,69,97,77,93,72,0.8,4 CB,Peyton Thompson,25,2012,63,55,90,70,89,34,0.6,2 DL,Roy Miller,28,2009,77,76,96,87,76,79,4.1,4 DL,Sen'Derrick Marks,29,2009,82,84,86,82,93,75,4.5,4 DL,Malik Jackson,26,2012,75,74,90,77,91,83,14.3,6 DL,Tyson Alualu,29,2010,88,81,95,87,78,77,3,2 DL,Dante Fowler Jr,21,2015,103,52,79,87,72,73,5.9,4 DL,Jared Odrick,28,2010,84,83,77,83,87,77,8.5,5 DL,Ryan Davis,27,2012,61,69,90,74,76,64,2.6,1 DL,Chris Smith,24,2014,77,56,93,85,82,65,0.6,4 DL,Abry Jones,24,2013,61,64,87,86,75,69,2.6,1 LB,Hayes Pullard,24,2015,73,60,94,75,50,72,0.6,4 LB,Telvin Smith,25,2014,77,73,90,86,65,70,0.6,4 LB,Joplo Bartu,25,2013,61,75,90,82,62,74,0.6,2 LB,Paul Posluszny,31,2007,80,92,87,88,65,94,5,3 LB,Jordan Tripp,25,2014,77,45,90,75,72,74,0.6,2 LB,Dan Skuta,30,2009,57,80,92,87,83,82,4.1,5 LB,Bjoern Werner,25,2013,91,73,92,76,82,74,0.5,1 LB,Sean Porter,25,2013,81,60,78,77,66,69,0.6,2 END_PLAYERS Tennessee Titans,TEN QB,Matt Cassel,34,2005,58,80,84,82,73,36,2,1 QB,Alex Tanney,28,2012,63,49,88,86,76,49,0.5,2 QB,Marcus Mariota,22,2015,103,60,93,89,88,79,6.1,4 RB,Antonio Andrews,23,2014,62,49,92,88,78,45,0.6,1 RB,Dexter McCluster,27,2010,83,76,85,39,88,85,3,3 RB,David Cobb,23,2015,78,60,90,86,84,62,0.6,4 RB,Jalston Fowler,25,2015,83,60,75,72,77,39,0.7,4 RB,DeMarco Murray,28,2011,84,89,85,96,89,97,6.3,4 RB,Bishop Sankey,23,2014,87,69,86,56,89,80,1,4 WR,Harry Douglas,30,2008,76,81,88,87,84,88,3.8,3 WR,Delanie Walker,31,2006,64,80,86,78,83,65,6.7,2 WR,Tre McBride,23,2015,68,39,87,86,92,79,0.5,2 WR,Kendall Wright,26,2012,90,82,96,90,90,85,2.1,4 WR,Rishard Matthews,26,2012,65,70,89,77,83,57,5,3 WR,Justin Hunter,25,2013,86,69,84,72,90,74,1.4,4 WR,Dorial Green-Beckham,23,2015,88,49,87,85,89,69,1.4,4 WR,Anthony Fasano,32,2006,79,81,88,75,71,16,2.6,2 OL,Brian Schwenke,25,2013,81,74,92,91,80,74,0.7,4 OL,Chance Warmack,24,2013,91,78,98,92,93,77,3,4 OL,Josue Matias,23,2015,64,55,90,78,73,81,0.5,2 OL,Jamon Meredith,30,2009,65,71,90,87,78,73,0.7,2 OL,Quinton Spain,24,2015,63,55,95,84,80,70,0.5,3 OL,Andy Gallik,24,2015,73,60,92,86,73,79,0.6,4 OL,Jeremiah Poutasi,21,2015,88,56,92,86,82,73,0.8,4 OL,Jack Conklin,21,2016,105,70,85,91,91,84,4,4 OL,Taylor Lewan,24,2014,92,72,89,90,91,84,2.9,4 OL,Ben Jones,26,2012,80,77,92,87,82,76,4.4,4 K,Ryan Succop,29,2009,62,80,96,90,85,66,2.4,3 K,Brett Kern,30,2008,56,84,78,90,94,72,3,5 S,Marqueston Huff,24,2014,82,65,95,76,91,65,0.7,4 S,Da'Norris Searcy,27,2011,79,76,92,80,86,75,5.9,4 S,Daimion Stafford,25,2013,66,57,92,74,87,67,0.6,4 S,Rashad Johnson,30,2009,77,78,95,71,91,82,2,1 CB,Brandon Harris,26,2013,65,67,92,77,90,59,0.7,1 CB,Brice McCain,29,2009,68,76,88,82,92,46,2.2,2 CB,Jason McCourty,28,2009,67,85,92,87,94,60,7.2,6 CB,Perrish Cox,29,2010,74,80,92,86,87,44,5,3 CB,BW Webb,26,2013,81,61,90,73,93,40,0.6,2 CB,Blidi Wreh-Wilson,26,2013,86,67,85,78,91,57,0.7,4 CB,Antwon Blake,25,2012,60,60,92,74,97,65,1.5,1 DL,Al Woods,29,2010,78,73,88,93,71,82,3.5,3 DL,DaQuan Jones,24,2014,82,64,90,85,78,86,0.7,4 DL,Jurrell Casey,26,2011,79,84,92,91,92,89,9,4 DL,Karl Klug,28,2011,74,71,84,80,88,73,1.9,2 DL,Angelo Blackson,23,2015,83,53,90,76,74,81,0.7,4 DL,Ropati Pitoitua,31,2008,58,78,80,91,76,91,2.9,3 LB,Avery Williamson,24,2014,77,75,92,89,70,74,0.6,4 LB,Deiontrez Mount,23,2015,73,46,88,79,75,42,0.6,4 LB,Curtis Grant,23,2015,64,56,76,77,62,51,0.5,1 LB,Derrick Morgan,27,2010,88,82,87,76,93,85,6.8,4 LB,Wesley Woodyard,29,2008,56,83,95,80,56,86,3.9,4 LB,David Bass,25,2013,66,65,95,67,70,58,0.5,2 LB,Sean Spence,27,2012,81,72,76,77,65,75,2.5,1 LB,Brian Orakpo,29,2009,87,82,81,85,93,79,7.8,4 END_PLAYERS Denver Broncos,DEN QB,Paxton Lynch,22,2016,90,65,85,94,88,50,2.4,4 QB,Trevor Siemian,24,2015,68,52,78,79,74,59,0.6,4 QB,Mark Sanchez,29,2009,97,74,84,86,79,47,4.5,2 RB,Kapri Bibbs,23,2014,63,50,92,84,83,62,0.5,1 RB,Juwan Thompson,24,2014,62,61,94,81,86,74,0.5,3 RB,CJ Anderson,25,2013,61,73,94,92,84,87,4.5,4 RB,Ronnie Hillman,24,2012,85,74,78,52,90,77,2,1 RB,Cyrus Gray,26,2012,71,61,90,53,88,79,0.7,1 WR,Jordan Norwood,29,2009,58,69,87,75,82,87,0.9,1 WR,Demaryius Thomas,28,2010,88,88,89,104,90,65,14,5 WR,Virgil Green,27,2011,69,75,88,74,85,79,2.8,3 WR,Emmanuel Sanders,29,2010,78,89,86,93,89,89,5,3 WR,Cody Latimer,23,2014,87,49,82,86,90,55,0.9,4 WR,Bennie Fowler,25,2014,63,58,82,71,93,63,0.5,1 WR,DeVier Posey,26,2012,86,59,85,75,91,64,0.7,1 OL,Sam Brenner,26,2013,61,61,89,87,81,73,0.6,1 OL,Russell Okung,28,2010,98,87,82,88,84,89,10.6,5 OL,Ty Sambrailo,24,2015,88,62,90,77,77,81,1,4 OL,Michael Schofield,25,2014,82,66,94,78,75,79,0.7,4 OL,Matt Paradis,26,2014,73,54,85,81,81,74,0.5,1 OL,Max Garcia,24,2015,78,64,88,89,73,77,0.7,4 OL,Donald Stephenson,27,2012,85,70,84,85,83,74,4.7,3 OL,James Ferentz,27,2014,63,62,90,79,73,81,0.5,2 OL,Robert Myers,24,2015,73,46,86,87,76,71,0.5,2 OL,Darrion Weems,27,2012,62,65,87,87,77,79,0.6,1 K,Brandon McManus,24,2013,62,72,95,107,88,85,0.5,2 K,Britton Colquitt,31,2009,57,78,92,87,89,66,3.9,3 S,Brandian Ross,26,2011,60,74,93,74,91,51,0.7,1 S,Darian Stewart,27,2010,58,80,89,81,87,90,2.1,2 S,Shiloh Keo,28,2011,75,67,90,74,88,89,0.8,1 S,TJ Ward,29,2010,83,81,90,89,90,91,5.6,4 S,Josh Bush,27,2012,65,64,88,78,90,61,0.6,2 CB,Lorenzo Doss,22,2015,78,50,92,78,92,29,0.6,4 CB,Kayvon Webster,25,2013,81,62,91,74,93,70,0.7,4 CB,Taurean Nixon,25,2015,68,42,85,71,90,47,0.5,3 CB,Aqib Talib,30,2008,86,91,87,100,92,67,9.5,6 CB,Bradley Roby,24,2014,87,71,87,94,93,72,1.7,4 DL,Jared Crick,26,2012,75,75,74,78,83,82,2,2 DL,Darius Kilgo,24,2015,73,43,88,92,69,87,0.6,4 DL,Derek Wolfe,26,2012,85,78,77,89,81,84,9.2,4 DL,Vance Walker,29,2009,67,79,91,79,84,79,2,2 DL,Antonio Smith,34,2004,65,87,96,85,87,65,2,1 DL,Phil Taylor,28,2011,90,74,84,92,82,86,0.8,1 DL,Sylvester Williams,27,2013,86,72,93,84,76,78,1.9,4 LB,Corey Nelson,24,2014,67,57,82,78,77,47,0.6,4 LB,Shane Ray,23,2015,93,61,89,74,75,62,2.3,4 LB,Brandon Marshall,26,2012,75,83,89,89,74,84,8.7,3 LB,DeMarcus Ware,33,2005,83,87,90,73,90,85,10,3 LB,Dekoda Watson,28,2010,68,69,84,76,64,67,0.8,1 LB,Todd Davis,24,2014,62,53,94,83,62,67,0.5,2 LB,Von Miller,27,2011,99,86,93,104,99,97,14.1,1 END_PLAYERS Kansas City Chiefs,KC QB,Tyler Maguirre,25,2014,77,53,79,85,82,41,0.6,4 QB,Tyree Natee,24,2013,61,52,87,93,69,20,1,2 QB,Deondre Francois,21,2015,99,99,99,84,82,40,17,4 RB,Dalvin Cook,21,2015,99,96,97,67,78,50,2.3,3 RB,Trey Millard,24,2014,68,45,84,78,84,50,0.5,1 RB,Spencer Ware,24,2013,72,55,92,85,84,47,1.8,2 RB,Knile Davis,24,2013,81,72,75,91,92,74,0.7,4 RB,Charcandrick West,25,2014,62,44,87,65,90,74,1.8,2 RB,Jamaal Charles,25,2013,91,91,87,69,92,95,9.1,2 RB,Darrin Reaves,23,2014,63,50,92,46,87,75,0.5,1 WR,Travis Rudolph,19,2015,99,99,99,92,90,84,0.6,2 WR,De'Anthony Thomas,23,2014,82,68,73,81,92,92,0.7,4 WR,Travis Kelce,22,2015,99,99,92,94,84,65,9.4,5 WR,Jeremy Maclin,28,2009,87,87,83,93,87,91,11,5 WR,Rod Streater,28,2012,62,77,90,85,88,74,0.8,1 WR,Albert Wilson,23,2014,62,69,91,80,91,85,0.5,3 WR,Chris Conley,23,2015,83,56,90,79,94,64,0.8,4 WR,Da'Ron Brown,24,2015,69,46,93,82,88,75,0.5,1 WR,Jason Avant,33,2006,65,84,92,84,79,54,1,1 OL,Eric Fisher,25,2013,101,75,91,85,85,80,5.5,4 OL,Mitch Morse,24,2015,88,62,87,92,72,78,1.2,4 OL,Laurent Duvernay-Tardif,25,2014,72,48,93,92,77,74,0.6,4 OL,Reid Fragel,25,2013,69,59,90,90,80,70,0.6,1 OL,Mitchell Schwartz,27,2012,85,78,84,85,72,89,6.6,5 OL,Zach Fulton,24,2014,72,68,92,85,82,78,0.6,4 OL,Jah Reid,27,2011,79,66,95,91,83,75,3.4,3 OL,Jordan Devey,28,2013,63,72,95,81,76,76,0.6,1 K,Dustin Colquitt,34,2005,73,82,95,89,94,65,3.8,5 K,Cairo Santos,24,2014,101,99,95,85,88,100,0.5,3 S,Daniel Sorensen,26,2014,62,45,93,65,89,66,0.5,2 S,Eric Berry,21,2015,98,105,99,75,89,84,10.8,1 S,Stevie Brown,28,2010,65,74,92,72,91,77,0.8,1 S,Ron Parker,28,2011,99,76,88,82,91,72,5,5 CB,Jamell Fleming,27,2012,80,60,81,85,88,64,0.8,1 CB,Deveron Carr,25,2013,63,53,91,73,90,68,0.5,1 CB,Steven Nelson,23,2015,83,52,94,82,90,60,0.7,4 CB,Marcus Peters,23,2015,99,99,99,86,89,90,2.4,4 CB,Phillip Gaines,25,2014,82,66,88,87,94,40,0.7,4 CB,Marcus Cooper,26,2013,66,67,93,76,88,74,0.6,4 DL,Dontari Poe,25,2012,90,78,93,97,88,90,2.8,4 DL,Jaye Howard,27,2012,80,72,87,76,86,73,5,2 DL,DeMarcus Walker,19,2015,99,97,99,92,99,85,0.7,1 DL,Jimmy Staten,25,2014,79,50,89,86,71,84,0.5,1 DL,Nick Williams,25,2013,62,68,93,83,80,72,0.5,2 DL,Allen Bailey,27,2011,79,76,92,89,84,78,6.3,4 DL,David King,26,2013,68,62,92,83,75,81,0.6,1 DL,Rakeem Nunez-Roches,22,2015,73,55,78,80,74,76,0.6,4 LB,Dezman Moses,27,2012,62,63,91,71,83,62,0.7,1 LB,Ramik Wilson,23,2015,83,58,92,84,62,70,0.7,4 LB,Tamba Hali,18,2016,99,92,95,82,95,94,7,3 LB,Josh Mauga,29,2009,58,76,75,82,72,79,2.8,3 LB,Derrick Johnson,20,2015,99,93,99,93,61,94,7,3 LB,Justin Houston,21,2015,99,95,93,92,98,88,16.8,6 LB,Dee Ford,25,2014,92,97,97,76,73,63,2,4 LB,DJ Alexander,24,2015,78,46,76,77,52,53,0.6,4 LB,Andy Mulumba,26,2013,62,62,88,72,68,63,0.6,1 LB,Frank Zombo,29,2010,58,77,85,82,74,74,1.2,3 LB,Jonathan Massaquoi,28,2012,76,72,91,73,83,66,0.7,1 END_PLAYERS Oakland Raiders,OAK QB,Matt McGloin,26,2013,61,71,92,79,72,45,2.6,1 QB,Derek Carr,25,2014,87,70,92,96,80,51,1.3,4 RB,Latavius Murray,25,2013,71,66,78,85,92,63,0.6,4 RB,Marcel Reece,30,2008,58,83,95,78,87,60,3.7,3 RB,Roy Helu Jr,27,2011,79,79,79,63,90,75,2.1,2 WR,Seth Roberts,25,2014,63,61,90,72,90,72,0.5,1 WR,Amari Cooper,22,2015,103,68,84,97,92,86,5.7,4 WR,Andre Holmes,28,2011,60,71,82,80,86,74,2,1 WR,Michael Crabtree,28,2009,87,82,85,87,84,72,8.5,4 WR,Nathan Palmer,27,2012,63,60,90,74,92,84,0.5,1 OL,Donald Penn,33,2006,54,90,89,94,83,95,6,2 OL,Rodney Hudson,26,2011,84,85,92,82,90,89,8.9,5 OL,Kelechi Osemele,26,2012,85,81,80,92,94,84,11.7,5 OL,Khalif Barnes,34,2005,65,83,85,90,72,77,1.5,1 OL,Austin Howard,29,2010,58,81,90,89,84,71,6,5 OL,Gabe Jackson,24,2014,82,75,92,91,85,91,0.7,4 OL,Menelik Watson,27,2013,86,69,92,84,78,72,1.2,4 OL,Jon Feliciano,24,2015,78,64,90,81,78,73,0.7,4 K,Marquette King,27,2012,60,75,90,94,90,82,3.3,5 K,Giorgio Tavecchio,25,2012,64,55,90,90,85,72,0.5,2 K,Sebastian Janikowski,38,2000,78,92,68,107,83,65,3.8,4 S,Reggie Nelson,32,2007,85,81,95,87,92,74,4.3,2 S,Karl Joseph,22,2016,95,65,85,89,92,85,3,4 S,Nate Allen,28,2010,83,79,81,81,89,67,3,1 S,Larry Asante,28,2010,65,64,87,68,86,79,1.5,1 S,Chris Hackett,22,2015,64,39,93,66,89,62,0.5,1 S,Brynden Trawick,26,2013,61,48,92,71,83,83,0.8,1 S,Charles Woodson,39,1997,65,94,85,99,88,55,3.2,1 S,Dewey McDonald,26,2014,63,48,93,73,89,80,0.6,2 CB,Neiko Thorpe,26,2012,61,51,92,71,90,35,2.6,1 CB,Dexter McDonald,24,2015,68,46,90,73,91,61,0.6,4 CB,David Amerson,24,2013,86,68,91,77,92,63,1,4 CB,Sean Smith,28,2009,82,88,96,105,90,71,9.5,4 CB,Keith McGill,27,2014,82,49,84,84,88,71,0.7,4 CB,DJ Hayden,25,2013,91,72,76,83,89,77,2.6,4 DL,Justin Ellis,25,2014,82,72,88,84,75,84,0.7,4 DL,Denico Autry,25,2014,62,62,88,75,80,73,0.6,1 DL,Stacy McGee,26,2013,71,69,85,85,77,80,0.6,4 DL,Dan Williams,29,2010,83,87,94,96,82,95,6.3,4 DL,Mario Edwards Jr,22,2015,88,48,83,88,79,87,1.5,4 DL,Damontre Moore,23,2013,82,65,90,65,89,64,0.7,1 LB,Colton Underwood,24,2014,64,64,88,78,82,63,0.5,1 LB,John Lotulelei,24,2013,61,62,87,83,65,64,0.6,2 LB,Neiron Ball,23,2015,78,46,67,79,71,48,0.6,4 LB,Khalil Mack,25,2014,103,78,96,105,101,89,4.7,4 LB,Ben Heeney,23,2015,78,57,85,79,64,69,0.6,4 LB,Malcolm Smith,26,2011,64,77,88,77,61,75,3.5,2 LB,Daren Bates,25,2013,61,64,88,79,54,45,0.7,1 LB,Korey Toomer,27,2012,77,57,75,73,57,41,0.6,1 LB,Bruce Irvin,26,2012,90,75,94,89,91,75,9.3,4 LB,Aldon Smith,26,2011,99,76,88,88,95,78,5.8,2 END_PLAYERS San Diego Chargers,SD QB,Philip Rivers,34,2004,92,89,98,87,90,20,20.8,4 QB,Kellen Clemens,33,2006,80,70,85,83,73,20,1.1,1 QB,Zach Mettenberger,24,2014,72,62,82,95,76,39,0.6,4 RB,Danny Woodhead,31,2008,57,84,79,42,88,83,2.8,2 RB,Melvin Gordon,23,2015,93,63,92,69,91,89,2.7,4 RB,Donald Brown,29,2009,83,78,80,81,86,52,1,1 RB,Dreamius Smith,23,2015,64,44,84,78,90,64,0.5,3 RB,Branden Oliver,25,2014,63,65,90,67,87,83,0.5,3 WR,Isaiah Burse,24,2014,63,47,93,75,86,83,0.5,1 WR,Stevie Johnson,29,2008,67,87,95,87,86,79,3.5,3 WR,Malcom Floyd,34,2004,65,88,88,88,82,40,3.9,3 WR,Javontee Herndon,24,2014,64,53,89,72,90,85,0.5,2 WR,Travis Benjamin,26,2012,80,75,82,76,93,87,6,4 WR,Dontrelle Inman,27,2011,63,67,92,79,87,72,0.6,1 WR,Antonio Gates,36,2003,51,95,77,101,78,69,5.5,2 WR,Keenan Allen,24,2013,81,78,88,103,85,64,11.3,4 WR,Torrence Allen,25,2014,63,62,91,81,91,66,0.5,1 OL,Trevor Robinson,26,2012,61,73,90,89,81,73,0.9,2 OL,Chris Watt,25,2014,82,68,87,90,86,75,0.7,4 OL,DJ Fluker,25,2013,91,76,92,91,89,72,2.9,4 OL,Kenny Wiggins,27,2011,62,73,92,84,81,72,0.6,1 OL,JD Walton,29,2010,65,80,89,78,72,82,0.7,1 OL,Joe Barksdale,28,2011,79,77,90,88,87,74,5.9,4 OL,King Dunlap,30,2008,61,84,82,95,94,82,7,4 OL,Chris Hairston,27,2011,81,74,92,87,85,81,1.5,2 OL,Orlando Franklin,28,2011,84,82,88,93,87,90,7.3,5 OL,Johnnie Troutman,28,2012,65,75,82,92,73,72,0.6,4 OL,Matt Slauson,30,2009,67,84,85,91,89,78,0.5,2 K,Kasey Redfern,24,2014,64,65,85,80,80,70,0.5,1 K,Josh Lambo,25,2015,63,44,92,88,86,74,0.5,3 S,Darrell Stuckey,26,2010,79,65,75,81,87,64,1.9,4 S,Jahleel Addae,26,2013,61,72,92,75,86,81,2.6,1 S,Dwight Lowery,30,2008,76,80,90,78,89,54,2.4,3 S,Adrian Phillips,24,2014,64,52,92,74,89,64,0.6,2 CB,Greg Ducre,24,2014,63,54,88,70,90,47,0.5,3 CB,Brandon Flowers,30,2008,81,92,90,92,92,76,9.1,4 CB,Casey Hayward,26,2012,85,80,87,95,88,45,5.1,3 CB,Richard Crawford,25,2012,72,57,90,80,89,42,0.6,1 CB,Jason Verrett,25,2014,87,72,86,85,93,65,2,4 CB,Steve Williams,25,2013,76,67,86,73,92,42,0.6,4 CB,Craig Mager,24,2015,83,45,92,79,92,62,0.7,4 CB,Cassius Vaughn,28,2010,65,73,88,76,89,35,0.7,1 DL,Ryan Carrethers,25,2014,77,59,94,94,72,89,0.6,4 DL,Darius Philon,22,2015,73,40,89,79,63,64,0.6,4 DL,Tenny Palepoi,25,2014,63,65,88,89,77,77,0.5,3 DL,Corey Liuget,26,2011,89,83,95,91,84,88,10.3,5 DL,Brandon Mebane,31,2007,75,89,88,92,81,85,4.5,3 DL,Damion Square,27,2013,62,69,87,80,81,68,0.7,1 DL,Sean Lissemore,28,2010,64,78,90,84,79,76,2,3 DL,Ben Gardner,25,2014,68,52,83,74,79,76,0.5,1 LB,Tourek Williams,25,2013,71,66,84,79,84,57,0.6,4 LB,Joe Mays,30,2008,65,81,95,87,76,77,0.9,1 LB,Denzel Perryman,22,2015,88,66,93,84,68,71,1.2,4 LB,Jeremiah Attaochu,23,2014,87,67,90,72,89,65,1.1,4 LB,Cordarro Law,27,2012,65,62,90,71,69,55,0.5,2 LB,Manti Te'o,25,2013,86,77,91,85,71,84,1.3,4 LB,Melvin Ingram,27,2012,91,73,88,78,78,68,2.1,4 LB,Joey Bosa,20,2016,105,65,85,81,92,76,6.5,4 LB,Kyle Emanuel,24,2015,78,47,92,70,84,62,0.6,4 END_PLAYERS Chicago Bears,CHI QB,David Fales,25,2014,73,54,94,83,81,42,0.6,2 QB,Brian Hoyer,30,2009,57,73,86,84,74,40,2,1 QB,Jay Cutler,33,2006,84,70,90,98,76,25,18.1,7 RB,Ka'Deem Carey,23,2014,82,65,90,84,82,72,0.7,4 RB,Jeremy Langford,24,2015,83,49,88,81,92,57,0.7,4 RB,Senorise Perry,24,2014,62,51,83,44,92,74,0.5,3 RB,Jacquizz Rodgers,26,2011,74,75,87,78,86,73,0.8,1 WR,Eddie Royal,30,2008,81,87,90,86,88,88,5,3 WR,Marquess Wilson,23,2013,66,67,92,81,87,74,0.6,4 WR,Marc Mariani,29,2010,68,78,87,72,86,85,0.8,1 WR,Deonte Thompson,27,2012,61,60,86,69,93,74,0.8,1 WR,Kevin White,22,2015,103,53,92,88,94,67,4.1,4 WR,Zach Miller,31,2009,68,66,82,72,84,70,2.8,2 WR,Alshon Jeffery,26,2012,85,82,91,93,88,66,14.6,1 OL,Martin Wallace,26,2013,63,60,90,83,80,72,0.5,1 OL,Kyle Long,27,2013,91,76,89,84,83,92,2.1,4 OL,Hroniss Grasu,24,2015,88,62,87,76,74,83,0.8,4 OL,Charles Leno,24,2014,67,66,90,79,75,78,0.6,4 OL,Ted Larsen,29,2010,68,80,92,79,83,78,1.7,1 OL,Will Montgomery,33,2006,65,88,92,92,79,87,1,1 OL,Jason Weaver,27,2013,63,61,88,88,77,74,0.5,2 OL,Bobby Massie,26,2012,80,75,90,83,83,80,6,3 OL,Nate Chandler,27,2012,61,71,88,83,83,72,0.5,1 OL,Nick Becton,26,2013,62,57,90,76,73,76,0.7,1 K,Pat O'Donnell,25,2014,72,72,85,91,87,87,0.6,4 K,Robbie Gould,34,2005,53,91,90,104,96,54,3.8,4 S,Ryan Mundy,31,2008,65,80,91,74,86,85,1.5,2 S,Antrel Rolle,33,2005,65,87,89,81,88,60,3.8,3 S,Omar Bolden,27,2012,80,61,74,74,87,51,0.8,1 S,Adrian Amos,23,2015,78,42,92,81,92,55,0.6,4 S,Chris Prosinski,29,2011,79,70,93,70,90,67,0.8,1 CB,Alan Ball,31,2007,65,82,87,87,86,58,3,1 CB,Bryce Callahan,24,2015,63,41,88,70,94,41,0.5,2 CB,Demontre Hurst,25,2013,62,64,92,79,91,35,0.6,2 CB,Tracy Porter,29,2008,81,79,76,71,92,40,4,3 CB,Kyle Fuller,24,2014,92,75,88,86,92,73,2.4,4 CB,Sherrick McManis,28,2010,73,65,76,79,89,67,1.4,2 DL,Greg Scruggs,25,2012,66,55,90,81,81,66,0.7,2 DL,Eddie Goldman,22,2015,88,60,85,81,77,85,1.4,4 DL,Mitch Unrein,29,2010,59,73,88,84,79,75,1.1,2 DL,Ego Ferguson,24,2014,87,67,89,83,76,84,1,4 DL,Will Sutton,24,2014,82,65,87,82,81,80,0.7,4 DL,Akiem Hicks,26,2012,80,76,93,82,86,83,5,2 LB,Jerrell Freeman,30,2008,60,77,92,83,79,80,4,3 LB,Lamin Barrow,25,2014,77,55,93,78,59,64,0.6,2 LB,Lamarr Houston,28,2010,83,82,87,82,83,83,7,5 LB,Sam Acho,27,2011,79,71,95,82,82,76,0.8,1 LB,Willie Young,30,2010,68,76,90,73,72,74,3,3 LB,Danny Trevathan,26,2012,70,78,94,92,75,83,6.1,4 LB,Pernell McPhee,27,2011,74,85,87,82,96,85,7.8,5 LB,Leonard Floyd,23,2016,105,65,85,80,85,80,3.9,4 LB,Cornelius Washington,26,2013,71,60,87,91,86,77,0.6,4 LB,Christian Jones,25,2014,62,69,94,76,57,60,0.5,3 END_PLAYERS Detroit Lions,DET QB,Matthew Stafford,28,2009,97,76,84,99,85,39,17.7,3 QB,Dan Orlovsky,32,2005,69,70,91,79,72,20,1.1,1 RB,George Winn,25,2013,62,54,90,86,87,66,0.6,1 RB,Zach Zenner,24,2015,63,51,88,82,86,48,0.5,3 RB,Stevan Ridley,27,2011,84,74,82,90,81,69,0.8,1 RB,Ameer Abdullah,23,2015,88,61,84,61,87,87,1,4 RB,Theo Riddick,25,2013,71,68,92,64,82,87,0.6,4 WR,Eric Ebron,23,2014,92,62,90,78,86,75,3.1,4 WR,Ryan Spadola,25,2013,63,52,92,76,88,72,0.6,2 WR,Brandon Pettigrew,31,2009,87,81,89,75,75,40,4,4 WR,Lance Moore,32,2005,65,84,86,81,82,77,1.1,1 WR,Corey Fuller,25,2013,77,65,90,78,90,79,0.6,1 WR,Andre Caldwell,31,2008,76,79,75,76,89,85,0.9,1 WR,Jeremy Kerley,27,2011,74,81,90,86,84,90,0.9,1 WR,TJ Jones,23,2014,73,51,94,80,89,81,0.6,4 WR,Golden Tate,27,2010,83,85,89,92,88,98,6.2,5 WR,Marvin Jones,26,2012,75,74,75,84,88,75,8,5 WR,Andre Roberts,28,2010,79,77,93,78,89,85,0.5,1 OL,Larry Warford,25,2013,86,79,97,89,82,94,0.8,4 OL,Michael Ola,28,2014,62,70,92,84,76,79,0.6,2 OL,Cornelius Lucas,24,2014,62,69,92,75,75,79,0.5,3 OL,Corey Robinson,24,2015,68,46,91,89,79,79,0.6,4 OL,Gabe Ikard,25,2014,62,71,92,73,73,76,0.6,2 OL,Riley Reiff,27,2012,90,77,93,87,89,87,2,4 OL,Taylor Decker,21,2016,95,65,85,85,94,81,2.7,4 OL,Laken Tomlinson,24,2015,88,64,92,87,85,78,2.1,4 OL,Travis Swanson,25,2014,82,73,94,82,85,73,0.7,4 OL,Geoff Schwartz,29,2008,62,76,79,91,86,75,0.8,1 K,Sam Martin,26,2013,76,80,92,96,95,72,0.6,4 K,Matt Prater,31,2006,55,79,85,96,89,71,3,3 S,Tavon Wilson,26,2012,85,68,95,78,87,69,1.1,2 S,James Ihedigbo,32,2007,65,80,91,77,83,85,1.6,2 S,Rafael Bush,29,2010,59,74,87,80,85,90,1.5,1 S,Johnson Bademosi,25,2012,60,69,93,77,88,65,2.3,2 S,Glover Quin,30,2009,77,84,88,91,91,73,4.7,5 S,Don Carey,29,2009,67,68,87,73,92,74,1,3 CB,Nevin Lawson,25,2014,77,61,89,76,89,56,0.6,4 CB,Darius Slay,25,2013,86,77,92,87,93,74,1.3,4 CB,Crezdon Butler,29,2010,73,63,95,76,89,42,0.8,1 CB,Josh Wilson,31,2007,65,82,91,74,92,70,1,1 CB,Alex Carter,21,2015,84,50,84,83,89,55,0.8,4 CB,Darrin Walls,28,2011,59,71,92,81,89,65,0.8,1 CB,Quandre Diggs,23,2015,73,49,92,78,86,68,0.6,4 DL,Haloti Ngata,32,2006,84,95,92,96,85,92,6,2 DL,Jermelle Cudjo,29,2010,65,67,92,81,79,73,0.7,1 DL,Khyri Thornton,26,2014,83,55,90,87,65,67,0.7,4 DL,Wallace Gilberry,31,2008,56,78,90,74,84,67,1.3,1 DL,Caraun Reid,24,2014,77,60,86,75,83,72,0.6,4 DL,Khyri Thornton,26,2014,83,55,90,87,65,67,0.7,4 DL,Devin Taylor,26,2013,76,66,91,66,82,68,0.6,4 DL,Gabe Wright,24,2015,83,46,90,89,72,64,0.7,4 DL,Ezekiel Ansah,27,2013,65,74,94,94,93,76,4.6,4 DL,Stefan Charles,28,2013,61,69,90,78,80,75,1.8,1 DL,Tyrunn Walker,26,2012,60,75,85,82,77,71,1.6,1 DL,Darryl Tapp,31,2006,65,73,89,71,64,65,1,1 LB,Jon Bostic,25,2013,86,74,95,85,63,73,1,4 LB,Josh Bynes,26,2011,60,72,84,83,71,73,0.9,2 LB,Zaviar Gooden,26,2013,82,68,84,75,61,66,0.6,1 LB,Tahir Whitehead,26,2012,75,79,96,91,77,81,4,2 LB,Khaseem Greene,27,2013,82,70,85,76,58,69,0.6,2 LB,DeAndre Levy,29,2009,77,97,95,96,80,95,8.4,4 LB,Jerry Franklin,28,2012,61,65,95,82,55,68,0.7,1 LB,Kyle Van Noy,26,2014,87,62,87,82,81,72,1.3,4 LB,Stephen Tulloch,31,2006,74,91,91,90,74,94,5.1,5 END_PLAYERS Green Bay Packers,GB QB,Aaron Rodgers,32,2005,83,95,88,105,102,90,22,5 QB,Brett Hundley,23,2015,78,47,90,91,68,70,0.6,4 RB,John Crockett,24,2015,64,38,90,71,85,78,0.5,2 RB,James Starks,30,2010,68,75,78,80,86,71,3,2 RB,Aaron Ripkowski,23,2015,73,52,88,60,82,37,0.6,4 RB,Eddie Lacy,25,2013,86,85,89,97,85,82,0.8,4 WR,Jordy Nelson,31,2008,81,96,87,106,97,79,9.8,4 WR,Jeff Janis,25,2014,67,64,95,79,93,55,0.6,4 WR,Davante Adams,23,2014,87,70,92,85,86,74,1,4 WR,Randall Cobb,25,2011,84,87,87,94,88,94,10,4 WR,Jared Abbrederis,25,2014,72,62,89,81,88,69,0.5,3 WR,Richard Rodgers,24,2014,82,68,88,79,78,62,0.7,4 WR,Ty Montgomery,23,2015,83,55,84,75,89,77,0.7,4 OL,David Bakhtiari,24,2013,81,82,89,84,73,92,0.7,4 OL,Lane Taylor,26,2013,61,61,90,89,75,73,2.1,2 OL,Josh Sitton,30,2008,71,92,84,92,88,96,6.8,5 OL,Bryan Bulaga,27,2010,88,80,77,87,83,94,6.8,5 OL,TJ Lang,28,2009,77,89,92,86,91,90,5.2,4 OL,JC Tretter,25,2013,81,65,85,89,79,79,0.6,4 OL,Corey Linsley,25,2014,77,75,91,95,89,87,0.6,4 OL,Don Barclay,27,2012,60,75,89,82,77,79,0.7,1 K,Mason Crosby,31,2007,65,76,90,93,91,72,4,4 K,Tim Masthay,29,2009,58,75,92,86,79,77,1.4,4 S,Micah Hyde,25,2013,76,73,93,82,88,45,0.6,4 S,Chris Banjo,26,2013,62,52,94,75,89,74,0.7,1 S,Morgan Burnett,27,2010,83,80,85,67,88,85,6.2,4 S,Ha Ha Clinton-Dix,23,2014,92,71,95,84,88,83,2.1,4 CB,Sam Shields,28,2010,58,82,90,88,88,50,9.8,4 CB,Damarious Randall,23,2015,88,53,90,83,91,61,2,4 CB,LaDarius Gunter,24,2015,63,42,91,75,90,70,0.5,3 CB,Quinten Rollins,23,2015,88,49,92,83,88,74,0.9,4 CB,Demetri Goodson,27,2014,72,62,75,78,89,56,0.6,4 DL,Christian Ringo,24,2015,74,48,85,80,82,67,0.5,1 DL,Letroy Guion,29,2008,71,77,88,84,82,70,3.7,3 DL,Datone Jones,25,2013,86,66,87,76,67,70,1.9,4 DL,Mike Pennel,25,2014,62,64,92,87,76,78,0.5,3 DL,Kenny Clark,20,2016,90,65,85,90,89,86,2.3,4 DL,Mike Daniels,27,2012,75,82,84,78,75,82,10.3,4 LB,Lerentee McCray,25,2013,61,66,74,73,79,58,0.8,1 LB,Jake Ryan,24,2015,78,58,78,83,75,71,0.7,4 LB,Carl Bradford,23,2014,83,69,95,79,65,72,0.5,1 LB,Sam Barrington,25,2013,66,70,94,87,79,69,0.6,4 LB,Julius Peppers,36,2002,90,94,90,80,78,85,8.7,3 LB,Clay Matthews,30,2009,82,90,88,100,95,98,13.2,5 LB,Nick Perry,26,2012,85,76,97,81,83,73,5.1,1 END_PLAYERS Minnesota Vikings,MIN QB,Teddy Bridgewater,23,2014,87,77,89,87,83,70,1.7,4 QB,Shaun Hill,36,2002,50,79,80,77,73,20,3.3,2 QB,Taylor Heinicke,23,2015,63,48,89,79,77,65,0.5,3 RB,Adrian Peterson,31,2007,95,91,87,104,100,102,14,3 RB,Matt Asiata,28,2011,60,80,95,90,77,40,0.8,1 RB,Zach Line,26,2013,61,51,92,83,83,54,1.7,1 RB,Jerick McKinnon,24,2014,82,64,85,51,93,87,0.7,4 WR,Charles Johnson,27,2013,71,71,90,83,91,69,0.5,3 WR,Jarius Wright,26,2012,80,76,94,83,91,86,3.7,4 WR,Adam Thielen,25,2013,62,71,90,80,88,64,0.6,1 WR,Stefon Diggs,22,2015,78,59,76,84,90,88,0.6,4 WR,Cordarrelle Patterson,25,2013,86,69,94,72,90,95,1.8,4 WR,Laquon Treadwell,21,2016,95,75,85,91,85,85,2.5,4 WR,Kyle Rudolph,26,2011,84,74,78,81,75,49,7.3,5 OL,TJ Clemmings,24,2015,83,45,92,84,85,78,0.7,4 OL,Andre Smith,29,2009,97,77,88,95,85,88,3.5,1 OL,Brandon Fusco,27,2011,74,75,84,89,80,85,4.9,5 OL,Alex Boone,29,2009,58,86,90,90,87,84,6.7,4 OL,Matt Kalil,26,2012,100,84,92,89,82,73,4.9,4 OL,John Sullivan,30,2008,66,93,94,87,90,78,5.6,3 OL,Austin Shepherd,24,2015,68,60,92,73,77,71,0.6,4 OL,Joe Berger,34,2005,63,77,90,85,84,79,1.1,2 K,Jeff Locke,26,2013,76,68,97,87,86,72,0.6,4 K,Blair Walsh,26,2012,70,78,95,104,94,70,3.3,4 S,Michael Griffin,31,2007,85,81,94,74,90,74,2.5,1 S,Andrew Sendejo,28,2010,59,72,90,78,88,81,4,4 S,Harrison Smith,27,2012,85,82,95,92,90,92,10.3,5 CB,Captain Munnerlyn,28,2009,67,84,91,90,92,65,3.8,3 CB,Jabari Price,23,2014,67,48,87,79,90,48,0.6,4 CB,Xavier Rhodes,26,2013,86,78,88,93,90,70,2,4 CB,Terence Newman,37,2003,91,91,88,83,85,65,2.5,1 CB,Melvin White,25,2013,62,69,92,80,83,58,0.6,1 CB,Marcus Sherels,28,2010,59,70,88,70,96,39,2,2 CB,Trae Waynes,23,2015,93,58,88,97,92,40,3.2,4 DL,Justin Trattou,27,2011,60,59,87,75,76,70,0.8,1 DL,Brian Robison,33,2007,75,87,94,82,60,65,5.6,4 DL,Zach Moore,25,2014,72,49,92,78,71,79,0.6,3 DL,Danielle Hunter,21,2015,83,47,90,77,58,65,0.7,4 DL,Bruce Gaston,24,2014,64,58,94,92,78,81,0.6,1 DL,Kenrick Ellis,28,2011,79,69,88,92,81,85,0.8,1 DL,Linval Joseph,27,2010,83,77,87,95,82,88,6.3,5 DL,Scott Crichton,24,2014,87,57,94,83,81,75,0.8,4 DL,Everson Griffen,28,2010,78,82,88,76,94,71,8.5,5 DL,Sharrif Floyd,24,2013,91,76,93,84,88,91,2,4 DL,Tom Johnson,31,2006,59,78,87,81,88,74,2.3,3 DL,Shamar Stephen,25,2014,72,62,90,85,76,85,0.6,4 LB,Eric Kendricks,24,2015,88,63,83,87,57,75,1.3,4 LB,Chad Greenway,33,2006,84,90,89,79,76,87,2.8,1 LB,Casey Matthews,27,2011,65,72,90,82,63,66,0.8,1 LB,Emmanuel Lamur,27,2012,60,72,88,74,63,73,2.8,2 LB,Audie Cole,27,2012,70,73,95,85,73,73,0.8,1 LB,Brandon Watts,25,2014,72,49,87,74,64,49,0.6,2 LB,Anthony Barr,24,2014,102,75,85,85,93,76,3.2,4 LB,Jason Trusnik,32,2007,65,74,88,77,71,76,0.9,1 LB,Travis Lewis,28,2012,70,70,87,80,60,68,0.8,1 LB,Edmond Robinson,24,2015,68,45,88,76,51,45,0.6,4 END_PLAYERS Dallas Cowboys,DAL QB,Tony Romo,36,2003,51,92,85,89,92,74,18,6 QB,Jameill Showers,24,2015,64,37,87,91,63,70,0.5,3 QB,Kellen Moore,26,2012,61,69,96,75,82,20,0.7,2 RB,Darren McFadden,28,2008,97,82,72,80,90,57,1.5,2 RB,Alfred Morris,27,2012,75,83,94,94,83,67,1.8,2 RB,Ezekiel Elliott,20,2016,105,85,90,87,93,85,6.2,4 RB,Lance Dunbar,26,2012,60,69,93,54,91,86,1.3,1 WR,Gavin Escobar,25,2013,86,64,95,83,76,76,1.1,4 WR,Terrance Williams,26,2013,86,78,92,88,87,71,0.7,4 WR,Cole Beasley,27,2012,60,77,91,86,87,82,3.4,4 WR,James Hanna,26,2012,70,70,90,71,89,73,2.8,3 WR,Jason Witten,34,2003,76,97,95,95,76,35,7.4,5 WR,Vince Mayle,25,2015,84,52,91,79,83,62,0.5,3 WR,Rodney Smith,26,2013,62,50,89,72,87,65,0.7,3 WR,Brice Butler,26,2013,71,70,88,77,92,63,0.6,4 WR,Devin Street,25,2014,77,65,90,82,87,59,0.6,4 WR,Dez Bryant,27,2010,88,90,88,108,94,92,14,5 OL,Tyron Smith,25,2011,99,84,87,88,96,94,12.2,8 OL,Jared Smith,26,2013,69,64,74,84,80,72,0.5,2 OL,Doug Free,32,2007,75,86,93,82,92,81,5,3 OL,Zack Martin,25,2014,92,75,97,89,89,96,2.2,4 OL,Bryan Witzmann,26,2014,63,62,94,80,81,71,0.5,1 OL,La'el Collins,22,2015,63,50,92,83,88,76,0.5,3 OL,Joe Looney,25,2012,81,68,85,82,79,68,0.8,2 OL,Travis Frederick,25,2013,86,84,91,90,99,84,1.7,4 K,Dan Bailey,28,2011,59,84,88,103,106,69,3.2,7 K,Chris Jones,25,2013,72,75,92,92,89,82,0.6,4 S,Barry Church,28,2010,58,81,97,71,87,92,2.2,4 S,Danny McCray,28,2010,65,69,89,74,85,73,0.8,1 S,Jeff Heath,25,2013,61,58,91,75,88,65,1.9,4 S,JJ Wilcox,27,2013,81,67,90,76,91,87,0.7,4 CB,Byron Jones,23,2015,88,56,86,85,94,60,2.2,4 CB,Brandon Carr,30,2008,71,83,97,79,92,50,10,5 CB,Morris Claiborne,26,2012,100,69,88,75,89,44,3,1 CB,Isaiah Frey,26,2012,72,67,92,81,89,73,0.6,1 CB,Orlando Scandrick,29,2008,71,84,94,97,92,62,3.8,5 DL,Tyrone Crawford,26,2012,81,73,87,81,89,82,9,5 DL,Jack Crawford,27,2012,75,67,84,69,82,76,1.1,1 DL,Ryan Russell,24,2015,78,49,83,77,80,64,0.6,4 DL,Terrell McClain,27,2011,84,74,87,92,81,82,1,3 DL,DeMarcus Lawrence,24,2014,88,61,92,76,88,68,1.4,4 DL,Randy Gregory,23,2015,88,45,82,73,71,66,1,4 DL,Greg Hardy,27,2010,65,80,83,86,94,82,11.3,1 DL,Cedric Thornton,28,2011,60,79,90,88,79,88,4.3,4 DL,Casey Walker,26,2013,63,54,88,85,78,72,0.5,3 DL,Nick Hayden,30,2008,65,82,90,84,71,73,0.8,1 DL,Lawrence Okoye,24,2013,63,33,90,85,81,61,0.5,1 DL,Benson Mayowa,24,2013,61,63,88,70,64,49,2.8,3 DL,Jeremy Mincey,32,2007,65,83,91,86,84,78,1.5,2 LB,Rolando McClain,26,2010,100,86,89,92,80,85,4,1 LB,Anthony Hitchens,24,2014,82,74,94,84,73,76,0.7,4 LB,Mark Nzeocha,26,2015,68,45,76,81,56,42,0.6,4 LB,Brandon Hepburn,26,2013,69,66,91,82,62,72,0.5,1 LB,Damien Wilson,23,2015,78,59,88,81,65,70,0.7,4 LB,Kyle Wilber,27,2012,80,74,88,84,66,73,1.6,2 LB,Andrew Gachkar,27,2011,65,77,85,82,79,76,1.8,2 LB,Sean Lee,29,2010,83,87,73,92,93,95,7,6 END_PLAYERS New York Giants,NYG QB,BJ Daniels,26,2013,67,45,85,84,71,64,0.6,2 QB,Ryan Nassib,26,2013,82,52,95,88,85,37,0.7,4 QB,Eli Manning,35,2004,92,90,98,89,87,30,21,4 RB,Orleans Darkwa,24,2014,63,62,85,85,90,57,0.6,1 RB,Nikita Whitlock,25,2014,64,49,92,75,78,42,0.5,2 RB,Rashad Jennings,31,2009,63,81,94,90,84,59,2.5,4 RB,Shane Vereen,27,2011,85,79,87,53,87,84,4.1,3 RB,Will Johnson,27,2012,59,72,93,71,79,58,1.2,2 RB,Andre Williams,23,2014,83,70,82,88,86,67,0.7,4 RB,Bobby Rainey,28,2012,59,72,93,59,87,83,0.8,1 WR,Larry Donnell,27,2012,62,74,92,82,73,49,1.7,1 WR,Myles White,26,2013,62,57,91,76,90,85,0.6,1 WR,Geremy Davis,24,2015,74,43,83,84,89,64,0.6,4 WR,Odell Beckham JR,23,2014,92,82,94,97,92,94,2.6,4 WR,Victor Cruz,29,2010,59,84,85,87,88,91,8.6,5 WR,Dwayne Harris,28,2011,69,77,88,83,86,88,3.5,5 WR,Hakeem Nicks,28,2009,65,81,79,85,85,61,0.7,1 WR,Tavarres King,25,2013,77,58,87,73,89,88,0.6,2 OL,Byron Stingily,27,2011,69,69,92,82,77,79,0.8,1 OL,Dallas Reynolds,32,2009,65,71,90,88,80,69,0.7,1 OL,Justin Pugh,25,2013,91,74,90,83,78,83,2.1,4 OL,Weston Richburg,24,2014,87,72,92,85,75,82,1.2,4 OL,John Jerry,30,2010,84,77,79,90,79,77,1.7,2 OL,Ereck Flowers,22,2015,103,57,85,95,86,82,3.6,4 OL,Adam Gettis,27,2012,78,57,77,78,81,73,0.7,1 OL,Dillon Farrell,25,2014,62,58,92,84,80,73,0.5,1 OL,Ryan Seymour,26,2013,72,64,92,83,80,70,0.6,1 OL,Bobby Hart,21,2015,68,59,93,84,81,69,0.6,4 OL,Brandon Mosley,27,2012,65,56,88,93,82,71,0.6,4 OL,Shane McDermott,24,2015,64,64,90,82,70,76,0.5,2 OL,Marshall Newhouse,27,2010,74,78,91,88,81,76,1.5,2 K,Josh Brown,37,2003,62,84,90,89,92,64,2,2 K,Brad Wing,25,2013,63,67,84,89,84,73,0.6,1 S,Cooper Taylor,26,2013,77,50,99,75,88,73,0.6,2 S,Craig Dahl,30,2007,65,74,90,69,88,75,0.9,1 S,Landon Collins,22,2015,90,52,87,64,90,90,1.5,4 S,Nat Berhe,24,2014,77,44,92,71,90,80,0.6,4 S,Mykkele Thompson,23,2015,79,42,91,72,92,63,0.6,4 CB,Trevin Wade,26,2012,66,47,87,73,88,44,0.6,2 CB,Dominique Rodgers-Cromartie,30,2008,87,89,90,86,95,50,7,5 CB,Trumaine McBride,30,2007,65,75,89,79,89,52,1.4,2 CB,Leon McFadden,25,2013,86,60,90,79,91,33,0.7,2 CB,Jayron Hosley,25,2012,65,66,88,81,92,32,0.7,4 CB,Janoris Jenkins,27,2012,84,75,89,82,92,50,12.5,5 CB,Tramain Jacobs,24,2014,62,48,90,74,90,49,0.6,2 CB,Eli Apple,20,2016,95,65,85,84,94,70,3.8,4 CB,Bennett Jackson,24,2014,73,42,95,81,90,60,0.5,1 DL,Johnathan Hankins,24,2013,87,78,92,93,89,94,1,4 DL,Stansly Maponga,25,2013,76,67,83,78,63,55,0.6,2 DL,Olivier Vernon,25,2012,85,75,90,93,89,74,17,5 DL,Jay Bromley,24,2014,87,54,95,84,84,81,0.8,4 DL,Kerry Wynn,25,2014,63,55,94,86,76,77,0.5,3 DL,Owamagbe Odighizuwa,24,2015,89,49,74,79,82,75,0.8,4 DL,Jason Pierre-Paul,27,2010,89,85,93,85,58,81,10,1 DL,Damon Harrison,27,2012,59,83,90,92,85,97,9.3,5 DL,Cullen Jenkins,35,2003,65,86,91,87,82,75,2.7,3 DL,Montori Hughes,25,2013,76,65,94,84,81,80,0.6,2 DL,George Selvie,29,2010,65,76,86,64,71,64,1,1 LB,Mark Herzlich,28,2011,60,77,80,90,55,85,1.3,2 LB,Devon Kennard,24,2014,78,74,80,83,88,74,0.6,4 LB,Jasper Brinkley,30,2009,72,80,83,91,74,78,1.8,1 LB,JT Thomas,27,2011,70,74,81,77,57,76,3.3,3 LB,Kelvin Sheppard,28,2011,84,74,95,82,66,71,0.8,1 LB,Jonathan Casillas,29,2009,57,75,77,76,53,79,2.7,3 LB,Keenan Robinson,26,2012,79,76,85,87,64,74,2.6,1 END_PLAYERS Philadelphia Eagles,PHI QB,Sam Bradford,28,2010,98,76,71,87,75,29,17.5,2 QB,Chase Daniel,29,2009,57,70,90,82,71,50,7,3 QB,Carson Wentz,23,2016,105,75,85,93,89,83,6.7,4 RB,Trey Burton,24,2014,62,55,95,57,86,83,0.5,3 RB,Kenjon Barner,27,2013,72,49,90,46,87,92,0.6,2 RB,Darren Sproles,33,2005,68,87,87,40,87,88,3.5,3 RB,Ryan Mathews,29,2010,98,79,79,86,90,77,3.7,3 WR,Trey Burton,24,2014,62,55,95,75,86,83,0.5,3 WR,Brent Celek,31,2007,70,85,90,73,74,60,4.3,3 WR,Seyi Ajirotutu,29,2010,65,67,92,77,82,55,0.8,1 WR,Chris Givens,26,2012,80,69,86,72,92,85,0.8,1 WR,Josh Huff,24,2014,82,66,87,80,88,84,0.7,4 WR,Nelson Agholor,23,2015,93,51,90,87,92,85,2.3,4 WR,Rueben Randle,25,2012,85,78,94,87,89,66,1,1 WR,TJ Graham,26,2012,86,70,92,74,90,76,0.7,1 WR,Jordan Matthews,23,2014,87,75,95,88,90,65,1.2,4 OL,Matt Tobin,26,2013,61,70,92,79,81,71,0.8,2 OL,Barrett Jones,26,2013,82,67,80,79,78,85,0.6,2 OL,Dennis Kelly,26,2012,75,68,92,86,70,79,0.9,1 OL,Allen Barbre,32,2007,76,76,88,84,83,75,1.5,3 OL,Brandon Brooks,26,2012,80,79,77,95,97,78,8,5 OL,Jason Kelce,28,2011,69,86,90,81,94,78,6.3,6 OL,Stefen Wisniewski,27,2011,84,82,94,85,88,74,1.5,1 OL,Andrew Gardner,30,2009,68,73,92,87,86,70,1.5,3 OL,Lane Johnson,26,2013,101,69,93,86,92,87,11.3,5 OL,Jason Peters,34,2004,52,87,76,98,96,97,10.3,4 K,Donnie Jones,35,2004,62,80,87,85,91,75,1.8,3 K,Caleb Sturgis,26,2013,76,74,85,93,84,75,0.6,2 K,Cody Parkey,24,2014,62,69,92,94,91,71,0.5,3 S,Chris Maragos,29,2010,58,75,90,69,90,81,1.4,3 S,Rodney McLeod,25,2012,60,74,92,83,90,75,7,5 S,Malcolm Jenkins,28,2009,87,83,96,87,92,76,8.8,4 S,Ed Reynolds,24,2014,78,49,85,76,90,79,0.5,2 CB,Randall Evans,24,2015,74,53,90,76,90,51,0.5,2 CB,Nolan Carroll,29,2010,73,72,84,75,90,55,2.4,1 CB,JaCorey Shepherd,23,2015,73,49,84,76,88,33,0.6,4 CB,Jaylen Watkins,23,2014,83,48,93,84,93,62,0.6,2 CB,Ron Brooks,27,2012,80,58,87,70,90,60,1.8,3 CB,Leodis McKelvin,30,2008,86,81,89,83,94,45,3.1,2 CB,Eric Rowe,23,2015,88,54,84,81,91,67,1.2,4 DL,Mike Martin,25,2012,80,70,87,84,83,69,0.6,1 DL,Fletcher Cox,25,2012,90,82,93,85,88,87,17.1,6 DL,Taylor Hart,25,2014,77,55,92,76,77,83,0.6,4 DL,Bennie Logan,26,2013,86,77,92,88,77,87,0.8,4 DL,Beau Allen,24,2014,72,61,93,87,74,83,0.6,4 DL,Vinny Curry,27,2012,85,73,90,77,80,69,9.5,5 DL,Steven Means,26,2013,78,50,93,69,82,83,0.6,3 LB,Brandon Graham,28,2010,88,80,78,86,93,81,6.5,4 LB,Nigel Bradham,26,2012,80,77,96,87,77,76,3.5,2 LB,Mychal Kendricks,25,2012,85,86,87,90,85,85,7.3,4 LB,Marcus Smith,24,2014,87,61,89,84,86,62,1.9,4 LB,Connor Barwin,29,2009,82,86,94,79,95,87,6,6 LB,Jordan Hicks,24,2015,83,60,74,81,64,58,0.7,4 LB,Bryan Braman,29,2011,59,75,88,78,79,70,1,2 LB,Najee Goode,27,2012,75,66,88,74,70,61,0.8,1 END_PLAYERS Washington Redskins,WAS QB,Kirk Cousins,27,2012,80,66,88,84,71,30,20,1 QB,Colt McCoy,29,2010,78,69,88,81,74,60,3,3 RB,Chris Thompson,25,2013,77,59,70,36,90,81,0.7,1 RB,Silas Redd,24,2014,62,55,82,79,82,73,0.5,3 RB,Darrel Young,29,2009,55,78,90,84,82,45,1.3,3 RB,Matt Jones,23,2015,83,56,76,90,85,60,0.7,4 WR,Jamison Crowder,23,2015,84,63,91,82,90,85,0.7,4 WR,Josh Doctson,23,2016,95,75,85,85,92,85,2.5,4 WR,Ryan Grant,25,2014,77,65,87,84,87,71,0.6,4 WR,Pierre Garcon,29,2008,66,85,90,86,87,85,8.5,5 WR,DeSean Jackson,29,2008,81,88,86,92,112,97,6,4 WR,Jordan Reed,25,2013,81,75,84,96,80,78,9.4,5 WR,Niles Paul,26,2011,74,69,93,77,88,60,2,3 OL,Austin Reiter,24,2015,74,56,91,77,77,72,0.5,2 OL,Trent Williams,27,2010,98,84,93,92,85,92,13.6,5 OL,Arie Kouandjio,24,2015,83,52,73,84,81,72,0.7,4 OL,Morgan Moses,25,2014,87,60,85,89,79,84,0.8,4 OL,Shawn Lauvao,28,2010,78,82,88,86,80,83,4.3,4 OL,Al Bond,24,2015,64,60,92,80,84,67,0.5,1 OL,Spencer Long,25,2014,82,54,78,88,83,78,0.7,4 OL,Kory Lichtensteiger,31,2008,77,88,81,82,89,86,3.5,5 OL,Brandon Scherff,24,2015,103,64,85,83,89,80,5.3,4 OL,Josh LeRibeus,26,2012,85,62,87,88,83,76,0.9,1 OL,Ty Nsekhe,30,2012,63,66,85,85,79,71,0.6,2 K,Dustin Hopkins,25,2013,72,61,87,93,81,74,0.6,3 K,Tress Way,26,2013,62,76,92,97,91,67,1.5,5 S,Kyshoen Jarrett,23,2015,73,38,82,62,90,83,0.6,4 S,Duke Ihenacho,27,2012,61,72,89,68,88,85,0.7,1 CB,DeAngelo Hall,32,2004,92,74,80,86,87,50,4.3,4 CB,Will Blackmon,31,2006,75,77,79,78,86,30,1,2 CB,Jeremy Harris,25,2013,72,63,93,75,88,50,0.5,3 CB,Cary Williams,31,2008,65,82,90,87,92,45,0.9,1 CB,Josh Norman,28,2012,75,82,97,104,91,63,15,5 CB,Greg Toler,31,2009,72,79,87,86,88,45,0.8,1 CB,Bashaud Breeland,24,2014,82,64,89,73,89,55,0.7,4 DL,Stephen Paea,28,2011,84,80,85,98,89,83,5.3,4 DL,Kendall Reyes,26,2012,85,74,90,89,77,79,2.5,1 DL,Chris Baker,28,2009,60,74,88,87,83,77,3,3 DL,Kedric Golston,33,2006,64,74,83,85,77,77,1,1 DL,Ricky Jean-Francois,29,2009,62,77,82,83,79,85,3,3 DL,Jerrell Powe,29,2011,71,72,88,92,81,85,0.8,1 DL,Lynden Trail,25,2015,64,39,94,71,68,44,0.5,2 LB,Will Compton,26,2013,62,69,91,80,72,69,0.6,1 LB,Ryan Kerrigan,27,2011,89,87,92,83,97,88,11.5,5 LB,Preston Smith,23,2015,88,55,93,79,85,67,1.4,4 LB,Martrell Spaight,22,2015,78,51,88,85,66,52,0.6,4 LB,Adam Hayward,31,2007,65,75,90,79,51,74,1,3 LB,Junior Galette,28,2010,58,90,92,79,87,87,1.6,1 LB,Trent Murphy,25,2014,87,72,90,88,84,74,1.1,4 LB,Terence Garvin,25,2013,61,62,92,78,64,65,0.8,1 LB,Mason Foster,27,2011,79,80,87,84,72,81,1.3,2 END_PLAYERS Atlanta Falcons,ATL QB,Matt Simms,27,2012,61,45,85,86,72,25,0.6,2 QB,Sean Renfree,26,2013,66,57,85,84,83,20,0.6,4 QB,Matt Ryan,31,2008,96,88,95,89,88,20,20.8,5 QB,Matt Schaub,34,2004,72,82,80,81,74,20,2.8,1 RB,Tevin Coleman,23,2015,88,53,82,85,93,70,0.8,4 RB,Devonta Freeman,24,2014,82,68,94,66,86,77,0.7,4 RB,Patrick DiMarco,27,2011,60,77,92,73,73,64,0.7,2 RB,Gus Johnson,22,2015,64,50,85,75,85,70,0.5,2 WR,Julio Jones,27,2011,99,82,83,104,102,87,14.3,5 WR,Aldrick Robinson,27,2011,71,71,90,74,91,88,0.7,1 WR,Justin Hardy,24,2015,83,57,92,87,87,81,0.7,4 WR,CJ Goodwin,26,2014,64,41,91,68,91,64,0.5,2 WR,Devin Hester,33,2006,79,81,89,74,91,94,3,3 WR,Eric Weems,30,2007,55,78,85,76,84,93,1.1,2 WR,Jacob Tamme,31,2008,71,80,88,81,82,47,1.6,2 WR,Mohamed Sanu,26,2012,80,75,92,75,86,73,6.5,5 OL,Chris Chester,33,2006,79,81,85,82,76,86,2.4,1 OL,Ryan Schraeder,28,2013,61,73,92,83,79,91,2.6,1 OL,Alex Mack,30,2009,87,85,98,91,92,86,9,5 OL,Jake Matthews,24,2014,102,75,98,85,80,82,4.1,4 OL,Ben Garland,28,2010,62,61,92,77,79,76,0.6,2 OL,Andy Levitre,30,2009,82,88,95,85,85,76,7.8,6 OL,Bryce Harris,27,2012,60,66,93,82,79,74,0.8,1 OL,James Stone,24,2014,62,72,91,79,74,73,0.5,3 OL,Tom Compton,27,2012,71,69,94,90,85,70,0.8,1 K,Matt Bosher,28,2011,69,83,92,92,97,76,2.5,5 K,Matt Bryant,41,2002,50,88,80,90,94,56,2.8,3 S,Akeem King,23,2015,68,45,92,70,89,65,0.5,2 S,Kemal Ishmael,25,2013,66,68,90,75,91,79,0.6,4 S,Keanu Neal,20,2016,95,65,85,79,90,87,2.7,4 S,Charles Godfrey,30,2008,81,73,94,72,92,69,1,1 CB,Ricardo Allen,24,2014,78,51,93,77,89,55,0.5,1 CB,DeMarcus Van dyke,27,2011,81,59,87,68,93,39,0.7,1 CB,Jalen Collins,23,2015,88,44,85,78,88,40,1.4,4 CB,Desmond Trufant,25,2013,91,79,96,94,93,42,2,4 CB,Robert Alford,27,2013,86,69,80,75,92,47,0.9,4 DL,Vic Beasley,23,2015,103,55,90,87,76,63,3.6,4 DL,Jonathan Babineaux,34,2005,78,87,88,87,65,75,3,3 DL,Adrian Clayborn,28,2011,89,71,87,87,81,81,4.3,2 DL,Ra'Shede Hageman,25,2014,87,53,94,92,83,83,1.3,4 DL,Malliciah Goodman,26,2013,76,69,95,84,76,74,0.6,4 DL,Kroy Biermann,30,2008,65,75,88,79,57,75,1.9,1 DL,Grady Jarrett,23,2015,78,51,84,89,79,64,0.6,4 DL,Tyson Jackson,30,2009,97,85,95,87,72,84,5,5 DL,Derrick Shelby,27,2012,60,68,90,76,83,73,4.5,4 LB,Courtney Upshaw,26,2012,85,77,98,88,86,76,1.3,1 LB,Tyler Starr,25,2014,67,39,94,72,63,69,0.6,2 LB,LaRoy Reynolds,25,2013,61,67,88,78,70,66,0.7,1 LB,Sean Weatherspoon,28,2010,89,81,85,76,87,77,1.5,1 LB,Brooks Reed,29,2011,84,80,93,86,85,80,4.4,5 LB,Paul Worrilow,26,2013,61,81,91,88,69,80,2.6,1 LB,Philip Wheeler,31,2008,76,85,92,82,82,80,1,1 LB,O'Brien Schofield,29,2010,65,76,78,79,65,70,1.7,1 END_PLAYERS Carolina Panthers,CAR QB,Derek Anderson,33,2005,63,73,90,92,72,20,2.4,2 QB,Joe Webb,29,2010,68,66,88,89,66,77,0.9,2 QB,Cam Newton,27,2011,99,83,96,107,97,94,20.8,5 RB,Mike Tolbert,30,2008,56,86,90,85,76,55,1.7,2 RB,Cameron Artis-Payne,25,2015,78,44,90,78,88,70,0.6,4 RB,Fozzy Whittaker,27,2012,61,66,80,56,87,72,0.7,2 RB,Jonathan Stewart,29,2008,86,79,75,70,86,96,7.3,5 WR,Corey Brown,24,2014,62,71,93,79,88,87,0.5,3 WR,Laron Byrd,26,2012,62,52,88,72,89,62,0.5,1 WR,Ted Ginn Jr,31,2007,95,80,90,76,88,90,2.1,2 WR,Kelvin Benjamin,25,2014,87,78,90,91,85,65,1.9,4 WR,Devin Funchess,22,2015,88,58,88,80,89,76,1.4,4 WR,Stephen Hill,25,2012,86,61,85,64,92,62,0.6,1 WR,Tobais Palmer,26,2013,64,60,88,69,91,78,0.5,1 WR,Brenton Bersin,26,2012,62,64,90,78,84,62,0.6,1 WR,Cobi Hamilton,25,2013,74,57,93,80,86,85,0.5,1 WR,Greg Olsen,31,2007,80,89,93,89,83,67,7.5,3 OL,Michael Oher,30,2009,87,81,97,95,75,78,3.5,2 OL,Andrew Norwell,24,2014,62,72,92,81,88,84,0.5,3 OL,Tyler Larsen,24,2014,64,58,96,93,75,77,0.5,2 OL,Tyronne Green,30,2009,65,69,88,84,80,73,0.7,1 OL,Chris Scott,28,2010,75,72,74,92,75,77,0.8,1 OL,Reese Dismukes,23,2015,64,63,85,80,78,72,0.5,1 OL,Daryl Williams,23,2015,83,56,89,87,85,73,0.7,4 OL,Trai Turner,23,2014,82,73,92,88,83,88,0.7,4 OL,Mike Remmers,27,2012,61,72,89,79,78,88,2.6,1 OL,David Yankey,24,2014,78,62,90,84,85,73,0.5,1 OL,Donald Hawkins,24,2014,63,55,90,81,75,80,0.5,3 OL,Gino Gradkowski,27,2012,80,74,93,84,78,71,1.1,3 OL,Amini Silatolu,27,2012,65,71,85,87,83,72,1.2,4 OL,Ryan Kalil,31,2007,80,90,92,88,95,75,8.4,2 K,Graham Gano,29,2009,58,81,90,98,89,77,3.1,4 K,Mike Scifres,35,2003,67,87,76,87,91,62,0.5,1 S,Tre Boston,23,2014,77,71,92,83,88,86,0.7,4 S,Dean Marlowe,23,2015,63,40,94,70,88,75,0.5,3 S,Trenton Robinson,26,2012,70,62,84,75,92,65,0.8,1 S,Colin Jones,28,2011,69,69,88,69,95,70,0.9,2 S,Kurt Coleman,27,2010,63,78,88,81,90,67,1.4,2 CB,Bene Benwikere,24,2014,65,77,93,91,86,45,0.6,4 CB,Teddy Williams,27,2010,60,54,80,67,93,15,0.9,2 CB,Charles Tillman,35,2003,65,89,76,84,85,77,2,1 CB,Robert McClain,27,2010,65,70,90,74,86,54,0.8,2 DL,Paul Soliai,32,2007,75,86,87,93,72,83,3.5,2 DL,Vernon Butler,22,2016,90,65,85,90,92,91,2.1,4 DL,Robert Thomas,25,2014,64,53,84,94,74,76,0.5,2 DL,Wes Horton,26,2013,61,72,88,76,81,73,0.7,1 DL,Matthew Masifilo,26,2012,63,67,92,93,45,45,0.6,1 DL,Mario Addison,28,2011,59,73,90,73,69,70,1.3,2 DL,Kawann Short,27,2013,86,73,95,86,87,80,1.2,4 DL,Larry Webster,26,2014,78,51,88,67,65,67,0.5,1 DL,Star Lotulelei,26,2013,91,77,88,96,86,92,2.4,4 DL,Kyle Love,29,2010,60,74,84,84,75,77,0.8,1 DL,Frank Alexander,26,2012,65,63,78,74,63,66,0.6,4 DL,Charles Johnson,29,2007,71,88,92,93,93,67,3,1 DL,Kony Ealy,24,2014,87,62,92,79,84,68,0.9,4 LB,AJ Klein,24,2013,76,72,91,82,72,75,0.6,4 LB,Thomas Davis,33,2005,83,89,79,102,92,100,9,2 LB,Luke Kuechly,25,2012,100,96,97,108,88,108,12.4,5 LB,Shaq Thompson,22,2015,88,56,93,87,64,72,2.2,4 LB,Ben Jacobs,28,2011,61,70,95,78,74,69,0.7,1 LB,David Mayo,22,2015,78,52,78,85,61,64,0.6,4 END_PLAYERS New Orleans Saints,NO QB,Drew Brees,37,2001,74,97,96,97,101,20,20,5 QB,Garrett Grayson,25,2015,83,54,83,89,75,38,0.9,4 QB,Luke McCown,34,2004,72,76,82,83,73,40,1.5,2 RB,CJ Spiller,28,2010,98,81,82,55,93,88,4,4 RB,Marcus Murphy,24,2015,68,48,77,37,86,86,0.6,4 RB,Mark Ingram,26,2011,84,79,83,87,85,69,4,4 RB,Tim Hightower,30,2008,74,79,85,85,82,55,0.8,1 RB,Travaris Cadet,27,2012,60,67,83,65,82,81,0.8,1 WR,Coby Fleener,27,2012,85,73,85,86,87,65,7.2,5 WR,Vincent Brown,27,2011,80,76,87,78,84,72,0.5,1 WR,Brandin Cooks,22,2014,92,75,92,87,95,92,2.1,4 WR,Michael Hoomanawanui,27,2010,73,77,79,75,77,35,1.7,3 WR,Josh Hill,26,2013,61,69,89,80,82,55,2.4,3 WR,Brandon Coleman,23,2014,63,46,88,82,86,63,0.5,3 OL,Tim Lelito,26,2013,61,75,96,89,85,80,1.7,1 OL,Mike McGlynn,31,2008,65,81,93,87,71,77,0.9,1 OL,Max Unger,30,2009,82,91,89,85,95,84,6.5,4 OL,Terron Armstead,24,2013,81,73,92,83,88,86,16.3,4 OL,Andrus Peat,22,2015,93,65,90,86,82,88,2.8,4 OL,Zach Strief,32,2006,64,88,91,90,82,91,4,5 OL,Senio Kelemete,26,2012,76,69,84,86,78,70,1.4,2 K,Kai Forbath,28,2011,60,73,87,86,90,66,0.8,1 K,Thomas Morstead,30,2009,72,86,95,95,91,76,3.6,6 K,Connor Barth,30,2008,57,74,84,88,93,65,0.5,1 S,Jamarca Sanford,30,2009,62,73,92,71,91,87,1,1 S,Roman Harper,33,2006,80,78,94,63,85,87,1.1,1 S,Kenny Vaccaro,25,2013,91,67,92,90,89,90,2.4,4 S,Jairus Byrd,29,2009,82,84,84,95,89,58,9,6 CB,Brandon Dixon,26,2014,73,50,90,76,90,49,0.5,1 CB,Kyle Wilson,29,2010,83,73,96,74,90,49,0.8,1 CB,Brian Dixon,26,2014,62,62,93,77,89,75,0.5,3 CB,PJ Williams,23,2015,83,51,90,82,95,74,0.8,4 CB,Keenan Lewis,30,2009,77,77,93,74,89,71,5.1,5 CB,Damian Swann,23,2015,78,55,87,78,89,55,0.6,4 CB,Tony Carter,30,2009,59,73,88,80,89,41,0.9,1 DL,Sheldon Rankins,22,2016,95,65,85,92,83,89,3.2,4 DL,Tyeler Davison,23,2015,78,49,88,91,77,85,0.6,4 DL,Nick Fairley,28,2011,89,72,87,90,92,86,3,1 DL,John Jenkins,26,2013,81,71,88,92,76,87,0.7,4 DL,Obum Gwacham,25,2015,73,38,87,74,60,59,0.6,4 DL,Kevin Williams,35,2003,65,93,88,85,78,74,1.5,1 DL,Cameron Jordan,26,2011,89,83,95,90,83,85,11,5 DL,Lawrence Virgil,25,2014,65,49,94,94,81,71,0.5,2 LB,Michael Mauti,26,2013,71,63,72,85,53,73,0.6,4 LB,Anthony Spencer,32,2007,65,80,83,72,65,80,1,1 LB,Stephone Anthony,23,2015,88,67,90,85,76,64,1.9,4 LB,James Laurinaitis,29,2009,82,87,98,78,64,97,2.8,3 LB,Nathan Stupar,28,2012,66,73,92,79,61,77,1.7,3 LB,Tony Steward,23,2015,73,49,74,78,53,70,0.5,1 LB,Craig Robertson,28,2011,60,80,87,86,75,80,1.7,3 LB,Davis Tull,24,2015,78,42,68,78,66,61,0.6,4 LB,Hau'oli Kikaha,23,2015,88,60,78,72,87,55,1.3,4 LB,Kasim Edebali,26,2014,62,64,91,71,80,65,0.5,3 LB,Dannell Ellerbe,30,2009,57,82,85,74,67,82,2.5,2 END_PLAYERS Tampa Bay Buccaneers,TB QB,Jameis Winston,22,2015,103,69,97,95,75,65,6.3,4 QB,Mike Glennon,26,2013,86,69,96,93,73,20,0.8,4 RB,Mike James,25,2013,71,65,85,76,87,64,0.6,2 RB,Doug Martin,27,2012,85,75,88,67,88,74,7.2,5 RB,Storm Johnson,23,2014,73,62,93,83,85,53,0.6,2 RB,Charles Sims,25,2014,87,65,84,64,89,77,0.8,4 WR,Freddie Martino,24,2014,64,50,90,77,89,79,0.5,1 WR,Mike Evans,22,2014,102,74,96,102,87,74,3.7,4 WR,Louis Murphy Jr,29,2009,65,78,78,77,91,87,1.6,3 WR,Kenny Bell,24,2015,78,58,86,76,93,73,0.6,4 WR,Austin Seferian-Jenkins,23,2014,87,48,83,80,86,58,1.3,4 WR,Luke Stocker,27,2011,79,72,83,66,80,44,1.6,3 WR,Vincent Jackson,33,2005,78,90,88,91,84,48,11.1,5 WR,Russell Shepard,25,2013,61,49,93,79,89,72,1.7,1 WR,Bernard Reedy,24,2014,64,61,90,80,88,81,0.5,2 WR,Evan Spencer,23,2015,74,52,91,74,91,63,0.5,2 OL,Demar Dotson,30,2009,57,82,92,87,79,91,1.5,3 OL,Kevin Pamphile,25,2014,77,65,93,82,85,74,0.6,4 OL,Evan Smith,29,2009,58,82,88,86,87,76,3.6,4 OL,Donovan Smith,22,2015,88,55,87,87,84,79,1.5,4 OL,Joe Hawley,27,2010,78,74,90,83,78,81,1.7,2 OL,Josh Allen,24,2014,64,50,90,89,78,74,0.6,2 OL,Andre Davis,22,2015,64,45,93,82,71,82,0.5,2 OL,Ali Marpet,23,2015,88,49,90,86,82,76,0.9,4 OL,Gosder Cherilus,31,2008,86,87,87,88,82,73,3.5,2 OL,JR Sweezy,27,2012,65,77,82,84,87,72,6.5,5 K,Bryan Anger,27,2012,85,78,97,95,92,72,1.8,1 K,Roberto Aguayo,22,2016,90,65,85,95,95,75,1,4 S,Major Wright,27,2010,78,71,95,71,90,87,1.5,2 S,Bradley McDougald,25,2013,65,72,89,80,84,59,2.6,1 S,Gerod Holliman,22,2015,65,42,86,82,90,62,0.5,2 S,Keith Tandy,27,2012,75,61,93,79,93,70,0.9,2 CB,Johnthan Banks,26,2013,86,75,97,84,88,63,1.2,4 CB,Mike Jenkins,31,2008,65,75,92,74,92,44,0.8,1 CB,Brent Grimes,32,2006,55,91,90,85,91,47,6.8,2 CB,Alterraun Verner,27,2010,78,89,91,93,89,42,6.4,4 CB,Vernon Hargreaves III,21,2016,95,65,85,87,95,70,3.5,4 DL,Cliff Matthews,26,2011,65,60,84,76,74,67,0.8,2 DL,George Johnson,28,2010,60,74,82,67,74,64,2.3,3 DL,Akeem Spence,24,2013,81,70,95,90,67,74,0.7,4 DL,William Gholston,24,2013,76,66,87,77,82,76,0.6,4 DL,Robert Ayers,30,2009,87,74,87,79,89,70,6.5,3 DL,Tony McDaniel,31,2006,65,82,88,88,81,78,1.5,1 DL,AJ Francis,26,2013,62,49,90,79,73,87,0.6,1 DL,Jacquies Smith,26,2012,62,69,84,69,69,64,0.6,1 DL,Henry Melton,29,2010,65,83,74,83,86,69,3.8,1 DL,Larry English,30,2009,65,71,79,72,62,70,0.9,1 DL,Clinton McDonald,29,2009,63,78,86,83,84,75,3,4 DL,Gerald McCoy,28,2010,98,80,78,102,98,87,15.9,6 DL,TJ Fatinikun,24,2014,65,63,82,74,67,65,0.5,2 LB,Kwon Alexander,21,2015,83,42,84,77,68,40,0.7,4 LB,Danny Lansanah,30,2008,65,78,90,86,72,79,0.7,1 LB,Daryl Smith,34,2004,77,95,88,92,78,95,2.5,1 LB,Jeremiah George,24,2014,77,56,92,84,68,70,0.6,1 LB,Adarius Glanton,25,2014,63,54,90,79,64,56,0.6,2 LB,Kourtnei Brown,28,2012,63,55,83,79,77,65,0.5,2 LB,Lavonte David,26,2012,85,88,97,107,95,105,10.1,5 END_PLAYERS Arizona Cardinals,ARZ QB,Matt Barkley,25,2013,81,54,87,84,75,37,0.7,4 QB,Drew Stanton,32,2007,80,69,86,89,72,30,3.3,2 QB,Carson Palmer,36,2003,91,86,74,88,83,20,16.5,3 RB,Stepfan Taylor,25,2013,76,67,97,86,79,65,0.6,4 RB,Chris Johnson,30,2008,86,80,80,70,95,85,1.5,1 RB,Kerwynn Williams,25,2013,67,58,91,54,88,88,0.6,2 RB,Andre Ellington,27,2013,71,75,76,59,90,72,0.6,4 WR,JJ Nelson,24,2015,78,51,78,77,96,77,0.6,4 WR,John Brown,26,2014,82,75,87,87,94,90,0.7,4 WR,Larry Fitzgerald,32,2004,92,95,94,93,82,54,11,2 WR,Darren Fells,30,2013,62,61,90,76,73,50,0.6,1 WR,Brittan Golden,27,2012,62,55,92,77,88,82,0.5,3 WR,Jaron Brown,26,2013,61,67,90,80,91,72,1.7,1 WR,Michael Floyd,26,2012,90,79,89,90,88,65,2.5,4 OL,Jared Veldheer,29,2010,83,85,95,97,87,94,7,5 OL,Mike Iupati,29,2010,88,83,90,97,97,74,8,5 OL,AQ Shipley,30,2009,65,77,87,87,86,78,0.8,2 OL,Taylor Boggs,29,2011,60,70,85,86,78,71,0.7,1 OL,Earl Watford,25,2013,81,63,95,85,81,73,0.6,4 OL,DJ Humphries,22,2015,93,53,82,88,79,87,2.2,4 OL,Antoine McClain,26,2012,63,62,85,81,77,72,0.5,1 K,Drew Butler,27,2012,61,70,95,84,94,70,1.2,2 K,Chandler Catanzaro,25,2014,62,73,93,95,91,70,0.5,3 S,Deone Bucannon,23,2014,87,60,94,67,61,74,1.9,4 S,Tyvon Branch,29,2008,76,81,84,85,94,74,4,2 S,Tyrann Mathieu,24,2013,86,70,84,95,92,84,0.8,4 S,DJ Swearinger,24,2013,86,59,91,75,89,93,1.7,1 S,Tony Jefferson,24,2013,61,73,82,70,87,85,1.7,1 S,Chris Clemons,30,2009,72,74,94,75,94,83,0.9,1 CB,Carrington Byndom,23,2014,63,48,93,78,93,35,0.5,1 CB,Justin Bethel,26,2012,70,67,93,78,88,65,5,3 CB,Asa Jackson,26,2012,75,62,85,72,91,40,0.8,1 CB,Shaun Prater,26,2012,75,59,88,81,90,41,0.7,1 CB,Patrick Peterson,25,2011,99,82,97,105,92,72,14,5 DL,Frostee Rucker,32,2006,74,88,88,81,80,79,2.2,1 DL,Olsen Pierre,24,2015,64,53,90,75,75,81,0.5,1 DL,Chandler Jones,26,2012,90,77,84,92,105,85,2,4 DL,Calais Campbell,29,2008,81,88,96,87,75,85,11,5 DL,Kareem Martin,24,2014,82,60,91,81,78,55,0.7,4 DL,Robert Nkemdiche,21,2016,90,65,85,93,79,85,2.2,4 DL,Josh Mauro,25,2014,62,61,95,85,71,78,0.6,1 DL,Corey Peters,28,2010,78,81,88,78,80,74,3.1,3 DL,Rodney Gunter,24,2015,83,46,88,75,69,81,0.7,4 DL,Ed Stinson,26,2014,77,56,79,88,78,83,0.6,4 LB,Kevin Minter,25,2013,86,73,85,88,64,80,1.1,4 LB,LaMarr Woodley,31,2007,65,82,87,76,84,80,1,1 LB,Shaquille Riddick,23,2015,78,48,88,69,65,52,0.6,4 LB,Jason Babin,36,2004,65,86,88,82,87,72,1,1 LB,Daryl Washington,29,2010,85,71,91,91,73,80,8,4 LB,Alex Okafor,25,2013,81,73,95,68,85,72,0.7,4 LB,Markus Golden,25,2015,88,47,90,73,82,69,1,4 LB,Kenny Demens,26,2013,65,63,92,79,70,68,0.5,2 END_PLAYERS Los Angeles Rams,LA QB,Sean Mannion,24,2015,83,56,89,88,76,37,0.8,4 QB,Nick Foles,27,2012,80,73,85,90,79,20,12.3,2 QB,Case Keenum,28,2012,60,65,79,83,74,20,3.6,1 QB,Jared Goff,21,2016,105,75,85,93,89,80,7,4 QB,Dylan Thompson,24,2015,64,49,90,86,77,76,0.5,1 RB,Todd Gurley,21,2015,93,54,73,101,101,90,3.5,4 RB,Benny Cunningham,25,2013,61,72,84,84,87,52,1.7,1 RB,Terrence Magee,23,2015,64,39,88,74,87,83,0.5,1 RB,Tre Mason,22,2014,82,70,88,75,88,82,0.7,4 RB,Chase Reynolds,28,2011,61,65,85,66,84,81,0.9,1 WR,Tavon Austin,25,2013,101,76,93,77,95,94,3.2,4 WR,Deon Long,25,2015,64,46,82,81,89,64,0.5,2 WR,Cory Harkey,26,2012,60,78,95,78,68,45,1.9,3 WR,Lance Kendricks,28,2011,84,74,94,79,81,63,4.6,4 WR,Kenny Britt,27,2009,82,81,82,87,85,72,4.6,2 WR,Stedman Bailey,25,2013,81,71,94,84,87,80,0.7,4 WR,Brian Quick,27,2012,85,74,87,84,87,67,1.8,1 OL,Garrett Reynolds,28,2009,72,76,97,86,82,74,1.1,2 OL,Rodger Saffold,28,2010,83,83,84,84,74,86,6.3,5 OL,Cody Wichmann,24,2015,73,50,92,79,74,76,0.6,4 OL,Greg Robinson,23,2014,102,74,95,94,88,73,5.3,4 OL,Tim Barnes,28,2011,60,73,90,80,76,82,2.8,2 OL,Rob Havenstein,24,2015,88,58,90,79,88,71,1,4 OL,Demetrius Rhaney,23,2014,67,50,92,83,75,79,0.6,4 OL,Jamon Brown,23,2015,88,63,91,87,84,73,0.8,4 OL,Eric Kush,26,2013,76,70,87,79,79,76,1.3,1 OL,David Arkin,28,2011,82,46,89,91,79,77,0.7,2 OL,Andrew Donnal,24,2015,83,64,84,77,78,72,0.7,4 OL,Brian Folkerts,26,2012,61,61,95,91,79,75,0.7,1 K,Greg Zuerlein,28,2012,75,74,95,95,88,70,1.3,1 K,Johnny Hekker,26,2012,60,79,94,97,97,75,3,6 S,LaMarcus Joyner,25,2014,87,62,93,75,93,80,1.3,4 S,TJ McDonald,25,2013,86,72,84,74,91,91,0.7,4 S,Maurice Alexander,25,2014,65,38,89,71,90,87,0.7,4 S,Christian Bryant,24,2014,68,36,79,74,86,78,0.5,2 S,Mark Barron,26,2012,100,73,81,69,67,69,9,5 S,Cody Davis,27,2013,61,55,90,72,92,63,1.5,2 CB,EJ Gaines,24,2014,72,74,90,85,89,59,0.6,4 CB,Marcus Roberson,23,2014,62,47,82,82,90,60,0.5,3 CB,Coty Sensabaugh,27,2012,80,67,95,78,91,42,5,3 CB,Trumaine Johnson,26,2012,85,72,87,77,86,74,14,1 DL,Aaron Donald,25,2014,92,76,95,103,92,87,2.5,4 DL,Ethan Westbrooks,25,2014,62,50,90,75,68,67,0.5,3 DL,Dominique Easley,24,2014,88,62,74,82,84,83,0.6,1 DL,Robert Quinn,26,2011,89,82,92,97,97,79,14.3,4 DL,William Hayes,31,2008,76,80,93,85,83,86,5.8,3 DL,Cam Thomas,29,2010,74,74,87,94,77,85,0.5,1 DL,Eugene Sims,30,2010,68,72,88,74,67,64,3.3,3 DL,Michael Brockers,25,2012,90,74,95,94,82,92,2.4,4 LB,Quinton Coples,25,2012,90,77,93,83,87,72,3.3,2 LB,Alec Ogletree,24,2013,86,74,87,90,66,75,1.8,4 LB,Bryce Hager,24,2015,73,62,83,83,47,75,0.6,4 LB,Akeem Ayers,26,2011,84,74,95,81,84,75,3,2 END_PLAYERS Seattle Seahawks,SEA QB,Russell Wilson,27,2012,80,84,94,103,95,97,21.9,4 QB,Tarvaris Jackson,33,2006,80,67,81,93,70,62,1.5,1 RB,Derrick Coleman,25,2012,55,72,87,82,87,61,0.5,3 RB,Christine Michael,25,2013,86,65,80,89,90,65,0.7,1 RB,Fred Jackson,35,2003,65,92,85,87,81,65,0.9,1 RB,Thomas Rawls,22,2015,63,47,86,82,90,60,0.5,3 RB,Bryce Brown,25,2010,65,65,86,84,88,67,0.7,1 WR,Jermaine Kearse,26,2012,60,79,96,86,89,75,4.5,3 WR,George Farmer,22,2015,64,48,75,77,92,55,0.5,1 WR,Antwan Goodley,24,2015,63,51,86,82,91,82,0.5,1 WR,Doug Baldwin,27,2011,59,85,92,88,87,86,4.3,3 WR,Tyler Lockett,23,2015,88,63,81,82,92,87,0.8,4 WR,Paul Richardson,24,2014,87,66,77,82,94,76,1.2,4 WR,Jimmy Graham,29,2010,78,87,92,102,85,60,10,4 OL,Patrick Lewis,25,2013,61,62,95,84,71,76,1.7,1 OL,Kristjan Sokoli,24,2015,73,37,90,89,75,65,0.6,4 OL,Mark Glowinski,24,2015,78,55,92,91,80,76,0.7,4 OL,Justin Britt,25,2014,87,72,85,86,84,72,0.9,4 OL,Garry Gilliam,25,2014,62,60,84,77,80,75,0.5,3 OL,Bradley Sowell,27,2012,60,77,91,79,78,76,1,1 OL,J'Marcus Webb,27,2010,68,73,93,90,77,78,2.9,2 OL,Lemuel Jeanpierre,29,2011,65,74,92,83,79,75,0.7,1 OL,Germain Ifedi,22,2016,90,65,85,85,90,83,2.1,4 OL,Terry Poole,24,2015,78,49,93,83,72,82,0.5,1 K,Steven Hauschka,30,2008,56,83,90,89,93,65,2.9,3 K,Jon Ryan,34,2006,54,87,88,89,94,69,2.5,4 S,Kelcie McCray,27,2012,61,65,90,72,87,52,0.7,2 S,Deshawn Shead,27,2012,60,68,90,73,88,73,0.8,1 S,Kam Chancellor,28,2010,73,85,94,82,86,107,7,4 S,Earl Thomas III,27,2010,88,86,93,106,92,72,10,4 CB,Brandon Browner,31,2005,58,87,88,92,80,73,0.8,1 CB,Jeremy Lane,25,2012,75,75,90,85,88,72,5.8,4 CB,Eric Pinkins,24,2014,72,52,92,67,54,66,0.5,1 CB,Stanley Jean-Baptiste,26,2014,87,46,93,83,91,61,0.5,1 CB,Marcus Burley,25,2013,61,67,93,85,94,55,0.6,1 CB,Tye Smith,23,2015,78,43,94,78,89,60,0.6,4 CB,Richard Sherman,28,2011,74,97,96,109,89,65,14,4 CB,Steven Terrell,25,2013,61,50,90,77,91,70,0.6,1 CB,Tharold Simon,25,2013,76,68,85,81,89,80,0.6,4 DL,Sealver Siliga,27,2011,59,78,90,88,80,90,1.1,1 DL,Michael Bennett,30,2009,84,87,87,101,94,87,7.1,2 DL,Jordan Hill,25,2013,81,68,93,84,76,74,0.7,4 DL,Cassius Marsh,23,2014,82,53,92,66,80,69,0.7,4 DL,Frank Clark,23,2015,88,39,86,73,84,77,0.9,4 DL,Ryan Robinson,25,2013,61,57,87,67,62,65,0.6,2 DL,Cliff Avril,30,2008,76,87,93,73,76,64,7.1,4 DL,Demarcus Dobbs,28,2011,65,73,91,84,78,74,0.8,1 DL,Ahtyba Rubin,29,2008,66,85,90,93,71,79,4,3 DL,Justin Hamilton,22,2015,63,50,87,85,83,62,0.5,1 LB,Nick Moody,26,2013,65,68,77,77,71,75,0.6,1 LB,KJ Wright,26,2011,79,86,95,91,78,85,6.8,4 LB,Khairi Fortt,24,2014,78,57,78,73,68,64,0.5,1 LB,Bobby Wagner,25,2012,85,86,94,97,86,90,10.8,4 LB,Kevin Pierre-Louis,24,2014,77,62,85,80,72,54,0.7,4 LB,Brock Coyle,25,2014,62,67,93,79,62,71,0.5,3 END_PLAYERS San Francisco 49ers,SF QB,Colin Kaepernick,28,2011,84,75,95,95,78,80,19,6 QB,Thad Lewis,28,2010,61,65,92,88,70,57,0.8,1 QB,Blaine Gabbert,26,2011,89,65,90,88,72,47,2,2 RB,Shaun Draughn,28,2011,61,72,87,80,82,65,0.9,1 RB,Mike Davis,23,2015,78,55,77,84,88,65,0.7,4 RB,Bruce Miller,28,2011,69,78,93,66,81,35,1.8,3 RB,Carlos Hyde,24,2014,87,69,92,90,85,66,0.9,4 WR,Jerome Simpson,30,2008,83,75,92,78,87,85,0.9,2 WR,DeAndre Smelter,24,2015,79,48,73,79,87,77,0.7,4 WR,Dres Anderson,23,2015,63,62,75,80,88,84,0.5,3 WR,Quinton Patton,25,2013,76,54,90,82,87,85,0.6,4 WR,Vance McDonald,26,2013,86,66,88,73,81,52,0.9,4 WR,Torrey Smith,27,2011,84,86,93,88,89,83,8,5 WR,Bruce Ellington,24,2014,82,53,91,83,90,88,0.7,4 OL,Erik Pears,34,2005,55,78,93,86,70,80,2.9,2 OL,Daniel Kilgore,28,2011,74,76,88,89,90,77,1.8,3 OL,Joe Staley,31,2007,80,95,91,88,97,90,7.4,6 OL,Ian Silberman,23,2015,73,49,87,81,81,72,0.6,4 OL,Brandon Thomas,25,2014,83,54,76,93,83,76,0.7,4 OL,Andrew Tiller,26,2012,71,55,91,79,81,72,0.6,2 OL,Marcus Martin,22,2014,87,68,83,82,85,74,0.8,4 OL,Joshua Garnett,22,2016,90,65,85,85,91,80,2.3,4 OL,Zane Beadles,29,2010,83,81,93,83,74,89,3.3,3 K,Phil Dawson,41,2098,48,93,85,92,89,60,3.1,1 K,Bradley Pinion,22,2015,78,55,92,91,78,74,0.6,4 S,Eric Reid,24,2013,91,67,90,82,94,93,2.1,4 S,LJ McCray,25,2014,62,40,88,69,92,75,0.5,3 S,Antoine Bethea,31,2006,64,91,96,85,88,80,5.3,4 S,Jimmie Ward,24,2014,87,59,95,71,90,77,1.8,4 S,Jaquiski Tartt,24,2015,88,45,92,66,90,84,1.3,4 CB,Keith Reaser,24,2014,78,38,76,74,88,45,0.6,4 CB,Chris Davis,25,2014,62,60,93,76,87,78,0.6,2 CB,Tramaine Brock,27,2010,58,76,93,79,90,52,3.5,4 CB,Kenneth Acker,24,2014,72,47,91,79,89,42,0.6,4 CB,Dontae Johnson,24,2014,77,60,92,84,92,60,0.7,4 CB,Marcus Cromartie,25,2013,62,49,90,79,89,55,0.6,2 DL,DeForest Buckner,22,2016,105,65,85,91,86,81,4.5,4 DL,Arik Armstead,22,2015,93,48,87,85,81,91,2.5,4 DL,Tony Jerod-Eddie,26,2012,62,75,91,83,79,82,1,1 DL,Glenn Dorsey,30,2008,96,77,88,86,64,75,4.4,2 DL,Kaleb Ramsey,27,2014,68,52,72,94,78,84,0.6,2 DL,Quinton Dial,25,2013,76,70,85,87,79,86,4.2,3 DL,Ian Williams,26,2011,59,76,83,93,78,87,3,1 LB,Ahmad Brooks,32,2006,74,83,87,87,78,78,6.7,6 LB,Aaron Lynch,23,2014,77,75,88,77,91,70,0.6,4 LB,Eli Harold,22,2015,83,49,92,77,72,54,0.8,4 LB,Navorro Bowman,28,2010,78,89,87,97,81,88,9.1,5 LB,Gerald Hodges,25,2013,81,78,88,89,58,80,0.6,4 LB,Nick Bellore,27,2011,59,70,87,86,64,72,0.8,2 LB,Michael Wilhoite,29,2011,60,77,90,83,66,82,1.7,1 LB,Corey Lemonier,24,2013,81,63,90,73,61,65,0.7,4 END_PLAYERS
Tas9er / EgGateWayGetShellCode By:Tas9er
yumusb / EgGateWayGetShell PyEgGateWayGetShell py脚本
rick2785 / JavaCodeI specifically cover the following topics: Java primitive data types, declaration statements, expression statements, importing class libraries, excepting user input, checking for valid input, catching errors in input, math functions, if statement, relational operators, logical operators, ternary operator, switch statement, and looping. How class variables differ from local variables, Java Exception handling, the difference between run time and checked exceptions, Arrays, and UML Diagrams. Monsters gameboard, Java collection classes, Java ArrayLists, Linked Lists, manipulating Strings and StringBuilders, Polymorphism, Inheritance, Protected, Final, Instanceof, interfaces, abstract classes, abstract methods. You need interfaces and abstract classes because Java doesn't allow you to inherit from more than one other class. Java threads, Regular Expressions, Graphical User Interfaces (GUI) using Java Swing and its components, GUI Event Handling, ChangeListener, JOptionPane, combo boxes, list boxes, JLists, DefaultListModel, using JScrollpane with JList, JSpinner, JTree, Flow, Border, and Box Layout Managers. Created a calculator layout with Java Swing's GridLayout, GridBagLayout, GridBagConstraints, Font, and Insets. JLabel, JTextField, JComboBox, JSpinner, JSlider, JRadioButton, ButtonGroup, JCheckBox, JTextArea, JScrollPane, ChangeListener, pack, create and delete files and directories. How to pull lists of files from directories and manipulate them, write to and read character streams from files. PrintWriter, BufferedWriter, FileWriter, BufferedReader, FileReader, common file exceptions Binary Streams - DataOutputStream, FileOutputStream, BufferedOutputStream, all of the reading and writing primitive type methods, setup Java JDBC in Eclipse, connect to a MySQL database, query it and get the results of a query. JTables, JEditorPane Swing component. HyperlinkEvent and HyperlinkListener. Java JApplet, Java Servlets with Tomcat, GET and POST methods, Java Server Pages, parsing XML with Java, Java XPath, JDOM2 library, and 2D graphics. *Created a Java Paint Application using swing, events, mouse events, Graphics2D, ArrayList *Designed a Java Video Game like Asteroids with collision detection and shooting torpedos which also played sound in a JFrame, and removed items from the screen when they were destroyed. Rotating polygons, and Making Java Executable. Model View Controller (MVC) The Model is the class that contains the data and the methods needed to use the data. The View is the interface. The Controller coordinates interactions between the Model and View. DESIGN PATTERNS: Strategy design patternis used if you need to dynamically change an algorithm used by an object at run time. The pattern also allows you to eliminate code duplication. It separates behavior from super and subclasses. The Observer pattern is a software design pattern in which an object, called the subject (Publisher), maintains a list of its dependents, called observers (Subscribers), and notifies them automatically of any state changes, usually by calling one of their methods. The Factory design pattern is used when you want to define the class of an object at runtime. It also allows you to encapsulate object creation so that you can keep all object creation code in one place The Abstract Factory Design Pattern is like a factory, but everything is encapsulated. The Singleton pattern is used when you want to eliminate the option of instantiating more than one object. (Scrabble letters app) The Builder Design Pattern is used when you want to have many classes help in the creation of an object. By having different classes build the object you can then easily create many different types of objects without being forced to rewrite code. The Builder pattern provides a different way to make complex objects like you'd make using the Abstract Factory design pattern. The Prototype design pattern is used for creating new objects (instances) by cloning (copying) other objects. It allows for the adding of any subclass instance of a known super class at run time. It is used when there are numerous potential classes that you want to only use if needed at runtime. The major benefit of using the Prototype pattern is that it reduces the need for creating potentially unneeded subclasses. Java Reflection is an API and it's used to manipulate classes and everything in a class including fields, methods, constructors, private data, etc. (TestingReflection.java) The Decorator allows you to modify an object dynamically. You would use it when you want the capabilities of inheritance with subclasses, but you need to add functionality at run time. It is more flexible than inheritance. The Decorator Design Pattern simplifies code because you add functionality using many simple classes. Also, rather than rewrite old code you can extend it with new code and that is always good. (Pizza app) The Command design pattern allows you to store a list of commands for later use. With it you can store multiple commands in a class to use over and over. (ElectronicDevice app) The Adapter pattern is used when you want to translate one interface of a class into another interface. Allows 2 incompatible interfaces to work together. It allows the use of the available interface and the target interface. Any class can work together as long as the Adapter solves the issue that all classes must implement every method defined by the shared interface. (EnemyAttacker app) The Facade pattern basically says that you should simplify your methods so that much of what is done is in the background. In technical terms you should decouple the client from the sub components needed to perform an operation. (Bank app) The Bridge Pattern is used to decouple an abstraction from its implementation so that the two can vary independently. Progressively adding functionality while separating out major differences using abstract classes. (EntertainmentDevice app) In a Template Method pattern, you define a method (algorithm) in an abstract class. It contains both abstract methods and non-abstract methods. The subclasses that extend this abstract class then override those methods that don't make sense for them to use in the default way. (Sandwich app) The Iterator pattern provides you with a uniform way to access different collections of Objects. You can also write polymorphic code because you can refer to each collection of objects because they'll implement the same interface. (SongIterator app) The Composite design pattern is used to structure data into its individual parts as well as represent the inner workings of every part of a larger object. The composite pattern also allows you to treat both groups of parts in the same way as you treat the parts polymorphically. You can structure data, or represent the inner working of every part of a whole object individually. (SongComponent app) The flyweight design pattern is used to dramatically increase the speed of your code when you are using many similar objects. To reduce memory usage the flyweight design pattern shares Objects that are the same rather than creating new ones. (FlyWeightTest app) State Pattern allows an object to alter its behavior when its internal state changes. The object will appear to change its class. (ATMState) The Proxy design pattern limits access to just the methods you want made accessible in another class. It can be used for security reasons, because an Object is intensive to create, or is accessed from a remote location. You can think of it as a gate keeper that blocks access to another Object. (TestATMMachine) The Chain of Responsibility pattern has a group of objects that are expected to between them be able to solve a problem. If the first Object can't solve it, it passes the data to the next Object in the chain. (TestCalcChain) The Interpreter pattern is used to convert one representation of data into another. The context cantains the information that will be interpreted. The expression is an abstract class that defines all the methods needed to perform the different conversions. The terminal or concrete expressions provide specific conversions on different types of data. (MeasurementConversion) The Mediator design pattern is used to handle communication between related objects (Colleagues). All communication is handled by a Mediator Object and the Colleagues don't need to know anything about each other to work together. (TestStockMediator) The Memento design pattern provides a way to store previous states of an Object easily. It has 3 main classes: 1) Memento: The basic object that is stored in different states. 2) Originator: Sets and Gets values from the currently targeted Memento. Creates new Mementos and assigns current values to them. 3) Caretaker: Holds an ArrayList that contains all previous versions of the Memento. It can store and retrieve stored Mementos. (TestMemento) The Visitor design pattern allows you to add methods to classes of different types without much altering to those classes. You can make completely different methods depending on the class used with this pattern. (VisitorTest)
Aryia-Behroziuan / ReferencesPoole, Mackworth & Goebel 1998, p. 1. Russell & Norvig 2003, p. 55. Definition of AI as the study of intelligent agents: Poole, Mackworth & Goebel (1998), which provides the version that is used in this article. These authors use the term "computational intelligence" as a synonym for artificial intelligence.[1] Russell & Norvig (2003) (who prefer the term "rational agent") and write "The whole-agent view is now widely accepted in the field".[2] Nilsson 1998 Legg & Hutter 2007 Russell & Norvig 2009, p. 2. McCorduck 2004, p. 204 Maloof, Mark. "Artificial Intelligence: An Introduction, p. 37" (PDF). georgetown.edu. Archived (PDF) from the original on 25 August 2018. "How AI Is Getting Groundbreaking Changes In Talent Management And HR Tech". Hackernoon. Archived from the original on 11 September 2019. Retrieved 14 February 2020. Schank, Roger C. (1991). "Where's the AI". AI magazine. Vol. 12 no. 4. p. 38. Russell & Norvig 2009. "AlphaGo – Google DeepMind". Archived from the original on 10 March 2016. Allen, Gregory (April 2020). "Department of Defense Joint AI Center - Understanding AI Technology" (PDF). AI.mil - The official site of the Department of Defense Joint Artificial Intelligence Center. Archived (PDF) from the original on 21 April 2020. Retrieved 25 April 2020. Optimism of early AI: * Herbert Simon quote: Simon 1965, p. 96 quoted in Crevier 1993, p. 109. * Marvin Minsky quote: Minsky 1967, p. 2 quoted in Crevier 1993, p. 109. Boom of the 1980s: rise of expert systems, Fifth Generation Project, Alvey, MCC, SCI: * McCorduck 2004, pp. 426–441 * Crevier 1993, pp. 161–162,197–203, 211, 240 * Russell & Norvig 2003, p. 24 * NRC 1999, pp. 210–211 * Newquist 1994, pp. 235–248 First AI Winter, Mansfield Amendment, Lighthill report * Crevier 1993, pp. 115–117 * Russell & Norvig 2003, p. 22 * NRC 1999, pp. 212–213 * Howe 1994 * Newquist 1994, pp. 189–201 Second AI winter: * McCorduck 2004, pp. 430–435 * Crevier 1993, pp. 209–210 * NRC 1999, pp. 214–216 * Newquist 1994, pp. 301–318 AI becomes hugely successful in the early 21st century * Clark 2015 Pamela McCorduck (2004, p. 424) writes of "the rough shattering of AI in subfields—vision, natural language, decision theory, genetic algorithms, robotics ... and these with own sub-subfield—that would hardly have anything to say to each other." This list of intelligent traits is based on the topics covered by the major AI textbooks, including: * Russell & Norvig 2003 * Luger & Stubblefield 2004 * Poole, Mackworth & Goebel 1998 * Nilsson 1998 Kolata 1982. Maker 2006. Biological intelligence vs. intelligence in general: Russell & Norvig 2003, pp. 2–3, who make the analogy with aeronautical engineering. McCorduck 2004, pp. 100–101, who writes that there are "two major branches of artificial intelligence: one aimed at producing intelligent behavior regardless of how it was accomplished, and the other aimed at modeling intelligent processes found in nature, particularly human ones." Kolata 1982, a paper in Science, which describes McCarthy's indifference to biological models. Kolata quotes McCarthy as writing: "This is AI, so we don't care if it's psychologically real".[19] McCarthy recently reiterated his position at the AI@50 conference where he said "Artificial intelligence is not, by definition, simulation of human intelligence".[20]. Neats vs. scruffies: * McCorduck 2004, pp. 421–424, 486–489 * Crevier 1993, p. 168 * Nilsson 1983, pp. 10–11 Symbolic vs. sub-symbolic AI: * Nilsson (1998, p. 7), who uses the term "sub-symbolic". General intelligence (strong AI) is discussed in popular introductions to AI: * Kurzweil 1999 and Kurzweil 2005 See the Dartmouth proposal, under Philosophy, below. McCorduck 2004, p. 34. McCorduck 2004, p. xviii. McCorduck 2004, p. 3. McCorduck 2004, pp. 340–400. This is a central idea of Pamela McCorduck's Machines Who Think. She writes: "I like to think of artificial intelligence as the scientific apotheosis of a venerable cultural tradition."[26] "Artificial intelligence in one form or another is an idea that has pervaded Western intellectual history, a dream in urgent need of being realized."[27] "Our history is full of attempts—nutty, eerie, comical, earnest, legendary and real—to make artificial intelligences, to reproduce what is the essential us—bypassing the ordinary means. Back and forth between myth and reality, our imaginations supplying what our workshops couldn't, we have engaged for a long time in this odd form of self-reproduction."[28] She traces the desire back to its Hellenistic roots and calls it the urge to "forge the Gods."[29] "Stephen Hawking believes AI could be mankind's last accomplishment". BetaNews. 21 October 2016. Archived from the original on 28 August 2017. Lombardo P, Boehm I, Nairz K (2020). "RadioComics – Santa Claus and the future of radiology". Eur J Radiol. 122 (1): 108771. doi:10.1016/j.ejrad.2019.108771. PMID 31835078. Ford, Martin; Colvin, Geoff (6 September 2015). "Will robots create more jobs than they destroy?". The Guardian. Archived from the original on 16 June 2018. Retrieved 13 January 2018. AI applications widely used behind the scenes: * Russell & Norvig 2003, p. 28 * Kurzweil 2005, p. 265 * NRC 1999, pp. 216–222 * Newquist 1994, pp. 189–201 AI in myth: * McCorduck 2004, pp. 4–5 * Russell & Norvig 2003, p. 939 AI in early science fiction. * McCorduck 2004, pp. 17–25 Formal reasoning: * Berlinski, David (2000). The Advent of the Algorithm. Harcourt Books. ISBN 978-0-15-601391-8. OCLC 46890682. Archived from the original on 26 July 2020. Retrieved 22 August 2020. Turing, Alan (1948), "Machine Intelligence", in Copeland, B. Jack (ed.), The Essential Turing: The ideas that gave birth to the computer age, Oxford: Oxford University Press, p. 412, ISBN 978-0-19-825080-7 Russell & Norvig 2009, p. 16. Dartmouth conference: * McCorduck 2004, pp. 111–136 * Crevier 1993, pp. 47–49, who writes "the conference is generally recognized as the official birthdate of the new science." * Russell & Norvig 2003, p. 17, who call the conference "the birth of artificial intelligence." * NRC 1999, pp. 200–201 McCarthy, John (1988). "Review of The Question of Artificial Intelligence". Annals of the History of Computing. 10 (3): 224–229., collected in McCarthy, John (1996). "10. Review of The Question of Artificial Intelligence". Defending AI Research: A Collection of Essays and Reviews. CSLI., p. 73, "[O]ne of the reasons for inventing the term "artificial intelligence" was to escape association with "cybernetics". Its concentration on analog feedback seemed misguided, and I wished to avoid having either to accept Norbert (not Robert) Wiener as a guru or having to argue with him." Hegemony of the Dartmouth conference attendees: * Russell & Norvig 2003, p. 17, who write "for the next 20 years the field would be dominated by these people and their students." * McCorduck 2004, pp. 129–130 Russell & Norvig 2003, p. 18. Schaeffer J. (2009) Didn't Samuel Solve That Game?. In: One Jump Ahead. Springer, Boston, MA Samuel, A. L. (July 1959). "Some Studies in Machine Learning Using the Game of Checkers". IBM Journal of Research and Development. 3 (3): 210–229. CiteSeerX 10.1.1.368.2254. doi:10.1147/rd.33.0210. "Golden years" of AI (successful symbolic reasoning programs 1956–1973): * McCorduck 2004, pp. 243–252 * Crevier 1993, pp. 52–107 * Moravec 1988, p. 9 * Russell & Norvig 2003, pp. 18–21 The programs described are Arthur Samuel's checkers program for the IBM 701, Daniel Bobrow's STUDENT, Newell and Simon's Logic Theorist and Terry Winograd's SHRDLU. DARPA pours money into undirected pure research into AI during the 1960s: * McCorduck 2004, p. 131 * Crevier 1993, pp. 51, 64–65 * NRC 1999, pp. 204–205 AI in England: * Howe 1994 Lighthill 1973. Expert systems: * ACM 1998, I.2.1 * Russell & Norvig 2003, pp. 22–24 * Luger & Stubblefield 2004, pp. 227–331 * Nilsson 1998, chpt. 17.4 * McCorduck 2004, pp. 327–335, 434–435 * Crevier 1993, pp. 145–62, 197–203 * Newquist 1994, pp. 155–183 Mead, Carver A.; Ismail, Mohammed (8 May 1989). Analog VLSI Implementation of Neural Systems (PDF). The Kluwer International Series in Engineering and Computer Science. 80. Norwell, MA: Kluwer Academic Publishers. doi:10.1007/978-1-4613-1639-8. ISBN 978-1-4613-1639-8. Archived from the original (PDF) on 6 November 2019. Retrieved 24 January 2020. Formal methods are now preferred ("Victory of the neats"): * Russell & Norvig 2003, pp. 25–26 * McCorduck 2004, pp. 486–487 McCorduck 2004, pp. 480–483. Markoff 2011. "Ask the AI experts: What's driving today's progress in AI?". McKinsey & Company. Archived from the original on 13 April 2018. Retrieved 13 April 2018. Administrator. "Kinect's AI breakthrough explained". i-programmer.info. Archived from the original on 1 February 2016. Rowinski, Dan (15 January 2013). "Virtual Personal Assistants & The Future Of Your Smartphone [Infographic]". ReadWrite. Archived from the original on 22 December 2015. "Artificial intelligence: Google's AlphaGo beats Go master Lee Se-dol". BBC News. 12 March 2016. Archived from the original on 26 August 2016. Retrieved 1 October 2016. Metz, Cade (27 May 2017). "After Win in China, AlphaGo's Designers Explore New AI". Wired. Archived from the original on 2 June 2017. "World's Go Player Ratings". May 2017. Archived from the original on 1 April 2017. "柯洁迎19岁生日 雄踞人类世界排名第一已两年" (in Chinese). May 2017. Archived from the original on 11 August 2017. Clark, Jack (8 December 2015). "Why 2015 Was a Breakthrough Year in Artificial Intelligence". Bloomberg News. Archived from the original on 23 November 2016. Retrieved 23 November 2016. After a half-decade of quiet breakthroughs in artificial intelligence, 2015 has been a landmark year. Computers are smarter and learning faster than ever. "Reshaping Business With Artificial Intelligence". MIT Sloan Management Review. Archived from the original on 19 May 2018. Retrieved 2 May 2018. Lorica, Ben (18 December 2017). "The state of AI adoption". O'Reilly Media. Archived from the original on 2 May 2018. Retrieved 2 May 2018. Allen, Gregory (6 February 2019). "Understanding China's AI Strategy". Center for a New American Security. Archived from the original on 17 March 2019. "Review | How two AI superpowers – the U.S. and China – battle for supremacy in the field". Washington Post. 2 November 2018. Archived from the original on 4 November 2018. Retrieved 4 November 2018. at 10:11, Alistair Dabbs 22 Feb 2019. "Artificial Intelligence: You know it isn't real, yeah?". www.theregister.co.uk. Archived from the original on 21 May 2020. Retrieved 22 August 2020. "Stop Calling it Artificial Intelligence". Archived from the original on 2 December 2019. Retrieved 1 December 2019. "AI isn't taking over the world – it doesn't exist yet". GBG Global website. Archived from the original on 11 August 2020. Retrieved 22 August 2020. Kaplan, Andreas; Haenlein, Michael (1 January 2019). "Siri, Siri, in my hand: Who's the fairest in the land? On the interpretations, illustrations, and implications of artificial intelligence". Business Horizons. 62 (1): 15–25. doi:10.1016/j.bushor.2018.08.004. Domingos 2015, Chapter 5. Domingos 2015, Chapter 7. Lindenbaum, M., Markovitch, S., & Rusakov, D. (2004). Selective sampling for nearest neighbor classifiers. Machine learning, 54(2), 125–152. Domingos 2015, Chapter 1. Intractability and efficiency and the combinatorial explosion: * Russell & Norvig 2003, pp. 9, 21–22 Domingos 2015, Chapter 2, Chapter 3. Hart, P. E.; Nilsson, N. J.; Raphael, B. (1972). "Correction to "A Formal Basis for the Heuristic Determination of Minimum Cost Paths"". SIGART Newsletter (37): 28–29. doi:10.1145/1056777.1056779. S2CID 6386648. Domingos 2015, Chapter 2, Chapter 4, Chapter 6. "Can neural network computers learn from experience, and if so, could they ever become what we would call 'smart'?". Scientific American. 2018. Archived from the original on 25 March 2018. Retrieved 24 March 2018. Domingos 2015, Chapter 6, Chapter 7. Domingos 2015, p. 286. "Single pixel change fools AI programs". BBC News. 3 November 2017. Archived from the original on 22 March 2018. Retrieved 12 March 2018. "AI Has a Hallucination Problem That's Proving Tough to Fix". WIRED. 2018. Archived from the original on 12 March 2018. Retrieved 12 March 2018. Matti, D.; Ekenel, H. K.; Thiran, J. P. (2017). Combining LiDAR space clustering and convolutional neural networks for pedestrian detection. 2017 14th IEEE International Conference on Advanced Video and Signal Based Surveillance (AVSS). pp. 1–6. arXiv:1710.06160. doi:10.1109/AVSS.2017.8078512. ISBN 978-1-5386-2939-0. S2CID 2401976. Ferguson, Sarah; Luders, Brandon; Grande, Robert C.; How, Jonathan P. (2015). Real-Time Predictive Modeling and Robust Avoidance of Pedestrians with Uncertain, Changing Intentions. Algorithmic Foundations of Robotics XI. Springer Tracts in Advanced Robotics. 107. Springer, Cham. pp. 161–177. arXiv:1405.5581. doi:10.1007/978-3-319-16595-0_10. ISBN 978-3-319-16594-3. S2CID 8681101. "Cultivating Common Sense | DiscoverMagazine.com". Discover Magazine. 2017. Archived from the original on 25 March 2018. Retrieved 24 March 2018. Davis, Ernest; Marcus, Gary (24 August 2015). "Commonsense reasoning and commonsense knowledge in artificial intelligence". Communications of the ACM. 58 (9): 92–103. doi:10.1145/2701413. S2CID 13583137. Archived from the original on 22 August 2020. Retrieved 6 April 2020. Winograd, Terry (January 1972). "Understanding natural language". Cognitive Psychology. 3 (1): 1–191. doi:10.1016/0010-0285(72)90002-3. "Don't worry: Autonomous cars aren't coming tomorrow (or next year)". Autoweek. 2016. Archived from the original on 25 March 2018. Retrieved 24 March 2018. Knight, Will (2017). "Boston may be famous for bad drivers, but it's the testing ground for a smarter self-driving car". MIT Technology Review. Archived from the original on 22 August 2020. Retrieved 27 March 2018. Prakken, Henry (31 August 2017). "On the problem of making autonomous vehicles conform to traffic law". Artificial Intelligence and Law. 25 (3): 341–363. doi:10.1007/s10506-017-9210-0. Lieto, Antonio (May 2018). "The knowledge level in cognitive architectures: Current limitations and possible developments". Cognitive Systems Research. 48: 39–55. doi:10.1016/j.cogsys.2017.05.001. hdl:2318/1665207. S2CID 206868967. Problem solving, puzzle solving, game playing and deduction: * Russell & Norvig 2003, chpt. 3–9, * Poole, Mackworth & Goebel 1998, chpt. 2,3,7,9, * Luger & Stubblefield 2004, chpt. 3,4,6,8, * Nilsson 1998, chpt. 7–12 Uncertain reasoning: * Russell & Norvig 2003, pp. 452–644, * Poole, Mackworth & Goebel 1998, pp. 345–395, * Luger & Stubblefield 2004, pp. 333–381, * Nilsson 1998, chpt. 19 Psychological evidence of sub-symbolic reasoning: * Wason & Shapiro (1966) showed that people do poorly on completely abstract problems, but if the problem is restated to allow the use of intuitive social intelligence, performance dramatically improves. (See Wason selection task) * Kahneman, Slovic & Tversky (1982) have shown that people are terrible at elementary problems that involve uncertain reasoning. (See list of cognitive biases for several examples). * Lakoff & Núñez (2000) have controversially argued that even our skills at mathematics depend on knowledge and skills that come from "the body", i.e. sensorimotor and perceptual skills. (See Where Mathematics Comes From) Knowledge representation: * ACM 1998, I.2.4, * Russell & Norvig 2003, pp. 320–363, * Poole, Mackworth & Goebel 1998, pp. 23–46, 69–81, 169–196, 235–277, 281–298, 319–345, * Luger & Stubblefield 2004, pp. 227–243, * Nilsson 1998, chpt. 18 Knowledge engineering: * Russell & Norvig 2003, pp. 260–266, * Poole, Mackworth & Goebel 1998, pp. 199–233, * Nilsson 1998, chpt. ≈17.1–17.4 Representing categories and relations: Semantic networks, description logics, inheritance (including frames and scripts): * Russell & Norvig 2003, pp. 349–354, * Poole, Mackworth & Goebel 1998, pp. 174–177, * Luger & Stubblefield 2004, pp. 248–258, * Nilsson 1998, chpt. 18.3 Representing events and time:Situation calculus, event calculus, fluent calculus (including solving the frame problem): * Russell & Norvig 2003, pp. 328–341, * Poole, Mackworth & Goebel 1998, pp. 281–298, * Nilsson 1998, chpt. 18.2 Causal calculus: * Poole, Mackworth & Goebel 1998, pp. 335–337 Representing knowledge about knowledge: Belief calculus, modal logics: * Russell & Norvig 2003, pp. 341–344, * Poole, Mackworth & Goebel 1998, pp. 275–277 Sikos, Leslie F. (June 2017). Description Logics in Multimedia Reasoning. Cham: Springer. doi:10.1007/978-3-319-54066-5. ISBN 978-3-319-54066-5. S2CID 3180114. Archived from the original on 29 August 2017. Ontology: * Russell & Norvig 2003, pp. 320–328 Smoliar, Stephen W.; Zhang, HongJiang (1994). "Content based video indexing and retrieval". IEEE Multimedia. 1 (2): 62–72. doi:10.1109/93.311653. S2CID 32710913. Neumann, Bernd; Möller, Ralf (January 2008). "On scene interpretation with description logics". Image and Vision Computing. 26 (1): 82–101. doi:10.1016/j.imavis.2007.08.013. Kuperman, G. J.; Reichley, R. M.; Bailey, T. C. (1 July 2006). "Using Commercial Knowledge Bases for Clinical Decision Support: Opportunities, Hurdles, and Recommendations". Journal of the American Medical Informatics Association. 13 (4): 369–371. doi:10.1197/jamia.M2055. PMC 1513681. PMID 16622160. MCGARRY, KEN (1 December 2005). "A survey of interestingness measures for knowledge discovery". The Knowledge Engineering Review. 20 (1): 39–61. doi:10.1017/S0269888905000408. S2CID 14987656. Bertini, M; Del Bimbo, A; Torniai, C (2006). "Automatic annotation and semantic retrieval of video sequences using multimedia ontologies". MM '06 Proceedings of the 14th ACM international conference on Multimedia. 14th ACM international conference on Multimedia. Santa Barbara: ACM. pp. 679–682. Qualification problem: * McCarthy & Hayes 1969 * Russell & Norvig 2003[page needed] While McCarthy was primarily concerned with issues in the logical representation of actions, Russell & Norvig 2003 apply the term to the more general issue of default reasoning in the vast network of assumptions underlying all our commonsense knowledge. Default reasoning and default logic, non-monotonic logics, circumscription, closed world assumption, abduction (Poole et al. places abduction under "default reasoning". Luger et al. places this under "uncertain reasoning"): * Russell & Norvig 2003, pp. 354–360, * Poole, Mackworth & Goebel 1998, pp. 248–256, 323–335, * Luger & Stubblefield 2004, pp. 335–363, * Nilsson 1998, ~18.3.3 Breadth of commonsense knowledge: * Russell & Norvig 2003, p. 21, * Crevier 1993, pp. 113–114, * Moravec 1988, p. 13, * Lenat & Guha 1989 (Introduction) Dreyfus & Dreyfus 1986. Gladwell 2005. Expert knowledge as embodied intuition: * Dreyfus & Dreyfus 1986 (Hubert Dreyfus is a philosopher and critic of AI who was among the first to argue that most useful human knowledge was encoded sub-symbolically. See Dreyfus' critique of AI) * Gladwell 2005 (Gladwell's Blink is a popular introduction to sub-symbolic reasoning and knowledge.) * Hawkins & Blakeslee 2005 (Hawkins argues that sub-symbolic knowledge should be the primary focus of AI research.) Planning: * ACM 1998, ~I.2.8, * Russell & Norvig 2003, pp. 375–459, * Poole, Mackworth & Goebel 1998, pp. 281–316, * Luger & Stubblefield 2004, pp. 314–329, * Nilsson 1998, chpt. 10.1–2, 22 Information value theory: * Russell & Norvig 2003, pp. 600–604 Classical planning: * Russell & Norvig 2003, pp. 375–430, * Poole, Mackworth & Goebel 1998, pp. 281–315, * Luger & Stubblefield 2004, pp. 314–329, * Nilsson 1998, chpt. 10.1–2, 22 Planning and acting in non-deterministic domains: conditional planning, execution monitoring, replanning and continuous planning: * Russell & Norvig 2003, pp. 430–449 Multi-agent planning and emergent behavior: * Russell & Norvig 2003, pp. 449–455 Turing 1950. Solomonoff 1956. Alan Turing discussed the centrality of learning as early as 1950, in his classic paper "Computing Machinery and Intelligence".[120] In 1956, at the original Dartmouth AI summer conference, Ray Solomonoff wrote a report on unsupervised probabilistic machine learning: "An Inductive Inference Machine".[121] This is a form of Tom Mitchell's widely quoted definition of machine learning: "A computer program is set to learn from an experience E with respect to some task T and some performance measure P if its performance on T as measured by P improves with experience E." Learning: * ACM 1998, I.2.6, * Russell & Norvig 2003, pp. 649–788, * Poole, Mackworth & Goebel 1998, pp. 397–438, * Luger & Stubblefield 2004, pp. 385–542, * Nilsson 1998, chpt. 3.3, 10.3, 17.5, 20 Jordan, M. I.; Mitchell, T. M. (16 July 2015). "Machine learning: Trends, perspectives, and prospects". Science. 349 (6245): 255–260. Bibcode:2015Sci...349..255J. doi:10.1126/science.aaa8415. PMID 26185243. S2CID 677218. Reinforcement learning: * Russell & Norvig 2003, pp. 763–788 * Luger & Stubblefield 2004, pp. 442–449 Natural language processing: * ACM 1998, I.2.7 * Russell & Norvig 2003, pp. 790–831 * Poole, Mackworth & Goebel 1998, pp. 91–104 * Luger & Stubblefield 2004, pp. 591–632 "Versatile question answering systems: seeing in synthesis" Archived 1 February 2016 at the Wayback Machine, Mittal et al., IJIIDS, 5(2), 119–142, 2011 Applications of natural language processing, including information retrieval (i.e. text mining) and machine translation: * Russell & Norvig 2003, pp. 840–857, * Luger & Stubblefield 2004, pp. 623–630 Cambria, Erik; White, Bebo (May 2014). "Jumping NLP Curves: A Review of Natural Language Processing Research [Review Article]". IEEE Computational Intelligence Magazine. 9 (2): 48–57. doi:10.1109/MCI.2014.2307227. S2CID 206451986. Vincent, James (7 November 2019). "OpenAI has published the text-generating AI it said was too dangerous to share". The Verge. Archived from the original on 11 June 2020. Retrieved 11 June 2020. Machine perception: * Russell & Norvig 2003, pp. 537–581, 863–898 * Nilsson 1998, ~chpt. 6 Speech recognition: * ACM 1998, ~I.2.7 * Russell & Norvig 2003, pp. 568–578 Object recognition: * Russell & Norvig 2003, pp. 885–892 Computer vision: * ACM 1998, I.2.10 * Russell & Norvig 2003, pp. 863–898 * Nilsson 1998, chpt. 6 Robotics: * ACM 1998, I.2.9, * Russell & Norvig 2003, pp. 901–942, * Poole, Mackworth & Goebel 1998, pp. 443–460 Moving and configuration space: * Russell & Norvig 2003, pp. 916–932 Tecuci 2012. Robotic mapping (localization, etc): * Russell & Norvig 2003, pp. 908–915 Cadena, Cesar; Carlone, Luca; Carrillo, Henry; Latif, Yasir; Scaramuzza, Davide; Neira, Jose; Reid, Ian; Leonard, John J. (December 2016). "Past, Present, and Future of Simultaneous Localization and Mapping: Toward the Robust-Perception Age". IEEE Transactions on Robotics. 32 (6): 1309–1332. arXiv:1606.05830. Bibcode:2016arXiv160605830C. doi:10.1109/TRO.2016.2624754. S2CID 2596787. Moravec, Hans (1988). Mind Children. Harvard University Press. p. 15. Chan, Szu Ping (15 November 2015). "This is what will happen when robots take over the world". Archived from the original on 24 April 2018. Retrieved 23 April 2018. "IKEA furniture and the limits of AI". The Economist. 2018. Archived from the original on 24 April 2018. Retrieved 24 April 2018. Kismet. Thompson, Derek (2018). "What Jobs Will the Robots Take?". The Atlantic. Archived from the original on 24 April 2018. Retrieved 24 April 2018. Scassellati, Brian (2002). "Theory of mind for a humanoid robot". Autonomous Robots. 12 (1): 13–24. doi:10.1023/A:1013298507114. S2CID 1979315. Cao, Yongcan; Yu, Wenwu; Ren, Wei; Chen, Guanrong (February 2013). "An Overview of Recent Progress in the Study of Distributed Multi-Agent Coordination". IEEE Transactions on Industrial Informatics. 9 (1): 427–438. arXiv:1207.3231. doi:10.1109/TII.2012.2219061. S2CID 9588126. Thro 1993. Edelson 1991. Tao & Tan 2005. Poria, Soujanya; Cambria, Erik; Bajpai, Rajiv; Hussain, Amir (September 2017). "A review of affective computing: From unimodal analysis to multimodal fusion". Information Fusion. 37: 98–125. doi:10.1016/j.inffus.2017.02.003. hdl:1893/25490. Emotion and affective computing: * Minsky 2006 Waddell, Kaveh (2018). "Chatbots Have Entered the Uncanny Valley". The Atlantic. Archived from the original on 24 April 2018. Retrieved 24 April 2018. Pennachin, C.; Goertzel, B. (2007). Contemporary Approaches to Artificial General Intelligence. Artificial General Intelligence. Cognitive Technologies. Cognitive Technologies. Berlin, Heidelberg: Springer. doi:10.1007/978-3-540-68677-4_1. ISBN 978-3-540-23733-4. Roberts, Jacob (2016). "Thinking Machines: The Search for Artificial Intelligence". Distillations. Vol. 2 no. 2. pp. 14–23. Archived from the original on 19 August 2018. Retrieved 20 March 2018. "The superhero of artificial intelligence: can this genius keep it in check?". the Guardian. 16 February 2016. Archived from the original on 23 April 2018. Retrieved 26 April 2018. Mnih, Volodymyr; Kavukcuoglu, Koray; Silver, David; Rusu, Andrei A.; Veness, Joel; Bellemare, Marc G.; Graves, Alex; Riedmiller, Martin; Fidjeland, Andreas K.; Ostrovski, Georg; Petersen, Stig; Beattie, Charles; Sadik, Amir; Antonoglou, Ioannis; King, Helen; Kumaran, Dharshan; Wierstra, Daan; Legg, Shane; Hassabis, Demis (26 February 2015). "Human-level control through deep reinforcement learning". Nature. 518 (7540): 529–533. Bibcode:2015Natur.518..529M. doi:10.1038/nature14236. PMID 25719670. S2CID 205242740. Sample, Ian (14 March 2017). "Google's DeepMind makes AI program that can learn like a human". the Guardian. Archived from the original on 26 April 2018. Retrieved 26 April 2018. "From not working to neural networking". The Economist. 2016. Archived from the original on 31 December 2016. Retrieved 26 April 2018. Domingos 2015. Artificial brain arguments: AI requires a simulation of the operation of the human brain * Russell & Norvig 2003, p. 957 * Crevier 1993, pp. 271 and 279 A few of the people who make some form of the argument: * Moravec 1988 * Kurzweil 2005, p. 262 * Hawkins & Blakeslee 2005 The most extreme form of this argument (the brain replacement scenario) was put forward by Clark Glymour in the mid-1970s and was touched on by Zenon Pylyshyn and John Searle in 1980. Goertzel, Ben; Lian, Ruiting; Arel, Itamar; de Garis, Hugo; Chen, Shuo (December 2010). "A world survey of artificial brain projects, Part II: Biologically inspired cognitive architectures". Neurocomputing. 74 (1–3): 30–49. doi:10.1016/j.neucom.2010.08.012. Nilsson 1983, p. 10. Nils Nilsson writes: "Simply put, there is wide disagreement in the field about what AI is all about."[163] AI's immediate precursors: * McCorduck 2004, pp. 51–107 * Crevier 1993, pp. 27–32 * Russell & Norvig 2003, pp. 15, 940 * Moravec 1988, p. 3 Haugeland 1985, pp. 112–117 The most dramatic case of sub-symbolic AI being pushed into the background was the devastating critique of perceptrons by Marvin Minsky and Seymour Papert in 1969. See History of AI, AI winter, or Frank Rosenblatt. Cognitive simulation, Newell and Simon, AI at CMU (then called Carnegie Tech): * McCorduck 2004, pp. 139–179, 245–250, 322–323 (EPAM) * Crevier 1993, pp. 145–149 Soar (history): * McCorduck 2004, pp. 450–451 * Crevier 1993, pp. 258–263 McCarthy and AI research at SAIL and SRI International: * McCorduck 2004, pp. 251–259 * Crevier 1993 AI research at Edinburgh and in France, birth of Prolog: * Crevier 1993, pp. 193–196 * Howe 1994 AI at MIT under Marvin Minsky in the 1960s : * McCorduck 2004, pp. 259–305 * Crevier 1993, pp. 83–102, 163–176 * Russell & Norvig 2003, p. 19 Cyc: * McCorduck 2004, p. 489, who calls it "a determinedly scruffy enterprise" * Crevier 1993, pp. 239–243 * Russell & Norvig 2003, p. 363−365 * Lenat & Guha 1989 Knowledge revolution: * McCorduck 2004, pp. 266–276, 298–300, 314, 421 * Russell & Norvig 2003, pp. 22–23 Frederick, Hayes-Roth; William, Murray; Leonard, Adelman. "Expert systems". AccessScience. doi:10.1036/1097-8542.248550. Embodied approaches to AI: * McCorduck 2004, pp. 454–462 * Brooks 1990 * Moravec 1988 Weng et al. 2001. Lungarella et al. 2003. Asada et al. 2009. Oudeyer 2010. Revival of connectionism: * Crevier 1993, pp. 214–215 * Russell & Norvig 2003, p. 25 Computational intelligence * IEEE Computational Intelligence Society Archived 9 May 2008 at the Wayback Machine Hutson, Matthew (16 February 2018). "Artificial intelligence faces reproducibility crisis". Science. pp. 725–726. Bibcode:2018Sci...359..725H. doi:10.1126/science.359.6377.725. Archived from the original on 29 April 2018. Retrieved 28 April 2018. Norvig 2012. Langley 2011. Katz 2012. The intelligent agent paradigm: * Russell & Norvig 2003, pp. 27, 32–58, 968–972 * Poole, Mackworth & Goebel 1998, pp. 7–21 * Luger & Stubblefield 2004, pp. 235–240 * Hutter 2005, pp. 125–126 The definition used in this article, in terms of goals, actions, perception and environment, is due to Russell & Norvig (2003). Other definitions also include knowledge and learning as additional criteria. Agent architectures, hybrid intelligent systems: * Russell & Norvig (2003, pp. 27, 932, 970–972) * Nilsson (1998, chpt. 25) Hierarchical control system: * Albus 2002 Lieto, Antonio; Lebiere, Christian; Oltramari, Alessandro (May 2018). "The knowledge level in cognitive architectures: Current limitations and possibile developments". Cognitive Systems Research. 48: 39–55. doi:10.1016/j.cogsys.2017.05.001. hdl:2318/1665207. S2CID 206868967. Lieto, Antonio; Bhatt, Mehul; Oltramari, Alessandro; Vernon, David (May 2018). "The role of cognitive architectures in general artificial intelligence". Cognitive Systems Research. 48: 1–3. doi:10.1016/j.cogsys.2017.08.003. hdl:2318/1665249. S2CID 36189683. Russell & Norvig 2009, p. 1. White Paper: On Artificial Intelligence - A European approach to excellence and trust (PDF). Brussels: European Commission. 2020. p. 1. Archived (PDF) from the original on 20 February 2020. Retrieved 20 February 2020. CNN 2006. Using AI to predict flight delays Archived 20 November 2018 at the Wayback Machine, Ishti.org. N. Aletras; D. Tsarapatsanis; D. Preotiuc-Pietro; V. Lampos (2016). "Predicting judicial decisions of the European Court of Human Rights: a Natural Language Processing perspective". PeerJ Computer Science. 2: e93. doi:10.7717/peerj-cs.93. "The Economist Explains: Why firms are piling into artificial intelligence". The Economist. 31 March 2016. Archived from the original on 8 May 2016. Retrieved 19 May 2016. Lohr, Steve (28 February 2016). "The Promise of Artificial Intelligence Unfolds in Small Steps". The New York Times. Archived from the original on 29 February 2016. Retrieved 29 February 2016. Frangoul, Anmar (14 June 2019). "A Californian business is using A.I. to change the way we think about energy storage". CNBC. Archived from the original on 25 July 2020. Retrieved 5 November 2019. Wakefield, Jane (15 June 2016). "Social media 'outstrips TV' as news source for young people". BBC News. Archived from the original on 24 June 2016. Smith, Mark (22 July 2016). "So you think you chose to read this article?". BBC News. Archived from the original on 25 July 2016. Brown, Eileen. "Half of Americans do not believe deepfake news could target them online". ZDNet. Archived from the original on 6 November 2019. Retrieved 3 December 2019. The Turing test: Turing's original publication: * Turing 1950 Historical influence and philosophical implications: * Haugeland 1985, pp. 6–9 * Crevier 1993, p. 24 * McCorduck 2004, pp. 70–71 * Russell & Norvig 2003, pp. 2–3 and 948 Dartmouth proposal: * McCarthy et al. 1955 (the original proposal) * Crevier 1993, p. 49 (historical significance) The physical symbol systems hypothesis: * Newell & Simon 1976, p. 116 * McCorduck 2004, p. 153 * Russell & Norvig 2003, p. 18 Dreyfus 1992, p. 156. Dreyfus criticized the necessary condition of the physical symbol system hypothesis, which he called the "psychological assumption": "The mind can be viewed as a device operating on bits of information according to formal rules."[206] Dreyfus' critique of artificial intelligence: * Dreyfus 1972, Dreyfus & Dreyfus 1986 * Crevier 1993, pp. 120–132 * McCorduck 2004, pp. 211–239 * Russell & Norvig 2003, pp. 950–952, Gödel 1951: in this lecture, Kurt Gödel uses the incompleteness theorem to arrive at the following disjunction: (a) the human mind is not a consistent finite machine, or (b) there exist Diophantine equations for which it cannot decide whether solutions exist. Gödel finds (b) implausible, and thus seems to have believed the human mind was not equivalent to a finite machine, i.e., its power exceeded that of any finite machine. He recognized that this was only a conjecture, since one could never disprove (b). Yet he considered the disjunctive conclusion to be a "certain fact". The Mathematical Objection: * Russell & Norvig 2003, p. 949 * McCorduck 2004, pp. 448–449 Making the Mathematical Objection: * Lucas 1961 * Penrose 1989 Refuting Mathematical Objection: * Turing 1950 under "(2) The Mathematical Objection" * Hofstadter 1979 Background: * Gödel 1931, Church 1936, Kleene 1935, Turing 1937 Graham Oppy (20 January 2015). "Gödel's Incompleteness Theorems". Stanford Encyclopedia of Philosophy. Archived from the original on 22 April 2016. Retrieved 27 April 2016. These Gödelian anti-mechanist arguments are, however, problematic, and there is wide consensus that they fail. Stuart J. Russell; Peter Norvig (2010). "26.1.2: Philosophical Foundations/Weak AI: Can Machines Act Intelligently?/The mathematical objection". Artificial Intelligence: A Modern Approach (3rd ed.). Upper Saddle River, NJ: Prentice Hall. ISBN 978-0-13-604259-4. even if we grant that computers have limitations on what they can prove, there is no evidence that humans are immune from those limitations. Mark Colyvan. An introduction to the philosophy of mathematics. Cambridge University Press, 2012. From 2.2.2, 'Philosophical significance of Gödel's incompleteness results': "The accepted wisdom (with which I concur) is that the Lucas-Penrose arguments fail." Iphofen, Ron; Kritikos, Mihalis (3 January 2019). "Regulating artificial intelligence and robotics: ethics by design in a digital society". Contemporary Social Science: 1–15. doi:10.1080/21582041.2018.1563803. ISSN 2158-2041. "Ethical AI Learns Human Rights Framework". Voice of America. Archived from the original on 11 November 2019. Retrieved 10 November 2019. Crevier 1993, pp. 132–144. In the early 1970s, Kenneth Colby presented a version of Weizenbaum's ELIZA known as DOCTOR which he promoted as a serious therapeutic tool.[216] Joseph Weizenbaum's critique of AI: * Weizenbaum 1976 * Crevier 1993, pp. 132–144 * McCorduck 2004, pp. 356–373 * Russell & Norvig 2003, p. 961 Weizenbaum (the AI researcher who developed the first chatterbot program, ELIZA) argued in 1976 that the misuse of artificial intelligence has the potential to devalue human life. Wendell Wallach (2010). Moral Machines, Oxford University Press. Wallach, pp 37–54. Wallach, pp 55–73. Wallach, Introduction chapter. Michael Anderson and Susan Leigh Anderson (2011), Machine Ethics, Cambridge University Press. "Machine Ethics". aaai.org. Archived from the original on 29 November 2014. Rubin, Charles (Spring 2003). "Artificial Intelligence and Human Nature". The New Atlantis. 1: 88–100. Archived from the original on 11 June 2012. Brooks, Rodney (10 November 2014). "artificial intelligence is a tool, not a threat". Archived from the original on 12 November 2014. "Stephen Hawking, Elon Musk, and Bill Gates Warn About Artificial Intelligence". Observer. 19 August 2015. Archived from the original on 30 October 2015. Retrieved 30 October 2015. Chalmers, David (1995). "Facing up to the problem of consciousness". Journal of Consciousness Studies. 2 (3): 200–219. Archived from the original on 8 March 2005. Retrieved 11 October 2018. See also this link Archived 8 April 2011 at the Wayback Machine Horst, Steven, (2005) "The Computational Theory of Mind" Archived 11 September 2018 at the Wayback Machine in The Stanford Encyclopedia of Philosophy Searle 1980, p. 1. This version is from Searle (1999), and is also quoted in Dennett 1991, p. 435. Searle's original formulation was "The appropriately programmed computer really is a mind, in the sense that computers given the right programs can be literally said to understand and have other cognitive states." [230] Strong AI is defined similarly by Russell & Norvig (2003, p. 947): "The assertion that machines could possibly act intelligently
rprokap / EntremanureOnce upon a time there was a lovely princess. But she had an enchantment upon her of a fearful sort which could only be broken by love's first kiss. She was locked away in a castle guarded by a terrible fire-breathing dragon. Many brave knights had attempted to free her from this dreadful prison, but non prevailed. She waited in the dragon's keep in the highest room of the tallest tower for her true love and true love's first kiss. (laughs) Like that's ever gonna happen. What a load of - (toilet flush) Allstar - by Smashmouth begins to play. Shrek goes about his day. While in a nearby town, the villagers get together to go after the ogre. NIGHT - NEAR SHREK'S HOME MAN1 Think it's in there? MAN2 All right. Let's get it! MAN1 Whoa. Hold on. Do you know what that thing can do to you? MAN3 Yeah, it'll grind your bones for it's bread. Shrek sneaks up behind them and laughs. SHREK Yes, well, actually, that would be a giant. Now, ogres, oh they're much worse. They'll make a suit from your freshly peeled skin. MEN No! SHREK They'll shave your liver. Squeeze the jelly from your eyes! Actually, it's quite good on toast. MAN1 Back! Back, beast! Back! I warn ya! (waves the torch at Shrek.) Shrek calmly licks his fingers and extinguishes the torch. The men shrink back away from him. Shrek roars very loudly and long and his breath extinguishes all the remaining torches until the men are in the dark. SHREK This is the part where you run away. (The men scramble to get away. He laughs.) And stay out! (looks down and picks up a piece of paper. Reads.) "Wanted. Fairy tale creatures."(He sighs and throws the paper over his shoulder.) THE NEXT DAY There is a line of fairy tale creatures. The head of the guard sits at a table paying people for bringing the fairy tale creatures to him. There are cages all around. Some of the people in line are Peter Pan, who is carrying Tinkerbell in a cage, Gipetto who's carrying Pinocchio, and a farmer who is carrying the three little pigs. GUARD All right. This one's full. Take it away! Move it along. Come on! Get up! HEAD GUARD Next! GUARD (taking the witch's broom) Give me that! Your flying days are over. (breaks the broom in half) HEAD GUARD That's 20 pieces of silver for the witch. Next! GUARD Get up! Come on! HEAD GUARD Twenty pieces. LITTLE BEAR (crying) This cage is too small. DONKEY Please, don't turn me in. I'll never be stubborn again. I can change. Please! Give me another chance! OLD WOMAN Oh, shut up. (jerks his rope) DONKEY Oh! HEAD GUARD Next! What have you got? GIPETTO This little wooden puppet. PINOCCHIO I'm not a puppet. I'm a real boy. (his nose grows) HEAD GUARD Five shillings for the possessed toy. Take it away. PINOCCHIO Father, please! Don't let them do this! Help me! Gipetto takes the money and walks off. The old woman steps up to the table. HEAD GUARD Next! What have you got? OLD WOMAN Well, I've got a talking donkey. HEAD GUARD Right. Well, that's good for ten shillings, if you can prove it. OLD WOMAN Oh, go ahead, little fella. Donkey just looks up at her. HEAD GUARD Well? OLD WOMAN Oh, oh, he's just...he's just a little nervous. He's really quite a chatterbox. Talk, you boneheaded dolt... HEAD GUARD That's it. I've heard enough. Guards! OLD WOMAN No, no, he talks! He does. (pretends to be Donkey) I can talk. I love to talk. I'm the talkingest damn thing you ever saw. HEAD GUARD Get her out of my sight. OLD WOMAN No, no! I swear! Oh! He can talk! The guards grab the old woman and she struggles with them. One of her legs flies out and kicks Tinkerbell out of Peter Pan's hands, and her cage drops on Donkey's head. He gets sprinkled with fairy dust and he's able to fly. DONKEY Hey! I can fly! PETER PAN He can fly! 3 LITTLE PIGS He can fly! HEAD GUARD He can talk! DONKEY Ha, ha! That's right, fool! Now I'm a flying, talking donkey. You might have seen a housefly, maybe even a superfly but I bet you ain't never seen a donkey fly. Ha, ha! (the pixie dust begins to wear off) Uh-oh. (he begins to sink to the ground.) He hits the ground with a thud. HEAD GUARD Seize him! (Donkey takes of running.) After him! GUARDS He's getting away! Get him! This way! Turn! Donkey keeps running and he eventually runs into Shrek. Literally. Shrek turns around to see who bumped into him. Donkey looks scared for a moment then he spots the guards coming up the path. He quickly hides behind Shrek. HEAD GUARD You there. Ogre! SHREK Aye? HEAD GUARD By the order of Lord Farquaad I am authorized to place you both under arrest and transport you to a designated resettlement facility. SHREK Oh, really? You and what army? He looks behind the guard and the guard turns to look as well and we see that the other men have run off. The guard tucks tail and runs off. Shrek laughs and goes back about his business and begins walking back to his cottage. DONKEY Can I say something to you? Listen, you was really, really, really somethin' back here. Incredible! SHREK Are you talkin' to...(he turns around and Donkey is gone) me? (he turns back around and Donkey is right in front of him.) Whoa! DONKEY Yes. I was talkin' to you. Can I tell you that you that you was great back here? Those guards! They thought they was all of that. Then you showed up, and bam! They was trippin' over themselves like babes in the woods. That really made me feel good to see that. SHREK Oh, that's great. Really. DONKEY Man, it's good to be free. SHREK Now, why don't you go celebrate your freedom with your own friends? Hmm? DONKEY But, uh, I don't have any friends. And I'm not goin' out there by myself. Hey, wait a minute! I got a great idea! I'll stick with you. You're mean, green, fightin' machine. Together we'll scare the spit out of anybody that crosses us. Shrek turns and regards Donkey for a moment before roaring very loudly. DONKEY Oh, wow! That was really scary. If you don't mind me sayin', if that don't work, your breath certainly will get the job done, 'cause you definitely need some Tic Tacs or something, 'cause you breath stinks! You almost burned the hair outta my nose, just like the time...(Shrek covers his mouth but Donkey continues to talk, so Shrek removes his hand.) ...then I ate some rotten berries. I had strong gases leaking out of my butt that day. SHREK Why are you following me? DONKEY I'll tell you why. (singing) 'Cause I'm all alone, There's no one here beside me, My problems have all gone, There's no one to deride me, But you gotta have faith... SHREK Stop singing! It's no wonder you don't have any friends. DONKEY Wow. Only a true friend would be that cruelly honest. SHREK Listen, little donkey. Take a look at me. What am I? DONKEY (looks all the way up at Shrek) Uh ...really tall? SHREK No! I'm an ogre! You know. "Grab your torch and pitchforks." Doesn't that bother you? DONKEY Nope. SHREK Really? DONKEY Really, really. SHREK Oh. DONKEY Man, I like you. What's you name? SHREK Uh, Shrek. DONKEY Shrek? Well, you know what I like about you, Shrek? You got that kind of I-don't-care-what-nobody-thinks-of-me thing. I like that. I respect that, Shrek. You all right. (They come over a hill and you can see Shrek's cottage.) Whoa! Look at that. Who'd want to live in place like that? SHREK That would be my home. DONKEY Oh! And it is lovely! Just beautiful. You know you are quite a decorator. It's amazing what you've done with such a modest budget. I like that boulder. That is a nice boulder. I guess you don't entertain much, do you? SHREK I like my privacy. DONKEY You know, I do too. That's another thing we have in common. Like I hate it when you got somebody in your face. You've trying to give them a hint, and they won't leave. There's that awkward silence. (awkward silence) Can I stay with you? SHREK Uh, what? DONKEY Can I stay with you, please? SHREK (sarcastically) Of course! DONKEY Really? SHREK No. DONKEY Please! I don't wanna go back there! You don't know what it's like to be considered a freak. (pause while he looks at Shrek) Well, maybe you do. But that's why we gotta stick together. You gotta let me stay! Please! Please! SHREK Okay! Okay! But one night only. DONKEY Ah! Thank you! (he runs inside the cottage) SHREK What are you...? (Donkey hops up onto a chair.) No! No! DONKEY This is gonna be fun! We can stay up late, swappin' manly stories, and in the mornin' I'm makin' waffles. SHREK Oh! DONKEY Where do, uh, I sleep? SHREK (irritated) Outside! DONKEY Oh, well, I guess that's cool. I mean, I don't know you, and you don't know me, so I guess outside is best, you know. Here I go. Good night. (Shrek slams the door.) (sigh) I mean, I do like the outdoors. I'm a donkey. I was born outside. I'll just be sitting by myself outside, I guess, you know. By myself, outside. I'm all alone...there's no one here beside me... SHREK'S COTTAGE - NIGHT Shrek is getting ready for dinner. He sits himself down and lights a candle made out of earwax. He begins to eat when he hears a noise. He stands up with a huff. SHREK (to Donkey) I thought I told you to stay outside. DONKEY (from the window) I am outside. There is another noise and Shrek turns to find the person that made the noise. He sees several shadows moving. He finally turns and spots 3 blind mice on his table. BLIND MOUSE1 Well, gents, it's a far cry from the farm, but what choice do we have? BLIND MOUSE2 It's not home, but it'll do just fine. GORDO (bouncing on a slug) What a lovely bed. SHREK Got ya. (Grabs a mouse, but it escapes and lands on his shoulder.) GORDO I found some cheese. (bites Shrek's ear) SHREK Ow! GORDO Blah! Awful stuff. BLIND MOUSE1 Is that you, Gordo? GORDO How did you know? SHREK Enough! (he grabs the 3 mice) What are you doing in my house? (He gets bumped from behind and he drops the mice.) Hey! (he turns and sees the Seven Dwarves with Snow White on the table.) Oh, no, no, no. Dead broad off the table. DWARF Where are we supposed to put her? The bed's taken. SHREK Huh? Shrek marches over to the bedroom and throws back the curtain. The Big Bad Wolf is sitting in the bed. The wolf just looks at him. BIG BAD WOLF What? TIME LAPSE Shrek now has the Big Bad Wolf by the collar and is dragging him to the front door. SHREK I live in a swamp. I put up signs. I'm a terrifying ogre! What do I have to do get a little privacy? (He opens the front door to throw the Wolf out and he sees that all the collected Fairy Tale Creatures are on his land.) Oh, no. No! No! The 3 bears sit around the fire, the pied piper is playing his pipe and the rats are all running to him, some elves are directing flight traffic so that the fairies and witches can land...etc. SHREK What are you doing in my swamp? (this echoes and everyone falls silent.) Gasps are heard all around. The 3 good fairies hide inside a tent. SHREK All right, get out of here. All of you, move it! Come on! Let's go! Hapaya! Hapaya! Hey! Quickly. Come on! (more dwarves run inside the house) No, no! No, no. Not there. Not there. (they shut the door on him) Oh! (turns to look at Donkey) DONKEY Hey, don't look at me. I didn't invite them. PINOCCHIO Oh, gosh, no one invited us. SHREK What? PINOCCHIO We were forced to come here. SHREK (flabbergasted) By who? LITTLE PIG Lord Farquaad. He huffed and he puffed and he...signed an eviction notice. SHREK (heavy sigh) All right. Who knows where this Farquaad guy is? Everyone looks around at each other but no one answers. DONKEY Oh, I do. I know where he is. SHREK Does anyone else know where to find him? Anyone at all? DONKEY Me! Me! SHREK Anyone? DONKEY Oh! Oh, pick me! Oh, I know! I know! Me, me! SHREK (sigh) Okay, fine. Attention, all fairy tale things. Do not get comfortable. Your welcome is officially worn out. In fact, I'm gonna see this guy Farquaad right now and get you all off my land and back where you came from! (Pause. Then the crowd goes wild.) Oh! (to Donkey) You! You're comin' with me. DONKEY All right, that's what I like to hear, man. Shrek and Donkey, two stalwart friends, off on a whirlwind big-city adventure. I love it! DONKEY (singing) On the road again. Sing it with me, Shrek. I can't wait to get on the road again. SHREK What did I say about singing? DONKEY Can I whistle? SHREK No. DONKEY Can I hum it? SHREK All right, hum it. Donkey begins to hum 'On the Road Again'. DULOC - KITCHEN A masked man is torturing the Gingerbread Man. He's continually dunking him in a glass of milk. Lord Farquaad walks in. FARQUAAD That's enough. He's ready to talk. The Gingerbread Man is pulled out of the milk and slammed down onto a cookie sheet. Farquaad laughs as he walks over to the table. However when he reaches the table we see that it goes up to his eyes. He clears his throat and the table is lowered. FARQUAAD (he picks up the Gingerbread Man's legs and plays with them) Run, run, run, as fast as you can. You can't catch me. I'm the gingerbread man. GINGERBREAD MAN You are a monster. FARQUAAD I'm not the monster here. You are. You and the rest of that fairy tale trash, poisoning my perfect world. Now, tell me! Where are the others? GINGERBREAD MAN Eat me! (He spits milk into Farquaad's eye.) FARQUAAD I've tried to be fair to you creatures. Now my patience has reached its end! Tell me or I'll...(he makes as if to pull off the Gingerbread Man's buttons) GINGERBREAD MAN No, no, not the buttons. Not my gumdrop buttons. FARQUAAD All right then. Who's hiding them? GINGERBREAD MAN Okay, I'll tell you. Do you know the muffin man? FARQUAAD The muffin man? GINGERBREAD MAN The muffin man. FARQUAAD Yes, I know the muffin man, who lives on Drury Lane? GINGERBREAD MAN Well, she's married to the muffin man. FARQUAAD The muffin man? GINGERBREAD MAN The muffin man! FARQUAAD She's married to the muffin man. The door opens and the Head Guard walks in. HEAD GUARD My lord! We found it. FARQUAAD Then what are you waiting for? Bring it in. More guards enter carrying something that is covered by a sheet. They hang up whatever it is and remove the sheet. It is the Magic Mirror. GINGERBREAD MAN (in awe) Ohhhh... FARQUAAD Magic mirror... GINGERBREAD MAN Don't tell him anything! (Farquaad picks him up and dumps him into a trash can with a lid.) No! FARQUAAD Evening. Mirror, mirror on the wall. Is this not the most perfect kingdom of them all? MIRROR Well, technically you're not a king. FARQUAAD Uh, Thelonius. (Thelonius holds up a hand mirror and smashes it with his fist.) You were saying? MIRROR What I mean is you're not a king yet. But you can become one. All you have to do is marry a princess. FARQUAAD Go on. MIRROR (chuckles nervously) So, just sit back and relax, my lord, because it's time for you to meet today's eligible bachelorettes. And here they are! Bachelorette number one is a mentally abused shut-in from a kingdom far, far away. She likes sushi and hot tubbing anytime. Her hobbies include cooking and cleaning for her two evil sisters. Please welcome Cinderella. (shows picture of Cinderella) Bachelorette number two is a cape-wearing girl from the land of fancy. Although she lives with seven other men, she's not easy. Just kiss her dead, frozen lips and find out what a live wire she is. Come on. Give it up for Snow White! (shows picture of Snow White) And last, but certainly not last, bachelorette number three is a fiery redhead from a dragon-guarded castle surrounded by hot boiling lava! But don't let that cool you off. She's a loaded pistol who likes pina colads and getting caught in the rain. Yours for the rescuing, Princess Fiona! (Shows picture of Princess Fiona) So will it be bachelorette number one, bachelorette number two or bachelorette number three? GUARDS Two! Two! Three! Three! Two! Two! Three! FARQUAAD Three? One? Three? THELONIUS Three! (holds up 2 fingers) Pick number three, my lord! FARQUAAD Okay, okay, uh, number three! MIRROR Lord Farquaad, you've chosen Princess Fiona. FARQUAAD Princess Fiona. She's perfect. All I have to do is just find someone who can go... MIRROR But I probably should mention the little thing that happens at night. FARQUAAD I'll do it. MIRROR Yes, but after sunset... FARQUAAD Silence! I will make this Princess Fiona my queen, and DuLoc will finally have the perfect king! Captain, assemble your finest men. We're going to have a tournament. (smiles evilly) DuLoc Parking Lot - Lancelot Section Shrek and Donkey come out of the field that is right by the parking lot. The castle itself is about 40 stories high. DONKEY But that's it. That's it right there. That's DuLoc. I told ya I'd find it. SHREK So, that must be Lord Farquaad's castle. DONKEY Uh-huh. That's the place. SHREK Do you think maybe he's compensating for something? (He laughs, but then groans as Donkey doesn't get the joke. He continues walking through the parking lot.) DONKEY Hey, wait. Wait up, Shrek. MAN Hurry, darling. We're late. Hurry. SHREK Hey, you! (The attendant, who is wearing a giant head that looks like Lord Farquaad, screams and begins running through the rows of rope to get to the front gate to get away from Shrek.) Wait a second. Look, I'm not gonna eat you. I just - - I just - - (He sighs and then begins walking straight through the rows. The attendant runs into a wall and falls down. Shrek and Donkey look at him then continue on into DuLoc.) DULOC They look around but all is quiet. SHREK It's quiet. Too quiet. Where is everybody? DONKEY Hey, look at this! Donkey runs over and pulls a lever that is attached to a box marked 'Information'. The music winds up and then the box doors open up. There are little wooden people inside and they begin to sing. WOODEN PEOPLE Welcome to DuLoc such a perfect town Here we have some rules Let us lay them down Don't make waves, stay in line And we'll get along fine DuLoc is perfect place Please keep off of the grass Shine your shoes, wipe your... face DuLoc is, DuLoc is DuLoc is perfect place. Suddenly a camera takes Donkey and Shrek's picture. DONKEY Wow! Let's do that again! (makes ready to run over and pull the lever again) SHREK (grabs Donkey's tail and holds him still) No. No. No, no, no! No. They hear a trumpet fanfare and head over to the arena. FARQUAAD Brave knights. You are the best and brightest in all the land. Today one of you shall prove himself... As Shrek and Donkey walk down the tunnel to get into the arena Donkey is humming the DuLoc theme song. SHREK All right. You're going the right way for a smacked bottom. DONKEY Sorry about that. FARQUAAD That champion shall have the honor - - no, no - - the privilege to go forth and rescue the lovely Princess Fiona from the fiery keep of the dragon. If for any reason the winner is unsuccessful, the first runner-up will take his place and so on and so forth. Some of you may die, but it's a sacrifice I am willing to make. (cheers) Let the tournament begin! (He notices Shrek) Oh! What is that? It's hideous! SHREK (turns to look at Donkey and then back at Farquaad) Ah, that's not very nice. It's just a donkey. FARQUAAD Indeed. Knights, new plan! The one who kills the ogre will be named champion! Have it him! MEN Get him! SHREK Oh, hey! Now come on! Hang on now. (bumps into a table where there are mugs of beer) CROWD Go ahead! Get him! SHREK (holds up a mug of beer) Can't we just settle this over a pint? CROWD Kill the beast! SHREK No? All right then. (drinks the beer) Come on! He takes the mug and smashes the spigot off the large barrel of beer behind him. The beer comes rushing out drenching the other men and wetting the ground. It's like mud now. Shrek slides past the men and picks up a spear that one of the men dropped. As Shrek begins to fight Donkey hops up onto one of the larger beer barrels. It breaks free of it's ropes and begins to roll. Donkey manages to squish two men into the mud. There is so much fighting going on here I'm not going to go into detail. Suffice to say that Shrek kicks butt. DONKEY Hey, Shrek, tag me! Tag me! Shrek comes over and bangs a man's head up against Donkeys. Shrek gets up on the ropes and interacts with the crowd. SHREK Yeah! A man tries to sneak up behind Shrek, but Shrek turns in time and sees him. WOMAN The chair! Give him the chair! Shrek smashes a chair over the guys back. Finally all the men are down. Donkey kicks one of them in the helmet, and the ding sounds the end of the match. The audience goes wild. SHREK Oh, yeah! Ah! Ah! Thank you! Thank you very much! I'm here till Thursday. Try the veal! Ha, ha! (laughs) The laughter stops as all of the guards turn their weapons on Shrek. HEAD GUARD Shall I give the order, sir? FARQUAAD No, I have a better idea. People of DuLoc, I give you our champion! SHREK What? FARQUAAD Congratulations, ogre. You're won the honor of embarking on a great and noble quest. SHREK Quest? I'm already in a quest, a quest to get my swamp back. FARQUAAD Your swamp? SHREK Yeah, my swamp! Where you dumped those fairy tale creatures! FARQUAAD Indeed. All right, ogre. I'll make you a deal. Go on this quest for me, and I'll give you your swamp back. SHREK Exactly the way it was? FARQUAAD Down to the last slime-covered toadstool. SHREK And the squatters? FARQUAAD As good as gone. SHREK What kind of quest? Time Lapse - Donkey and Shrek are now walking through the field heading away from DuLoc. Shrek is munching on an onion. DONKEY Let me get this straight. You're gonna go fight a dragon and rescue a princess just so Farquaad will give you back a swamp which you only don't have because he filled it full of freaks in the first place. Is that about right? SHREK You know, maybe there's a good reason donkeys shouldn't talk. DONKEY I don't get it. Why don't you just pull some of that ogre stuff on him? Throttle him, lay siege to his fortress, grinds his bones to make your bread, the whole ogre trip. SHREK Oh, I know what. Maybe I could have decapitated an entire village and put their heads on a pike, gotten a knife, cut open their spleen and drink their fluids. Does that sound good to you? DONKEY Uh, no, not really, no. SHREK For your information, there's a lot more to ogres than people think. DONKEY Example? SHREK Example? Okay, um, ogres are like onions. (he holds out his onion) DONKEY (sniffs the onion) They stink? SHREK Yes - - No! DONKEY They make you cry? SHREK No! DONKEY You leave them in the sun, they get all brown, start sproutin' little white hairs. SHREK No! Layers! Onions have layers. Ogres have layers! Onions have layers. You get it? We both have layers. (he heaves a sigh and then walks off) DONKEY (trailing after Shrek) Oh, you both have layers. Oh. {Sniffs} You know, not everybody likes onions. Cake! Everybody loves cakes! Cakes have layers. SHREK I don't care... what everyone likes. Ogres are not like cakes. DONKEY You know what else everybody likes? Parfaits. Have you ever met a person, you say, "Let's get some parfait," they say, "Hell no, I don't like no parfait"? Parfaits are delicious. SHREK No! You dense, irritating, miniature beast of burden! Ogres are like onions! And of story. Bye-bye. See ya later. DONKEY Parfaits may be the most delicious thing on the whole damn planet. SHREK You know, I think I preferred your humming. DONKEY Do you have a tissue or something? I'm making a mess. Just the word parfait make me start slobbering. They head off. There is a montage of their journey. Walking through a field at sunset. Sleeping beneath a bright moon. Shrek trying to put the campfire out the next day and having a bit of a problem, so Donkey pees on the fire to put it out. DRAGON'S KEEP Shrek and Donkey are walking up to the keep that's supposed to house Princess Fiona. It appears to look like a giant volcano. DONKEY (sniffs) Ohh! Shrek! Did you do that? You gotta warn somebody before you just crack one off. My mouth was open and everything. SHREK Believe me, Donkey, if it was me, you'd be dead. (sniffs) It's brimstone. We must be getting close. DONKEY Yeah, right, brimstone. Don't be talking about it's the brimstone. I know what I smell. It wasn't no brimstone. It didn't come off no stone neither. They climb up the side of the volcano/keep and look down. There is a small piece of rock right in the center and that is where the castle is. It is surrounded by boiling lava. It looks very foreboding. SHREK Sure, it's big enough, but look at the location. (laughs...then the laugh turns into a groan) DONKEY Uh, Shrek? Uh, remember when you said ogres have layers? SHREK Oh, aye. DONKEY Well, I have a bit of a confession to make. Donkeys don't have layers. We wear our fear right out there on our sleeves. SHREK Wait a second. Donkeys don't have sleeves. DONKEY You know what I mean. SHREK You can't tell me you're afraid of heights. DONKEY No, I'm just a little uncomfortable about being on a rickety bridge over a boiling like of lava! SHREK Come on, Donkey. I'm right here beside ya, okay? For emotional support., we'll just tackle this thing together one little baby step at a time. DONKEY Really? SHREK Really, really. DONKEY Okay, that makes me feel so much better. SHREK Just keep moving. And don't look down. DONKEY Okay, don't look down. Don't look down. Don't look down. Keep on moving. Don't look down. (he steps through a rotting board and ends up looking straight down into the lava) Shrek! I'm lookin' down! Oh, God, I can't do this! Just let me off, please! SHREK But you're already halfway. DONKEY But I know that half is safe! SHREK Okay, fine. I don't have time for this. You go back. DONKEY Shrek, no! Wait! SHREK Just, Donkey - - Let's have a dance then, shall me? (bounces and sways the bridge) DONKEY Don't do that! SHREK Oh, I'm sorry. Do what? Oh, this? (bounces the bridge again) DONKEY Yes, that! SHREK Yes? Yes, do it. Okay. (continues to bounce and sway as he backs Donkey across the bridge) DONKEY No, Shrek! No! Stop it! SHREK You said do it! I'm doin' it. DONKEY I'm gonna die. I'm gonna die. Shrek, I'm gonna die. (steps onto solid ground) Oh! SHREK That'll do, Donkey. That'll do. (walks towards the castle) DONKEY Cool. So where is this fire-breathing pain-in-the-neck anyway? SHREK Inside, waiting for us to rescue her. (chuckles) DONKEY I was talkin' about the dragon, Shrek. INSIDE THE CASTLE DONKEY You afraid? SHREK No. DONKEY But... SHREK Shh. DONKEY Oh, good. Me neither. (sees a skeleton and gasps) 'Cause there's nothin' wrong with bein' afraid. Fear's a sensible response to an unfamiliar situation. Unfamiliar dangerous situation, I might add. With a dragon that breathes fire and eats knights and breathes fire, it sure doesn't mean you're a coward if you're a little scared. I sure as heck ain't no coward. I know that. SHREK Donkey, two things, okay? Shut ... up. Now go over there and see if you can find any stairs. DONKEY Stairs? I thought we was lookin' for the princess. SHREK (putting on a helmet) The princess will be up the stairs in the highest room in the tallest tower. DONKEY What makes you think she'll be there? SHREK I read it in a book once. (walks off) DONKEY Cool. You handle the dragon. I'll handle the stairs. I'll find those stairs. I'll whip their butt too. Those stairs won't know which way they're goin'. (walks off) EMPTY ROOM Donkey is still talking to himself as he looks around the room. DONKEY I'm gonna take drastic steps. Kick it to the curb. Don't mess with me. I'm the stair master. I've mastered the stairs. I wish I had a step right here. I'd step all over it. ELSEWHERE Shrek spots a light in the tallest tower window. SHREK Well, at least we know where the princess is, but where's the... DONKEY (os) Dragon! Donkey gasps and takes off running as the dragon roars again. Shrek manages to grab Donkey out of the way just as the dragon breathes fire. SHREK Donkey, look out! (he manages to get a hold of the dragons tail and holds on) Got ya! The dragon gets irritated at this and flicks it's tail and Shrek goes flying through the air and crashes through the roof of the tallest tower. Fiona wakes up with a jerk and looks at him lying on the floor. DONKEY Oh! Aah! Aah! Donkey get cornered as the Dragon knocks away all but a small part of the bridge he's on. DONKEY No. Oh, no, No! (the dragon roars) Oh, what large teeth you have. (the dragon growls) I mean white, sparkling teeth. I know you probably hear this all time from your food, but you must bleach, 'cause that is one dazzling smile you got there. Do I detect a hint of minty freshness? And you know what else? You're - - You're a girl dragon! Oh, sure! I mean, of course you're a girl dragon. You're just reeking of feminine beauty. (the dragon begins fluttering her eyes at him) What's the matter with you? You got something in your eye? Ohh. Oh. Oh. Man, I'd really love to stay, but you know, I'm, uh...(the dragon blows a smoke ring in the shape of a heart right at him, and he coughs) I'm an asthmatic, and I don't know if it'd work out if you're gonna blow smoke rings. Shrek! (the dragon picks him up with her teeth and carries him off) No! Shrek! Shrek! Shrek! FIONA'S ROOM Shrek groans as he gets up off the floor. His back is to Fiona so she straightens her dress and lays back down on the bed. She then quickly reaches over and gets the bouquet of flowers off the side table. She then lays back down and appears to be asleep. Shrek turns and goes over to her. He looks down at Fiona for a moment and she puckers her lips. Shrek takes her by the shoulders and shakes her away. FIONA Oh! Oh! SHREK Wake up! FIONA What? SHREK Are you Princess Fiona? FIONA I am, awaiting a knight so bold as to rescue me. SHREK Oh, that's nice. Now let's go! FIONA But wait, Sir Knight. This be-ith our first meeting. Should it not be a wonderful, romantic moment? SHREK Yeah, sorry, lady. There's no time. FIONA Hey, wait. What are you doing? You should sweep me off my feet out yonder window and down a rope onto your valiant steed. SHREK You've had a lot of time to plan this, haven't you? FIONA (smiles) Mm-hmm. Shrek breaks the lock on her door and pulls her out and down the hallway. FIONA But we have to savor this moment! You could recite an epic poem for me. A ballad? A sonnet! A limerick? Or something! SHREK I don't think so. FIONA Can I at least know the name of my champion? SHREK Uh, Shrek. FIONA Sir Shrek. (clears throat and holds out a handkerchief) I pray that you take this favor as a token of my gratitude. SHREK Thanks! Suddenly they hear the dragon roar. FIONA (surprised)You didn't slay the dragon? SHREK It's on my to-do list. Now come on! (takes off running and drags Fiona behind him.) FIONA But this isn't right! You were meant to charge in, sword drawn, banner flying. That's what all the other knights did. SHREK Yeah, right before they burst into flame. FIONA That's not the point. (Shrek suddenly stops and she runs into him.) Oh! (Shrek ignores her and heads for a wooden door off to the side.) Wait. Where are you going? The exit's over there. SHREK Well, I have to save my ass. FIONA What kind of knight are you? SHREK One of a kind. (opens the door into the throne room) DONKEY (os) Slow down. Slow down, baby, please. I believe it's healthy to get to know someone over a long period of time. Just call me old-fashioned. (laughs worriedly) (we see him up close and from a distance as Shrek sneaks into the room) I don't want to rush into a physical relationship. I'm not emotionally ready for a commitment of, uh, this - - Magnitude really is the word I'm looking for. Magnitude- - Hey, that is unwanted physical contact. Hey, what are you doing? Okay, okay. Let's just back up a little and take this one step at a time. We really should get to know each other first as friends or pen pals. I'm on the road a lot, but I just love receiving cards - - I'd really love to stay, but - - Don't do that! That's my tail! That's my personal tail. You're gonna tear it off. I don't give permission - - What are you gonna do with that? Hey, now. No way. No! No! No, no! No. No, no, no. No! Oh! Shrek grabs a chain that's connected to the chandelier and swings toward the dragon. He misses and he swings back again. He looks up and spots that the chandelier is right above the dragons head. He pulls on the chain and it releases and he falls down and bumps Donkey out of the way right as the dragon is about to kiss him. Instead the dragon kisses Shreks' butt. She opens her eyes and roars. Shrek lets go of the chain and the chandelier falls onto her head, but it's too big and it goes over her head and forms a sort of collar for her. She roars again and Shrek and Donkey take off running. Very 'Matrix' style. Shrek grabs Donkey and then grabs Princess Fiona as he runs past her. DONKEY Hi, Princess! FIONA It talks! SHREK Yeah, it's getting him to shut up that's the trick. They all start screaming as the dragon gains on them. Shrek spots a descending slide and jumps on. But unfortunately there is a crack in the stone and it hits Shrek right in the groin. His eyes cross and as he reaches the bottom of the slide he stumbles off and walks lightly. SHREK Oh! Shrek gets them close to the exit and sets down Donkey and Fiona. SHREK Okay, you two, heard for the exit! I'll take care of the dragon. Shrek grabs a sword and heads back toward the interior of the castle. He throws the sword down in between several overlapping chain links. The chain links are attached to the chandelier that is still around the dragons neck. SHREK (echoing) Run! They all take off running for the exit with the dragon in hot pursuit. They make it to the bridge and head across. The dragons breathes fire and the bridge begins to burn. They all hang on for dear life as the ropes holding the bridge up collapse. They are swung to the other side. As they hang upside down they look in horror as the dragon makes to fly over the boiling lava to get them. But suddenly the chandelier with the chain jerk the dragon back and she's unable to get to them. Our gang climbs quickly to safety as the dragon looks angry and then gives a sad whimper as she watches Donkey walk away. FIONA (sliding down the 'volcano' hill) You did it! You rescued me! You're amazing. (behind her Donkey falls down the hill) You're - - You're wonderful. You're... (turns and sees Shrek fall down the hill and bump into Donkey) a little unorthodox I'll admit. But thy deed is great, and thy heart is pure. I am eternally in your debt. (Donkey clears his throat.) And where would a brave knight be without his noble steed? DONKEY I hope you heard that. She called me a noble steed. She think I'm a steed. FIONA The battle is won. You may remove your helmet, good Sir Knight. SHREK Uh, no. FIONA Why not? SHREK I have helmet hair. FIONA Please. I would'st look upon the face of my rescuer. SHREK No, no, you wouldn't - - 'st. FIONA But how will you kiss me? SHREK What? (to Donkey) That wasn't in the job description. DONKEY Maybe it's a perk. FIONA No, it's destiny. Oh, you must know how it goes. A princess locked in a tower and beset by a dragon is rescued by a brave knight, and then they share true love's first kiss. DONKEY Hmm? With Shrek? You think- - Wait. Wait. You think that Shrek is you true love? FIONA Well, yes. Both Donkey and Shrek burst out laughing. DONKEY You think Shrek is your true love! FIONA What is so funny? SHREK Let's just say I'm not your type, okay?Fiona: Of course, you are. You're my rescuer. Now - - Now remove your helmet. SHREK Look. I really don't think this is a good idea. FIONA Just take off the helmet. SHREK I'm not going to. FIONA Take it off. SHREK No! FIONA Now! SHREK Okay! Easy. As you command. Your Highness. (takes off his helmet) FIONA You- - You're a- - an ogre. SHREK Oh, you were expecting Prince Charming. FIONA Well, yes, actually. Oh, no. This is all wrong. You're not supposed to be an ogre. SHREK Princess, I was sent to rescue you by Lord Farquaad, okay? He is the one who wants to marry you. FIONA Then why didn't he come rescue me? SHREK Good question. You should ask him that when we get there. FIONA But I have to be rescued by my true love, not by some ogre and his- - his pet. DONKEY Well, so much for noble steed. SHREK You're not making my job any easier. FIONA I'm sorry, but your job is not my problem. You can tell Lord Farquaad that if he wants to rescue me properly, I'll be waiting for him right here. SHREK Hey! I'm no one's messenger boy, all right? (ominous) I'm a delivery boy. (he swiftly picks her up and swings her over his shoulder like she was a sack of potatoes) FIONA You wouldn't dare. Put me down! SHREK Ya comin', Donkey? DONKEY I'm right behind ya. FIONA Put me down, or you will suffer the consequences! This is not dignified! Put me down! WOODS A little time has passed and Fiona has calmed down. She just hangs there limply while Shrek carries her. DONKEY Okay, so here's another question. Say there's a woman that digs you, right, but you don't really like her that way. How do you let her down real easy so her feelings aren't hurt, but you don't get burned to a crisp and eaten? FIONA You just tell her she's not your true love. Everyone knows what happens when you find your...(Shrek drops her on the ground) Hey! The sooner we get to DuLoc the better. DONKEY You're gonna love it there, Princess. It's beautiful! FIONA And what of my groom-to-be? Lord Farquaad? What's he like? SHREK Let me put it this way, Princess. Men of Farquaad's stature are in short supply. (he and Donkey laugh) Shrek then proceeds to splash water onto his face to wash off the dust and grime. DONKEY I don't know. There are those who think little of him. (they laugh again) Fiona: Stop it. Stop it, both of you. You're just jealous you can never measure up to a great ruler like Lord Farquaad. SHREK Yeah, well, maybe you're right, Princess. But I'll let you do the "measuring" when you see him tomorrow. FIONA (looks at the setting sun) Tomorrow? It'll take that long? Shouldn't we stop to make camp? SHREK No, that'll take longer. We can keep going. FIONA But there's robbers in the woods. DONKEY Whoa! Time out, Shrek! Camp is starting to sound good. SHREK Hey, come on. I'm scarier than anything we're going to see in this forest. FIONA I need to find somewhere to camp now! Both Donkey and Shrek's ears lower as they shrink away from her. MOUNTAIN CLIFF Shrek has found a cave that appears to be in good order. He shoves a stone boulder out of the way to reveal the cave. SHREK Hey! Over here. DONKEY Shrek, we can do better than that. I don't think this is fit for a princess. FIONA No, no, it's perfect. It just needs a few homey touches. SHREK Homey touches? Like what? (he hears a tearing noise and looks over at Fiona who has torn the bark off of a tree.) FIONA A door? Well, gentlemen, I bid thee good night. (goes into the cave and puts the bark door up behind her) DONKEY You want me to read you a bedtime story? I will. FIONA (os) I said good night! Shrek looks at Donkey for a second and then goes to move the boulder back in front of the entrance to the cave with Fiona still inside. DONKEY Shrek, What are you doing? SHREK (laughs) I just- - You know - - Oh, come on. I was just kidding. LATER THAT NIGHT Shrek and Donkey are sitting around a campfire. They are staring up into the sky as Shrek points out certain star constellations to Donkey. SHREK And, uh, that one, that's Throwback, the only ogre to ever spit over three wheat fields. DONKEY Right. Yeah. Hey, can you tell my future from these stars? SHREK The stars don't tell the future, Donkey. They tell stories. Look, there's Bloodnut, the Flatulent. You can guess what he's famous for. DONKEY I know you're making this up. SHREK No, look. There he is, and there's the group of hunters running away from his stench. DONKEY That ain't nothin' but a bunch of little dots. SHREK You know, Donkey, sometimes things are more than they appear. Hmm? Forget it. DONKEY (heaves a big sigh) Hey, Shrek, what we gonna do when we get our swamp anyway? SHREK Our swamp? DONKEY You know, when we're through rescuing the princess. SHREK We? Donkey, there's no "we". There's no "our". There's just me and my swamp. The first thing I'm gonna do is build a ten-foot wall around my land. DONKEY You cut me deep, Shrek. You cut me real deep just now. You know what I think? I think this whole wall thing is just a way to keep somebody out. SHREK No, do ya think? DONKEY Are you hidin' something? SHREK Never mind, Donkey. DONKEY Oh, this is another one of those onion things, isn't it? SHREK No, this is one of those drop-it and leave-it alone things. DONKEY Why don't you want to talk about it? SHREK Why do you want to talk about it? DONKEY Why are you blocking? SHREK I'm not blocking. DONKEY Oh, yes, you are. SHREK Donkey, I'm warning you. DONKEY Who you trying to keep out? SHREK Everyone! Okay? DONKEY (pause) Oh, now we're gettin' somewhere. (grins) At this point Fiona pulls the 'door' away from the entrance to the cave and peaks out. Neither of the guys see her. SHREK Oh! For the love of Pete! (gets up and walks over to the edge of the cliff and sits down) DONKEY What's your problem? What you got against the whole world anyway? SHREK Look, I'm not the one with the problem, okay? It's the world that seems to have a problem with me. People take one look at me and go. "Aah! Help! Run! A big, stupid, ugly ogre!" They judge me before they even know me. That's why I'm better off alone. DONKEY You know what? When we met, I didn't think you was just a big, stupid, ugly ogre. SHREK Yeah, I know. DONKEY So, uh, are there any donkeys up there? SHREK Well, there's, um, Gabby, the Small and Annoying. DONKEY Okay, okay, I see it now. The big shiny one, right there. That one there? Fiona puts the door back. SHREK That's the moon. DONKEY Oh, okay. DuLoc - Farquaad's Bedroom The camera pans over a lot of wedding stuff. Soft music plays in the background. Farquaad is in bed, watching as the Magic Mirror shows him Princess Fiona. FARQUAAD Again, show me again. Mirror, mirror, show her to me. Show me the princess. MIRROR Hmph. The Mirror rewinds and begins to play again from the beginning. FARQUAAD Ah. Perfect. Farquaad looks down at his bare chest and pulls the sheet up to cover himself as though Fiona could see him as he gazes sheepishly at her image in the mirror. MORNING Fiona walks out of the cave. She glances at Shrek and Donkey who are still sleeping. She wanders off into the woods and comes across a blue bird. She begins to sing. The bird sings along with her. She hits higher and higher notes and the bird struggles to keep up with her. Suddenly the pressure of the note is too big and the bird explodes. Fiona looks a little sheepish, but she eyes the eggs that the bird left behind. Time lapse, Fiona is now cooking the eggs for breakfast. Shrek and Donkey are still sleeping. Shrek wakes up and looks at Fiona. Donkey's talking in his sleep. DONKEY (quietly) Mmm, yeah, you know I like it like that. Come on, baby. I said I like it. SHREK Donkey, wake up. (shakes him) DONKEY Huh? What? SHREK Wake up. DONKEY What? (stretches and yawns) FIONA Good morning. Hm, how do you like your eggs? DONKEY Oh, good morning, Princess! Fiona gets up and sets the eggs down in front of them. SHREK What's all this about? FIONA You know, we kind of got off to a bad start yesterday. I wanted to make it up to you. I mean, after all, you did rescue me. SHREK Uh, thanks. Donkey sniffs the eggs and licks his lips. FIONA Well, eat up. We've got a big day ahead of us. (walks off) LATER They are once again on their way. They are walking through the forest. Shrek belches. DONKEY Shrek! SHREK What? It's a compliment. Better out than in, I always say. (laughs) DONKEY Well, it's no way to behave in front of a princess. Fiona belches FIONA Thanks. DONKEY She's as nasty as you are. SHREK (chuckles) You know, you're not exactly what I expected. FIONA Well, maybe you shouldn't judge people before you get to know them. She smiles and then continues walking, singing softly. Suddenly from out of nowhere, a man swings down and swoops Fiona up into a tree. ROBIN HOOD La liberte! Hey! SHREK Princess! FIONA (to Robin Hood) What are you doing? ROBIN HOOD Be still, mon cherie, for I am you savior! And I am rescuing you from this green...(kisses up her arm while Fiona pulls back in disgust)...beast. SHREK Hey! That's my princess! Go find you own! ROBIN HOOD Please, monster! Can't you see I'm a little busy here? FIONA (getting fed up) Look, pal, I don't know who you think you are! ROBIN HOOD Oh! Of course! Oh, how rude. Please let me introduce myself. Oh, Merry Men. (laughs) Suddenly an accordion begins to play and the Merry men pop out from the bushes. They begin to sing Robin's theme song. MERRY MEN Ta, dah, dah, dah, whoo. ROBIN HOOD I steal from the rich and give to the needy. MERRY MEN He takes a wee percentage, ROBIN HOOD But I'm not greedy. I rescue pretty damsels, man, I'm good. MERRY MEN What a guy, Monsieur Hood. ROBIN HOOD Break it down. I like an honest fight and a saucy little maid... MERRY MEN What he's basically saying is he likes to get... ROBIN HOOD Paid. So...When an ogre in the bush grabs a lady by the tush. That's bad. MERRY MEN That's bad. ROBIN HOOD When a beauty's with a beast it makes me awfully mad. MERRY MEN He's mad, he's really, really mad. ROBIN HOOD I'll take my blade and ram it through your heart, keep your eyes on me, boys 'cause I'm about to start... There is a grunt as Fiona swings down from the tree limb and knocks Robin Hood unconscious. FIONA Man, that was annoying! Shrek looks at her in admiration. MERRY MAN Oh, you little- - (shoots an arrow at Fiona but she ducks out of the way) The arrow flies toward Donkey who jumps into Shrek's arms to get out of the way. The arrow proceeds to just bounce off a tree. Another fight sequence begins and Fiona gives a karate yell and then proceeds to beat the crap out of the Merry Men. There is a very interesting 'Matrix' moment here when Fiona pauses in mid-air to fix her hair. Finally all of the Merry Men are down, and Fiona begins walking away. FIONA Uh, shall we? SHREK Hold the phone. (drops Donkey and begins walking after Fiona) Oh! Whoa, whoa, whoa. Hold on now. Where did that come from? FIONA What? SHREK That! Back there. That was amazing! Where did you learn that? FIONA Well...(laughs) when one lives alone, uh, one has to learn these things in case there's a...(gasps and points) there's an arrow in your butt! SHREK What? (turns and looks) Oh, would you look at that? (he goes to pull it out but flinches because it's tender) FIONA Oh, no. This is all my fault. I'm so sorry. DONKEY (walking up) Why? What's wrong? FIONA Shrek's hurt. DONKEY Shrek's hurt. Shrek's hurt? Oh, no, Shrek's gonna die. SHREK Donkey, I'm okay. DONKEY You can't do this to me, Shrek. I'm too young for you to die. Keep you legs elevated. Turn your head and cough. Does anyone know the Heimlich? FIONA Donkey! Calm down. If you want to help Shrek, run into the woods and find me a blue flower with red thorns. DONKEY Blue flower, red thorns. Okay, I'm on it. Blue flower, red thorns. Don't die Shrek. If you see a long tunnel, stay away from the light! SHREK & FIONA Donkey! DONKEY Oh, yeah. Right. Blue flower, red thorns. (runs off) SHREK What are the flowers for? FIONA (like it's obvious) For getting rid of Donkey. SHREK Ah. FIONA Now you hold still, and I'll yank this thing out. (gives the arrow a little pull) SHREK (jumps away) Ow! Hey! Easy with the yankin'. As they continue to talk Fiona keeps going after the arrow and Shrek keeps dodging her hands. FIONA I'm sorry, but it has to come out. SHREK No, it's tender. FIONA Now, hold on. SHREK What you're doing is the opposite of help. FIONA Don't move. SHREK Look, time out. FIONA Would you...(grunts as Shrek puts his hand over her face to stop her from getting at the arrow) Okay. What do you propose we do? ELSEWHERE Donkey is still looking for the special flower. DONKEY Blue flower, red thorns. Blue flower, red thorns. Blue flower, red thorns. This would be so much easier if I wasn't color-blind! Blue flower, red thorns. SHREK (os) Ow! DONKEY Hold on, Shrek! I'm comin'! (rips a flower off a nearby bush that just happens to be a blue flower with red thorns) THE FOREST PATH SHREK Ow! Not good. FIONA Okay. Okay. I can nearly see the head. (Shrek grunts as she pulls) It's just about... SHREK Ow! Ohh! (he jerks and manages to fall over with Fiona on top of him) DONKEY Ahem. SHREK (throwing Fiona off of him) Nothing happend. We were just, uh - - DONKEY Look, if you wanted to be alone, all you had to do was ask. Okay? SHREK Oh, come on! That's the last thing on my mind. The princess here was just- - (Fiona pulls the arrow out) Ugh! (he turns to look at Fiona who holds up the arrow with a smile) Ow! DONKEY Hey, what's that? (nervous chuckle) That's...is that blood? Donkey faints. Shrek walks over and picks him up as they continue on their way. There is a montage of scenes as the group heads back to DuLoc. Shrek crawling up to the top of a tree to make it fall over a small brook so that Fiona won't get wet. Shrek then gets up as Donkey is just about to cross the tree and the tree swings back into it's upright position and Donkey flies off. Shrek swatting and a bunch of flies and mosquitoes. Fiona grabs a nearby spiderweb that's on a tree branch and runs through the field swinging it around to catch the bugs. She then hands it to Shrek who begins eating like it's a treat. As he walks off she licks her fingers. Shrek catching a toad and blowing it up like a balloon and presenting it to Fiona. Fiona catching a snake, blowing it up, fashioning it into a balloon animal and presenting it to Shrek. The group arriving at a windmill that is near DuLoc. WINDMILL SHREK There it is, Princess. Your future awaits you. FIONA That's DuLoc? DONKEY Yeah, I know. You know, Shrek thinks Lord Farquaad's compensating for something, which I think means he has a really...(Shrek steps on his hoof) Ow! SHREK Um, I, uh- - I guess we better move on. FIONA Sure. But, Shrek? I'm - - I'm worried about Donkey. SHREK What? FIONA I mean, look at him. He doesn't look so good. DONKEY What are you talking about? I'm fine. FIONA (kneels to look him in the eyes) That's what they always say, and then next thing you know, you're on your back. (pause) Dead. SHREK You know, she's right. You look awful. Do you want to sit down? FIONA Uh, you know, I'll make you some tea. DONKEY I didn't want to say nothin', but I got this twinge in my neck, and when I turn my head like this, look, (turns his neck in a very sharp way until his head is completely sideways) Ow! See? SHREK Who's hungry? I'll find us some dinner. FIONA I'll get the firewood. DONKEY Hey, where you goin'? Oh, man, I can't feel my toes! (looks down and yelps) I don't have any toes! I think I need a hug. SUNSET Shrek has built a fire and is cooking the rest of dinner while Fiona eats. FIONA Mmm. This is good. This is really good. What is this? SHREK Uh, weed rat. Rotisserie style. FIONA No kidding. Well, this is delicious. SHREK Well, they're also great in stews. Now, I don't mean to brag, but I make a mean weed rat stew. (chuckles) Fiona looks at DuLoc and sighs. FIONA I guess I'll be dining a little differently tomorrow night. SHREK Maybe you can come visit me in the swamp sometime. I'll cook all kind of stuff for you. Swamp toad soup, fish eye tartare - - you name it. FIONA (smiles) I'd like that. They smiles at each other. SHREK Um, Princess? FIONA Yes, Shrek? SHREK I, um, I was wondering...are you...(sighs) Are you gonna eat that? DONKEY (chuckles) Man, isn't this romantic? Just look at that sunset. FIONA (jumps up) Sunset? Oh, no! I mean, it's late. I-It's very late. SHREK What? DONKEY Wait a minute. I see what's goin' on here. You're afraid of the dark, aren't you? FIONA Yes! Yes, that's it. I'm terrified. You know, I'd better go inside. DONKEY Don't feel bad, Princess. I used to be afraid of the dark, too, until - - Hey, no, wait. I'm still afraid of the dark. Shrek sighs FIONA Good night. SHREK Good night. Fiona goes inside the windmill and closes the door. Donkey looks at Shrek with a new eye. DONKEY Ohh! Now I really see what's goin' on here. SHREK Oh, what are you talkin' about? DONKEY I don't even wanna hear it. Look, I'm an animal, and I got instincts. And I know you two were diggin' on each other. I could feel it. SHREK You're crazy. I'm just bringing her back to Farquaad. DONKEY Oh, come on, Shrek. Wake up and smell the pheromones. Just go on in and tell her how you feel. SHREK I- - There's nothing to tell. Besides, even if I did tell her that, well, you know - - and I'm not sayin' I do 'cause I don't - - she's a princess, and I'm - - DONKEY An ogre? SHREK Yeah. An ogre. DONKEY Hey, where you goin'? SHREK To get... move firewood. (sighs) Donkey looks over at the large pile of firewood there already is. TIME LAPSE Donkey opens the door to the Windmill and walks in. Fiona is nowhere to be seen. DONKEY Princess? Princess Fiona? Princess, where are you? Princess? Fiona looks at Donkey from the shadows, but we can't see her. DONKEY It's very spooky in here. I ain't playing no games. Suddenly Fiona falls from the railing. She gets up only she doesn't look like herself. She looks like an ogre and Donkey starts freaking out. DONKEY Aah! FIONA Oh, no! DONKEY No, help! FIONA Shh! DONKEY Shrek! Shrek! Shrek! FIONA No, it's okay. It's okay. DONKEY What did you do with the princess? FIONA Donkey, I'm the princess. DONKEY Aah! FIONA It's me, in this body. DONKEY Oh, my God! You ate the princess. (to her stomach) Can you hear me? FIONA Donkey! DONKEY (still aimed at her stomach) Listen, keep breathing! I'll get you out of there! FIONA No! DONKEY Shrek! Shrek! Shrek! FIONA Shh. DONKEY Shrek! FIONA This is me. Donkey looks into her eyes as she pets his muzzle, and he quiets down. DONKEY Princess? What happened to you? You're, uh, uh, uh, different. FIONA I'm ugly, okay? DONKEY Well, yeah! Was it something you ate? 'Cause I told Shrek those rats was a bad idea. You are what you eat, I said. Now - - FIONA No. I - - I've been this way as long as I can remember. DONKEY What do you mean? Look, I ain't never seen you like this before. FIONA It only happens when sun goes down. "By night one way, by day another. This shall be the norm... until you find true love's first kiss... and then take love's true form." DONKEY Ah, that's beautiful. I didn't know you wrote poetry. FIONA It's a spell. (sigh) When I was a little girl, a witch cast a spell on me. Every night I become this. This horrible, ugly beast! I was placed in a tower to await the day my true love would rescue me. That's why I have to marry Lord Farquaad tomorrow before the sun sets and he sees me like this. (begins to cry) DONKEY All right, all right. Calm down. Look, it's not that bad. You're not that ugly. Well, I ain't gonna lie. You are ugly. But you only look like this at night. Shrek's ugly 24-7. FIONA But Donkey, I'm a princess, and this is not how a princess is meant to look. DONKEY Princess, how 'bout if you don't marry Farquaad? FIONA I have to. Only my true love's kiss can break the spell. DONKEY But, you know, um, you're kind of an orge, and Shrek - - well, you got a lot in common. FIONA Shrek? OUTSIDE Shrek is walking towards the windmill with a sunflower in his hand. SHREK (to himself) Princess, I - - Uh, how's it going, first of all? Good? Um, good for me too. I'm okay. I saw this flower and thought of you because it's pretty and - - well, I don't really like it, but I thought you might like it 'cause you're pretty. But I like you anyway. I'd - - uh, uh...(sighs) I'm in trouble. Okay, here we go. He walks up to the door and pauses outside when he hears Donkey and Fiona talking. FIONA (os) I can't just marry whoever I want. Take a good look at me, Donkey. I mean, really, who can ever love a beast so hideous and ugly? "Princess" and "ugly" don't go together. That's why I can't stay here with Shrek. Shrek steps back in shock. FIONA (os) My only chance to live happily ever after is to marry my true love. Shrek heaves a deep sigh. He throws the flower down and walks away. INSIDE FIONA Don't you see, Donkey? That's just how it has to be. It's the only way to break the spell. DONKEY You at least gotta tell Shrek the truth. FIONA No! You can't breathe a word. No one must ever know. DONKEY What's the point of being able to talk if you gotta keep secrets? FIONA Promise you won't tell. Promise! DONKEY All right, all right. I won't tell him. But you should. (goes outside) I just know before this is over, I'm gonna need a whole lot of serious therapy. Look at my eye twitchin'. Fiona comes out the door and watches him walk away. She looks down and spots the sunflower. She picks it up before going back inside the windmill. MORNING Donkey is asleep. Shrek is nowhere to be seen. Fiona is still awake. She is plucking petals from the sunflower. FIONA I tell him, I tell him not. I tell him, I tell him not. I tell him. (she quickly runs to the door and goes outside) Shrek! Shrek, there's something I want...(she looks and sees the rising sun, and as the sun crests the sky she turns back into a human.) Just as she looks back at the sun she sees Shrek stomping towards her. FIONA Shrek. Are you all right? SHREK Perfect! Never been better. FIONA I - - I don't - - There's something I have to tell you. SHREK You don't have to tell me anything, Princess. I heard enough last night. FIONA You heard what I said? SHREK Every word. FIONA I thought you'd understand. SHREK Oh, I understand. Like you said, "Who could love a hideous, ugly beast?" FIONA But I thought that wouldn't matter to you. SHREK Yeah? Well, it does. (Fiona looks at him in shock. He looks past her and spots a group approaching.) Ah, right on time. Princess, I've brought you a little something. Farquaad has arrived with a group of his men. He looks very regal sitting up on his horse. You would never guess that he's only like 3 feet tall. Donkey wakes up with a yawn as the soldiers march by. DONKEY What'd I miss? What'd I miss? (spots the soldiers) (muffled) Who said that? Couldn't have been the donkey. FARQUAAD Princess Fiona. SHREK As promised. Now hand it over. FARQUAAD Very well, ogre. (holds out a piece of paper) The deed to your swamp, cleared out, as agreed. Take it and go before I change my mind. (Shrek takes the paper) Forgive me, Princess, for startling you, but you startled me, for I have never seen such a radiant beauty before. I'm Lord Farquaad. FIONA Lord Farquaad? Oh, no, no. (Farquaad snaps his fingers) Forgive me, my lord, for I was just saying a short... (Watches as Farquaad is lifted off his horse and set down in front of her. He comes to her waist.) farewell. FARQUAAD Oh, that is so sweet. You don't have to waste good manners on the ogre. It's not like it has feelings. FIONA No, you're right. It doesn't. Donkey watches this exchange with a curious look on his face. FARQUAAD Princess Fiona, beautiful, fair, flawless Fiona. I ask your hand in marriage. Will you be the perfect bride for the perfect groom? FIONA Lord Farquaad, I accept. Nothing would make - - FARQUAAD (interrupting) Excellent! I'll start the plans, for tomorrow we wed! FIONA No! I mean, uh, why wait? Let's get married today before the sun sets. FARQUAAD Oh, anxious, are you? You're right. The sooner, the better. There's so much to do! There's the caterer, the cake, the band, the guest list. Captain, round up some guests! (a guard puts Fiona on the back of his horse) FIONA Fare-thee-well, ogre. Farquaad's whole party begins to head back to DuLoc. Donkey watches them go. DONKEY Shrek, what are you doing? You're letting her get away. SHREK Yeah? So what? DONKEY Shrek, there's something about her you don't know. Look, I talked to her last night, She's - - SHREK I know you talked to her last night. You're great pals, aren't ya? Now, if you two are such good friends, why don't you follow her home? DONKEY Shrek, I - - I wanna go with you. SHREK I told you, didn't I? You're not coming home with me. I live alone! My swamp! Me! Nobody else! Understand? Nobody! Especially useless, pathetic, annoying, talking donkeys! DONKEY But I thought - - SHREK Yeah. You know what? You thought wrong! (stomps off) DONKEY Shrek. Montage of different scenes. Shrek arriving back home. Fiona being fitted for the wedding dress. Donkey at a stream running into the dragon. Shrek cleaning up his house. Fiona eating dinner alone. Shrek eating dinner alone. SHREK'S HOME Shrek is eating dinner when he hears a sound outside. He goes outside to investigate. SHREK Donkey? (Donkey ignores him and continues with what he's doing.) What are you doing? DONKEY I would think, of all people, you would recognize a wall when you see one. SHREK Well, yeah. But the wall's supposed to go around my swamp, not through it. DONKEY It is around your half. See that's your half, and this is my half. SHREK Oh! Your half. Hmm. DONKEY Yes, my half. I helped rescue the princess. I did half the work. I get half the booty. Now hand me that big old rock, the one that looks like your head. SHREK Back off! DONKEY No, you back off. SHREK This is my swamp! DONKEY Our swamp. SHREK (grabs the tree branch Donkey is working with) Let go, Donkey! DONKEY You let go. SHREK Stubborn jackass! DONKEY Smelly ogre. SHREK Fine! (drops the tree branch and walks away) DONKEY Hey, hey, come back here. I'm not through with you yet. SHREK Well, I'm through with you. DONKEY Uh-uh. You know, with you it's always, "Me, me, me!" Well, guess what! Now it's my turn! So you just shut up and pay attention! You are mean to me. You insult me and you don't appreciate anything that I do! You're always pushing me around or pushing me away. SHREK Oh, yeah? Well, if I treated you so bad, how come you came back? DONKEY Because that's what friends do! They forgive each other! SHREK Oh, yeah. You're right, Donkey. I forgive you... for stabbin' me in the back! (goes into the outhouse and slams the door) DONKEY Ohh! You're so wrapped up in layers, onion boy, you're afraid of your own feelings. SHREK (os) Go away! DONKEY There you are , doing it again just like you did to Fiona. All she ever do was like you, maybe even love you. SHREK (os) Love me? She said I was ugly, a hideous creature. I heard the two of you talking. DONKEY She wasn't talkin' about you. She was talkin' about, uh, somebody else. SHREK (opens the door and comes out) She wasn't talking about me? Well, then who was she talking about? DONKEY Uh-uh, no way. I ain't saying anything. You don't wanna listen to me. Right? Right? SHREK Donkey! DONKEY No! SHREK Okay, look. I'm sorry, all right? (sigh) I'm sorry. I guess I am just a big, stupid, ugly ogre. Can you forgive me? DONKEY Hey, that's what friends are for, right? SHREK Right. Friends? DONKEY Friends. SHREK So, um, what did Fiona say about me? DONKEY What are you asking me for? Why don't you just go ask her? SHREK The wedding! We'll never make it in time. DONKEY Ha-ha-ha! Never fear, for where, there's a will, there's a way and I have a way. (whistles) Suddenly the dragon arrives overhead and flies low enough so they can climb on. SHREK Donkey? DONKEY I guess it's just my animal magnetism. They both laugh. SHREK Aw, come here, you. (gives Donkey a noogie) DONKEY All right, all right. Don't get all slobbery. No one likes a kiss ass. All right, hop on and hold on tight. I haven't had a chance to install the seat belts yet. They climb aboard the dragon and she takes off for DuLoc. DULOC - CHURCH Fiona and Farquaad are getting married. The whole town is there. The prompter card guy holds up a card that says 'Revered Silence'. PRIEST People of DuLoc, we gather here today to bear witness to the union.... FIONA (eyeing the setting sun) Um- PRIEST ...of our new king... FIONA Excuse me. Could we just skip ahead to the "I do's"? FARQUAAD (chuckles and then motions to the priest to indulge Fiona) Go on. COURTYARD Some guards are milling around. Suddenly the dragon lands with a boom. The guards all take off running. DONKEY (to Dragon) Go ahead, HAVE SOME FUN. If we need you, I'll whistle. How about that? (she nods and goes after the guards) Shrek, wait, wait! Wait a minute! You wanna do this right, don't you? SHREK (at the Church door) What are you talking about? DONKEY There's a line you gotta wait for. The preacher's gonna say, "Speak now or forever hold your peace." That's when you say, "I object!" SHREK I don't have time for this! DONKEY Hey, wait. What are you doing? Listen to me! Look, you love this woman, don't you? SHREK Yes. DONKEY You wanna hold her? SHREK Yes. DONKEY Please her? SHREK Yes! DONKEY (singing James Brown style) Then you got to, got to try a little tenderness. (normal) The chicks love that romantic crap! SHREK All right! Cut it out. When does this guy say the line? DONKEY We gotta check it out. INSIDE CHURCH As the priest talks we see Donkey's shadow through one of the windows Shrek tosses him up so he can see. PRIEST And so, by the power vested in me... Outside SHREK What do you see? DONKEY The whole town's in there. Inside PRIEST I now pronounce you husband and wife... Outside DONKEY They're at the altar. Inside PRIEST ...king and queen. Outside DONKEY Mother Fletcher! He already said it. SHREK Oh, for the love of Pete! He runs inside without catching Donkey, who hits the ground hard. INSIDE CHURCH SHREK (running toward the alter) I object! FIONA Shrek? The whole congregation gasps as they see Shrek. FARQUAAD Oh, now what does he want? SHREK (to congregation as he reaches the front of the Church) Hi, everyone. Havin' a good time, are ya? I love DuLoc, first of all. Very clean. FIONA What are you doing here? SHREK Really, it's rude enough being alive when no one wants you, but showing up uninvited to a wedding... SHREK Fiona! I need to talk to you. FIONA Oh, now you wanna talk? It's a little late for that, so if you'll excuse me - - SHREK But you can't marry him. FIONA And why not? SHREK Because- - Because he's just marring you so he can be king. FARQUAAD Outrageous! Fiona, don't listen to him. SHREK He's not your true love. FIONA And what do you know about true love? SHREK Well, I - - Uh - - I mean - - FARQUAAD Oh, this is precious. The ogee has fallen in love with the princess! Oh, good Lord. (laughs) The prompter card guy holds up a card that says 'Laugh'. The whole congregation laughs. FARQUAAD An ogre and a princess! FIONA Shrek, is this true? FARQUAAD Who cares? It's preposterous! Fiona, my love, we're but a kiss away from our "happily ever after." Now kiss me! (puckers his lips and leans toward her, but she pulls back.) FIONA (looking at the setting sun) "By night one way, by day another." (to Shrek) I wanted to show you before. She backs up and as the sun sets she changes into her ogre self. She gives Shrek a sheepish smile. SHREK Well, uh, that explains a lot. (Fiona smiles) FARQUAAD Ugh! It's disgusting! Guards! Guards! I order you to get that out of my sight now! Get them! Get them both! The guards run in and separate Fiona and Shrek. Shrek fights them. SHREK No, no! FIONA Shrek! FARQUAAD This hocus-pocus alters nothing. This marriage is binding, and that makes me king! See? See? FIONA No, let go of me! Shrek! SHREK No! FARQUAAD Don't just stand there, you morons. SHREK Get out of my way! Fiona! Arrgh! FARQUAAD I'll make you regret the day we met. I'll see you drawn and quartered! You'll beg for death to save you! FIONA No, Shrek! FARQUAAD (hold a dagger to Fiona's throat) And as for you, my wife... SHREK Fiona! FARQUAAD I'll have you locked back in that tower for the rest of your days! I'm king! Shrek manages to get a hand free and he whistles. FARQUAAD I will have order! I will have perfection! I will have - - (Donkey and the dragon show up and the dragon leans down and eats Farquaad) Aaaah! Aah! DONKEY All right. Nobody move. I got a dragon here, and I'm not afraid to use it. (The dragon roars.) I'm a donkey on the edge! The dragon belches and Farquaad's crown flies out of her mouth and falls to the ground. DONKEY Celebrity marriages. They never last, do they? The congregation cheers. DONKEY Go ahead, Shrek. SHREK Uh, Fiona? FIONA Yes, Shrek? SHREK I - - I love you. FIONA Really? SHREK Really, really. FIONA (smiles) I love you too. Shrek and Fiona kiss. Thelonius takes one of the cards and writes 'Awwww' on the back and then shows it to the congregation. CONGREGATION Aawww! Suddenly the magic of the spell pulls Fiona away. She's lifted up into the air and she hovers there while the magic works around her. WHISPERS "Until you find true love's first kiss and then take love's true form. Take love's true form. Take love's true form." Suddenly Fiona's eyes open wide. She's consumed by the spell and then is slowly lowered to the ground. SHREK (going over to her) Fiona? Fiona. Are you all right? FIONA (standing up, she's still an ogre) Well, yes. But I don't understand. I'm supposed to be beautiful. SHREK But you ARE beautiful. They smile at each other. DONKEY (chuckles) I was hoping this would be a happy ending. Shrek and Fiona kiss...and the kiss fades into... THE SWAMP ...their wedding kiss. Shrek and Fiona are now married. 'I'm a Believer' by Smashmouth is played in the background. Shrek and Fiona break apart and run through the crowd to their awaiting carriage. Which is made of a giant onion. Fiona tosses her bouquet which both Cinderella and Snow White try to catch. But they end up getting into a cat fight and so the dragon catches the bouquet instead. The Gingerbread man has been mended somewhat and now has one leg and walks with a candy cane cane. Shrek and Fiona walk off as the rest of the guests party and Donkey takes over singing the song. GINGERBREAD MAN God bless us, every one. DONKEY (as he's done singing and we fade to black) Oh, that's funny. Oh. Oh. I can't breathe. I can't breathe. THE END
GuilhermeSAlves / HummBaltimore Ravens,BAL QB,Joe Flacco,32,1986,52,63,91,95,80,40,19.900000,2 QB,Ryan Mallett,29,1989,61,45,76,89,74,37,1.900000,1 RB,Terrance West,26,1992,79,75,81,75,88,77,1.100000,1 RB,Kenneth Dixon,23,1995,78,60,76,75,87,80,0.500000,3 RB,Javorius Allen,26,1992,60,60,73,71,88,74,0.500000,2 RB,Danny Woodhead,32,1986,53,70,68,67,88,74,2.300000,3 RB,Alex Collins,23,1995,98,60,79,60,88,76,0.400000,3 RB,Maxx Williams,23,1995,88,45,70,61,80,70,0.800000,2 WR,Jeremy Maclin,29,1989,83,68,71,83,92,76,5.000000,2 WR,Mike Wallace,31,1987,52,75,79,73,92,72,5.600000,1 WR,Breshad Perriman,24,1994,73,54,63,63,95,76,2.100000,2 WR,Michael Campanaro,26,1992,68,60,70,68,90,69,0.900000,1 WR,Benjamin Watson,37,1981,62,68,75,73,80,65,2.300000,1 WR,Vince Mayle,26,1992,70,40,73,63,83,74,0.300000,1 WR,Chris Moore,24,1994,93,40,75,62,90,65,0.600000,3 WR,Nick Boyle,24,1994,83,60,79,68,72,53,0.400000,2 OL,Marshal Yanda,33,1985,57,97,87,87,94,76,5.900000,2 OL,Ryan Jensen,26,1992,74,62,77,81,92,60,1.100000,1 OL,Jermaine Eluemunor,23,1995,90,40,83,85,74,60,0.500000,4 OL,Austin Howard,30,1988,68,62,71,76,91,62,3.300000,3 OL,Ronnie Stanley,23,1995,79,73,77,76,89,62,5.200000,3 OL,Luke Bowanko,26,1992,70,45,68,75,83,60,0.400000,1 OL,Matt Skura,24,1994,71,54,76,75,74,60,0.300000,2 OL,James Hurst,26,1992,69,64,67,63,73,60,0.900000,1 OL,Levi Spurger,27,2012,83,67,90,61,62,59,0.500000,1 OL,Morgan Cox,31,1987,75,60,70,45,51,50,0.700000,4 K,Justin Tucker,28,1990,72,57,71,97,98,57,3.600000,3 K,Sam Koch,35,1983,40,59,65,83,93,59,2.500000,4 S,Eric Weddle,32,1986,81,87,85,79,85,79,5.200000,3 S,Tony Jefferson,25,1993,81,83,71,79,84,77,6.900000,4 S,Lardarius Webb,32,1986,61,62,76,79,90,53,1.600000,3 S,Anthony Levine Sr.,30,1988,59,62,70,79,86,59,1.000000,3 S,Chuck Clark,22,1996,79,40,79,70,88,66,0.400000,4 CB,Jimmy Smith,29,1989,66,77,79,82,89,69,9.500000,3 CB,Marlon Humphrey,21,1997,81,57,77,77,92,67,2.900000,4 CB,Maurice Canady,23,1995,88,40,75,74,89,63,0.400000,3 CB,Brandon Carr,31,1987,62,65,81,77,87,60,4.300000,4 CB,Tavon Young,23,1995,74,61,79,79,90,47,0.600000,3 CB,Jaylen Hill,23,1995,87,40,65,71,84,44,0.300000,3 LB,CJ Mosley,25,1993,69,73,79,87,84,77,2.900000,2 LB,Terrell Suggs,35,1983,66,71,85,83,94,71,5.300000,2 LB,Kamalei Correa,23,1995,98,56,76,68,82,74,1.300000,3 LB,Steven Johnson,29,1989,83,50,73,68,77,69,0.500000,1 LB,Patrick Onwuasor,25,1993,85,58,77,64,80,74,0.300000,1 LB,Za'Darius Smith,25,1993,84,60,76,65,82,68,0.500000,2 LB,Matt Judon,25,1993,84,45,70,65,86,68,0.400000,3 LB,Tyus Bowser,22,1996,98,45,76,64,80,72,1.200000,4 LB,Tim Williams,24,1994,96,45,71,61,80,71,0.600000,4 DL,Brandon Williams,28,1990,64,81,65,93,95,70,8.100000,5 DL,Michael Pierce,25,1993,87,73,71,89,92,74,0.300000,2 DL,Patrick Ricard,23,1995,69,45,68,81,88,72,0.300000,3 DL,Willie Henry,23,1995,90,54,71,75,87,76,0.500000,3 DL,Carl Davis,25,1993,78,62,63,77,87,67,0.600000,2 DL,Chris Wormley,24,1994,94,45,75,70,83,76,0.700000,4 DL,Bronson Kaufusi,26,1992,60,45,79,67,82,72,0.700000,3 DL,Brent Urban,26,1992,77,60,62,64,81,70,0.400000,1 END_PLAYERS Cincinnati Bengals,CIN QB,Andy Dalton,30,1988,70,68,89,85,83,40,11.500000,4 QB,AJ McCarron,27,1991,70,61,85,75,80,40,0.400000,1 RB,Jeremy Hill,25,1993,86,68,79,76,88,79,0.700000,1 RB,Joe Mixon,21,1997,84,54,83,75,91,79,1.200000,4 RB,Giovani Bernard,26,1992,90,67,68,70,91,79,3.100000,3 RB,Cethan Carter,24,1994,79,35,68,59,83,62,0.300000,3 RB,Ryan Hewitt,26,1992,87,58,77,57,77,59,1.400000,3 WR,AJ Green,29,1989,68,97,87,91,91,82,9.400000,3 WR,Tyler Eifert,27,1991,80,77,73,79,84,70,3.000000,1 WR,Brandon LaFell,31,1987,68,71,79,77,86,72,2.800000,2 WR,John Ross,22,1996,69,58,75,70,98,69,4.300000,4 WR,Tyler Boyd,23,1995,67,61,73,75,88,59,0.900000,3 WR,Josh Malone,21,1997,96,45,75,70,92,59,0.600000,4 WR,Alex Erickson,25,1993,80,35,75,65,88,66,0.300000,2 WR,Cody Core,23,1995,74,45,73,65,90,65,0.400000,3 WR,Tyler Kroft,25,1993,85,56,64,67,81,66,0.600000,2 WR,CJ Uzomah,24,1994,80,45,75,62,85,67,0.400000,2 OL,Russell Bodine,25,1993,94,68,79,95,73,59,0.700000,1 OL,Andre Smith,30,1988,87,52,75,91,75,60,3.000000,1 OL,Clint Boling,28,1990,73,63,85,76,74,68,3.600000,3 OL,Christian Westerman,24,1994,69,40,76,77,77,60,0.400000,3 OL,Trey Hopkins,25,1993,75,56,70,76,73,59,0.300000,2 OL,TJ Johnson,27,1991,90,45,71,75,73,61,1.200000,2 OL,Alex Redmond,22,1996,84,40,63,75,72,58,0.300000,2 OL,Jake Fisher,24,1994,92,62,70,70,73,60,0.900000,2 OL,Cedric Ogbuehi,25,1993,78,61,62,68,73,60,2.200000,2 OL,Eric Winston,34,1984,75,60,77,68,75,60,0.600000,1 OL,Clark Harris,33,1985,82,54,71,60,54,45,0.600000,1 K,Randy Bullock,28,1990,73,40,62,89,82,40,0.500000,2 K,Kevin Huber,32,1986,75,40,70,77,75,40,2.000000,1 K,Marshall Koehn,25,1993,68,35,54,35,88,35,0.300000,2 S,Shawn Williams,26,1992,87,61,81,79,90,79,2.800000,4 S,KeiVarae Russell,24,1994,84,40,75,76,89,63,0.500000,3 S,Clayton Fejedelem,24,1994,88,45,83,74,87,66,0.400000,3 S,George Iloka,27,1991,62,68,77,79,85,57,4.100000,4 CB,Darqueze Dennard,26,1992,61,60,79,79,92,67,1.900000,1 CB,Josh Shaw,25,1993,94,45,65,75,90,63,0.500000,2 CB,William Jackson III,25,1993,85,45,75,79,92,40,2.300000,3 CB,Adam Jones,34,1984,69,64,76,79,87,44,5.000000,2 CB,Dre Kirkpatrick,28,1990,87,67,73,77,88,40,7.400000,5 CB,Patrick Crump,30,2009,58,87,58,58,58,65,0.500000,1 LB,Vontaze Burfict,27,1991,61,81,91,81,88,74,3.500000,1 LB,Vincent Rey,30,1988,65,67,79,81,84,72,2.200000,2 LB,Nick Vigil,24,1994,67,45,79,76,80,69,0.600000,3 LB,Hardy Nickerson,23,1995,92,40,77,75,82,66,0.300000,3 LB,Kevin Minter,27,1991,85,75,75,71,84,75,4.000000,1 LB,Carl Lawson,22,1996,88,57,67,65,87,68,0.600000,4 LB,Jordan Evans,22,1996,70,40,77,62,79,74,0.400000,4 DL,Andrew Billings,22,1996,88,40,70,83,87,70,0.500000,3 DL,Geno Atkins,29,1989,65,87,73,81,90,75,8.500000,2 DL,Pat Sims,32,1986,75,61,71,79,88,69,0.700000,1 DL,Jordan Willis,22,1996,91,45,83,73,87,79,0.700000,4 DL,Chris Smith,25,1993,81,40,71,73,85,76,0.400000,1 DL,Ryan Glasgow,24,1994,68,54,70,77,87,65,0.500000,4 DL,Carlos Dunlap,28,1990,60,71,68,64,84,77,5.100000,2 DL,Michael Johnson,30,1988,61,61,70,60,80,79,3.800000,2 END_PLAYERS Cleveland Browns,CLE QB,DeShone Kizer,21,1997,79,45,89,91,75,68,1.000000,4 QB,Kevin Hogan,25,1993,82,60,87,75,77,59,0.300000,1 QB,Cody Kessler,24,1994,93,50,79,79,76,37,0.600000,3 RB,Isaiah Crowell,24,1994,91,63,76,77,89,79,1.700000,1 RB,Duke Johnson,24,1994,78,65,70,67,90,79,0.600000,2 RB,Darius Jackson,24,1994,73,35,77,70,92,71,0.400000,3 RB,Dan Vitale,24,1994,94,45,77,60,85,70,0.300000,2 RB,Matt Dayes,22,1996,80,40,71,59,84,65,0.400000,4 WR,Kenny Britt,29,1989,90,64,79,73,86,76,6.100000,4 WR,Corey Coleman,23,1995,95,61,76,70,93,70,2.900000,3 WR,David Njoku,21,1997,81,45,75,68,85,71,2.300000,4 WR,Ricardo Louis,23,1995,90,57,77,67,91,66,0.500000,3 WR,Sammie Coates,24,1994,74,45,77,62,91,74,0.600000,2 WR,Seth DeValve,24,1994,75,57,75,68,83,68,0.500000,3 WR,Rashard Higgins,23,1995,74,45,79,68,85,65,0.400000,3 WR,Kasen Williams,25,1993,82,45,62,65,85,63,0.300000,1 WR,Randall Telfer,25,1993,67,50,64,61,78,67,0.400000,2 OL,Joe Thomas,33,1985,77,97,95,87,86,91,7.200000,2 OL,Kevin Zeitler,27,1991,60,71,85,83,75,67,9.000000,5 OL,Zach Banner,24,1994,84,45,67,81,81,60,0.500000,4 OL,Joel Bitonio,26,1992,69,75,83,75,77,79,5.400000,6 OL,JC Tretter,26,1992,82,63,75,79,74,60,4.400000,3 OL,Shon Coleman,26,1992,66,50,70,75,84,60,0.600000,3 OL,Spencer Drango,25,1993,91,60,81,70,79,61,0.400000,3 OL,Marcus Martin,24,1994,88,62,71,68,73,59,1.100000,1 OL,Austin Reiter,26,1992,94,40,73,62,79,59,0.300000,1 OL,Charley Hughlett,27,1991,62,45,68,60,70,52,0.700000,6 K,Zane Gonzalez,22,1996,97,40,64,93,78,40,0.400000,4 K,Britton Colquitt,32,1986,61,45,68,77,81,45,1.800000,4 S,Jabrill Peppers,22,1996,90,54,79,77,90,76,2.500000,4 S,Derrick Kindred,24,1994,72,64,79,79,89,74,0.500000,3 S,Kai Nacua,22,1996,92,40,77,75,88,59,0.300000,1 S,Derron Smith,25,1993,96,45,68,67,85,69,0.400000,2 CB,Jason McCourty,30,1988,78,73,68,80,92,69,2.300000,2 CB,Briean Boddy-Calhoun,24,1994,79,70,73,79,90,44,0.300000,2 CB,Jamar Taylor,27,1991,77,60,79,77,92,46,3.000000,3 CB,Howard Wilson,22,1996,72,40,75,72,87,55,0.600000,4 CB,Michael Jordan,25,1993,88,45,71,74,85,43,0.300000,2 CB,Darius Hillary,24,1994,95,35,68,68,87,40,0.300000,2 LB,Christian Kirksey,25,1993,76,71,73,85,82,77,5.500000,5 LB,Jamie Collins,28,1990,69,64,81,76,83,77,8.600000,4 LB,Tank Carder,28,1990,76,45,81,70,77,71,0.900000,1 LB,James Burgess,23,1995,70,45,73,67,83,67,0.300000,2 LB,Joe Schobert,24,1994,82,59,81,59,77,71,0.600000,3 LB,Josh Keyes,24,1994,98,40,76,40,77,72,0.400000,1 DL,Myles Garrett,22,1996,90,57,71,93,89,79,7.900000,4 DL,Danny Shelton,24,1994,72,71,73,91,95,69,2.900000,2 DL,Caleb Brantley,23,1995,98,40,71,79,88,69,0.400000,4 DL,Larry Ogunjobi,23,1995,82,57,76,77,86,74,0.800000,4 DL,Trevon Coley,23,1995,73,45,71,73,86,77,0.300000,2 DL,Jamie Meder,26,1992,79,61,81,76,83,68,0.400000,1 DL,TY McGill,25,1993,70,54,76,73,85,70,0.300000,1 DL,Emmanuel Ogbah,24,1994,75,45,77,62,82,79,1.500000,3 DL,Carl Nassib,24,1994,94,50,75,60,76,72,0.700000,3 DL,Nate Orchard,24,1994,93,56,77,61,73,70,0.900000,2 END_PLAYERS Pittsburgh Steelers,PIT QB,Ben Roethlisbergr,35,1983,67,73,91,91,85,63,17.100000,3 QB,Joshua Dobbs,22,1996,79,50,76,83,76,76,0.600000,4 QB,Landry Jones,28,1990,80,40,79,83,77,37,1.600000,2 RB,Le'Veon Bell,25,1993,86,76,76,91,90,91,7.600000,1 RB,Terrell Watson,24,1994,92,52,75,67,87,79,0.300000,1 RB,James Conner,22,1996,71,52,76,76,85,71,0.600000,4 RB,Roosevelt Nix,25,1993,78,60,76,58,79,65,0.400000,1 WR,Antonio Brown,29,1989,74,97,85,97,92,80,12.600000,5 WR,Eli Rogers,25,1993,84,63,73,77,88,71,0.300000,1 WR,JuJu Smith-Schuste,21,1997,81,60,85,73,88,74,0.800000,4 WR,Martavis Bryant,26,1992,66,67,76,70,93,71,0.500000,1 WR,Darrius Heyward-Bey,30,1988,71,67,75,64,91,74,0.900000,2 WR,Justin Hunter,26,1992,96,50,67,61,90,70,0.600000,1 WR,Jesse James,23,1995,83,64,73,71,83,57,0.400000,2 WR,Vance McDonald,27,1991,90,50,70,64,83,65,4.200000,5 WR,Xavier Grimble,25,1993,92,52,68,61,75,57,0.300000,1 OL,David DeCastro,27,1991,88,89,85,89,96,71,8.600000,5 OL,Matt Feiler,25,1993,67,40,73,89,79,59,0.300000,1 OL,Marcus Gilbert,29,1989,77,81,75,83,74,75,4.800000,3 OL,Maurkice Pouncey,28,1990,87,85,73,83,77,60,7.100000,3 OL,Ramon Foster,31,1987,78,89,71,77,72,73,2.600000,2 OL,Alejandro Villanueva,29,1989,84,76,76,75,81,62,4.800000,4 OL,BJ Finney,26,1992,98,57,77,71,75,70,0.300000,1 OL,Jerald Hawkins,24,1994,93,40,79,67,80,61,0.500000,3 OL,Chris Hubbard,26,1992,71,54,71,62,75,59,1.100000,1 OL,Kameron Canaday,25,1993,85,40,76,56,48,60,0.300000,1 K,Chris Boswell,26,1992,74,54,65,85,91,54,0.400000,1 K,Jordan Berry,26,1992,89,45,65,83,83,45,0.300000,1 S,JJ Wilcox,26,1992,60,60,75,77,88,75,2.000000,2 S,Sean Davis,24,1994,70,60,79,79,90,60,0.800000,3 S,Mike Mitchell,30,1988,79,63,83,77,87,66,3.700000,2 S,Robert Golden,27,1991,74,57,76,76,87,62,1.300000,2 CB,William Gay,32,1986,51,75,81,77,88,69,2.000000,2 CB,Mike Hilton,23,1995,97,63,71,79,87,59,0.300000,1 CB,Joe Haden,28,1990,80,65,87,84,89,44,6.800000,3 CB,Artie Burns,22,1996,99,67,71,79,91,43,2.300000,3 CB,Coty Sensabaugh,29,1989,82,57,76,77,90,37,0.900000,2 CB,Cameron Sutton,22,1996,67,45,76,74,88,43,0.600000,4 CB,Brian Allen,24,1994,85,40,75,72,91,40,0.400000,4 LB,Ryan Shazier,25,1993,68,73,71,75,88,84,3.100000,2 LB,TJ Watt,23,1995,85,54,75,75,84,74,2.200000,4 LB,James Harrison,39,1979,70,70,81,73,95,68,1.300000,2 LB,Vince Williams,28,1990,65,64,71,75,83,71,1.600000,2 LB,LJ Fort,27,1991,75,45,75,71,82,70,0.300000,1 LB,Bud Dupree,24,1994,91,54,75,68,80,76,2.200000,2 LB,Tyler Matakevich,25,1993,67,40,83,70,84,68,0.400000,3 LB,Keion Adams,22,1996,86,40,77,61,83,68,0.400000,4 LB,Anthony Chickillo,25,1993,79,50,79,61,81,68,0.400000,1 LB,Arthur Moats,29,1989,82,52,71,61,75,69,2.000000,1 DL,Stephon Tuitt,24,1994,79,75,65,83,91,72,1.000000,1 DL,Cameron Heyward,28,1990,64,81,79,81,92,75,7.700000,4 DL,Javon Hargrave,24,1994,81,62,77,73,85,76,0.600000,3 DL,Tyson Alualu,30,1988,64,67,75,75,87,72,2.300000,2 DL,Daniel McCullers,25,1993,94,60,65,77,88,60,0.400000,1 DL,Leterrius Walton,25,1993,81,60,70,73,84,68,0.400000,2 DL,Casey Muehl,29,2010,54,84,70,67,65,68,0.500000,1 DL,Alton Petanick,24,2015,80,78,63,57,66,60,0.500000,1 END_PLAYERS Buffalo Bills,BUF QB,Tyrod Taylor,28,1990,80,71,79,83,81,70,11.700000,2 QB,Nathan Peterman,23,1995,98,52,81,83,76,53,0.400000,4 QB,Joe Webb,31,1987,77,54,70,79,68,76,0.600000,1 RB,LeSean McCoy,29,1989,63,77,73,67,90,77,6.600000,3 RB,Travaris Cadet,28,1990,59,54,73,62,87,76,0.500000,1 RB,Mike Tolbert,32,1986,42,73,77,71,77,69,0.700000,1 RB,Patrick DiMarco,28,1990,81,67,81,60,74,65,1.600000,4 WR,Zay Jones,22,1996,92,57,87,77,90,74,1.500000,4 WR,Kelvin Benjamin,26,1992,72,77,75,79,86,74,2.600000,2 WR,Charles Clay,28,1990,86,70,85,76,83,72,6.000000,3 WR,Jordan Matthews,25,1993,80,75,83,68,90,72,1.100000,1 WR,Andre Holmes,29,1989,77,61,68,68,87,69,1.400000,3 WR,Deonte Thompson,28,1990,75,58,65,64,92,69,0.600000,1 WR,Brandon Tate,30,1988,74,50,71,60,88,77,0.700000,1 WR,Jeremy Butler,26,1992,71,40,75,64,86,65,0.400000,1 WR,Logan Thomas,26,1992,68,40,79,60,84,70,0.500000,1 WR,Nick O'Leary,25,1993,92,54,77,71,75,53,0.300000,1 WR,Khari Lee,25,1993,84,45,75,60,76,65,0.400000,2 OL,Richie Incognito,34,1984,71,85,85,89,86,75,4.000000,2 OL,Cordy Glenn,28,1990,74,79,75,87,72,61,9.500000,4 OL,Vladimir Ducasse,30,1988,67,63,76,85,74,61,0.800000,3 OL,Dion Dawkins,23,1995,98,54,79,81,78,60,0.800000,4 OL,John Miller,24,1994,82,68,71,75,73,68,0.600000,2 OL,Eric Wood,31,1987,79,77,76,77,75,59,6.800000,3 OL,Ryan Groy,27,1991,79,60,70,75,77,61,1.600000,2 OL,Conor McDermott,25,1993,94,40,75,71,74,60,0.400000,4 OL,Jordan Mills,27,1991,74,61,75,71,72,60,1.300000,2 OL,Seantrel Henderson,25,1993,79,60,60,70,77,56,0.500000,1 OL,Reid Ferguson,23,1995,97,35,76,35,46,60,0.300000,2 K,Steven Hauschka,32,1986,56,40,67,93,86,40,2.500000,3 K,Colton Schmidt,27,1991,87,40,68,79,76,40,1.000000,2 S,Micah Hyde,27,1991,80,70,75,77,88,69,4.800000,5 S,Shamarko Thomas,26,1992,69,45,75,77,90,66,0.500000,1 S,Trae Elston,23,1995,73,35,70,69,89,68,0.300000,2 S,Colt Anderson,32,1986,62,58,76,72,85,59,0.700000,1 S,Jordan Poyer,26,1992,60,75,73,79,87,40,2.600000,4 CB,Tre'Davious White,22,1996,72,62,79,79,90,66,2.400000,4 CB,EJ Gaines,25,1993,75,70,75,79,89,57,0.500000,1 CB,Shareece Wright,30,1988,64,58,76,77,90,47,0.500000,1 CB,Leonard Johnson,27,1991,78,57,77,76,86,46,0.600000,1 CB,Lafayette Pitts,25,1993,79,40,76,72,90,40,0.300000,1 CB,Rolando Amanza,29,2010,77,65,91,56,64,66,0.500000,1 LB,Lorenzo Alexander,34,1984,65,73,76,70,86,76,2.200000,2 LB,Matt Milano,23,1995,99,40,83,70,83,67,0.500000,4 LB,Preston Brown,25,1993,95,68,87,67,84,76,0.700000,1 LB,Tanner Vallejo,23,1995,84,40,70,71,82,67,0.400000,4 LB,Ramon Humber,30,1988,79,60,68,68,76,70,0.600000,1 LB,Deon Lacey,27,1991,63,45,71,60,77,69,0.400000,2 DL,Kyle Williams,34,1984,58,76,73,81,92,71,5.600000,1 DL,Cedric Thornton,29,1989,70,59,68,77,89,70,3.400000,3 DL,Shaq Lawson,23,1995,69,57,70,73,88,79,2.500000,3 DL,Eddie Yarbrough,24,1994,85,45,63,68,83,76,0.300000,1 DL,Jerel Worthy,27,1991,80,54,70,68,86,71,0.400000,1 DL,Jerry Hughes,29,1989,63,70,83,61,81,79,6.500000,3 DL,Adolphus Washington,25,1993,73,52,71,60,82,76,0.600000,3 DL,Ryan Davis,28,1990,75,50,70,60,75,74,0.700000,2 END_PLAYERS Miami Dolphins,MIA QB,Ryan Tannehill,29,1989,70,67,89,83,81,66,14.000000,4 QB,Jay Cutler,34,1984,51,60,65,91,77,37,6.300000,1 QB,David Fales,27,1991,84,40,81,70,79,40,0.400000,1 QB,Matt Moore,33,1985,71,63,83,71,78,37,1.300000,1 RB,Damien Williams,25,1993,75,60,73,68,91,76,1.100000,1 RB,Kenyan Drake,23,1995,73,45,68,60,91,74,0.700000,3 RB,Senorise Perry,26,1992,60,40,71,57,92,70,0.400000,2 RB,MarQueis Gray,28,1990,78,57,73,60,81,70,0.700000,2 WR,Jarvis Landry,25,1993,68,76,83,93,91,80,0.700000,1 WR,DeVante Parker,24,1994,85,76,76,79,91,72,2.700000,2 WR,Kenny Stills,25,1993,72,73,77,75,92,72,6.100000,4 WR,Julius Thomas,29,1989,79,62,70,71,85,74,3.800000,2 WR,Leonte Carroo,23,1995,84,45,76,70,89,65,0.600000,3 WR,Jakeem Grant,25,1993,66,40,71,65,96,67,0.400000,3 WR,Anthony Fasano,33,1985,41,64,77,62,76,59,2.500000,1 OL,Isaac Asiata,25,1993,84,40,85,85,79,61,0.500000,4 OL,Laremy Tunsil,23,1995,95,62,83,77,80,60,3.100000,3 OL,Mike Pouncey,28,1990,64,67,65,77,74,60,6.200000,4 OL,Zach Sterup,25,1993,87,40,73,75,79,60,0.300000,1 OL,Jermon Bushrod,33,1985,65,67,83,76,72,59,2.300000,1 OL,Ja'Wuan James,25,1993,84,71,75,71,73,65,2.900000,2 OL,Sam Young,30,1988,73,59,71,70,81,60,0.700000,1 OL,Jesse Davis,26,1992,75,40,77,71,74,59,0.300000,2 OL,Ted Larsen,30,1988,75,59,77,64,80,60,1.400000,3 OL,Jake Brendel,25,1993,73,35,81,65,74,60,0.300000,1 OL,John Denney,39,1979,71,76,76,60,52,45,0.600000,1 K,Cody Parkey,25,1993,90,40,75,89,81,40,0.400000,1 K,Matt Haack,23,1995,88,40,65,93,77,40,0.300000,3 S,Reshad Jones,29,1989,72,87,71,82,86,80,8.200000,6 S,Nate Allen,30,1988,80,61,68,77,86,66,3.400000,1 S,Michael Thomas,27,1991,70,60,76,77,86,60,1.100000,1 S,TJ McDonald,26,1992,63,62,73,79,86,59,0.200000,5 S,Jordan Lucas,24,1994,90,35,73,71,91,62,0.400000,3 S,Maurice Smith,22,1996,68,40,71,68,85,55,0.300000,3 CB,Alterraun Verner,29,1989,71,52,75,77,86,69,0.600000,1 CB,Xavien Howard,24,1994,90,45,81,77,91,53,1.400000,3 CB,Cordrea Tankersley,24,1994,79,45,85,71,92,63,0.600000,4 CB,Bobby McCain,24,1994,84,63,75,77,89,43,0.400000,2 CB,Walt Aikens,26,1992,89,45,76,75,89,44,0.500000,1 CB,Torry McTyer,22,1996,67,40,71,71,92,40,0.300000,3 LB,Lawrence Timmons,31,1987,65,75,81,75,84,77,5.500000,2 LB,Kiko Alonso,27,1991,71,67,73,76,80,74,5.600000,4 LB,Stephone Anthony,25,1993,83,56,70,71,83,75,1.800000,2 LB,Rey Maualuga,30,1988,82,60,85,73,87,67,0.700000,1 LB,Mike Hull,26,1992,99,56,77,70,87,71,0.400000,1 LB,Chase Allen,24,1994,83,45,77,70,82,71,0.300000,3 DL,Ndamukong Suh,30,1988,60,73,91,97,99,80,15.100000,4 DL,Jordan Phillips,25,1993,87,57,60,79,87,69,0.900000,2 DL,William Hayes,32,1986,57,73,77,73,91,79,4.200000,1 DL,Cameron Wake,35,1983,75,83,77,73,85,79,5.400000,2 DL,Davon Godchaux,23,1995,66,52,73,73,84,71,0.400000,4 DL,Vincent Taylor,23,1995,89,45,76,71,82,66,0.400000,4 DL,Charles Harris,22,1996,87,54,73,61,79,79,2.600000,4 DL,Terrence Fede,26,1992,83,40,75,61,80,75,0.400000,1 DL,Andre Branch,28,1990,68,62,64,58,75,74,6.300000,3 END_PLAYERS New England Patriots,NE QB,Tom Brady,40,1978,69,99,97,91,98,40,15.600000,3 QB,Brian Hoyer,32,1986,51,62,68,81,78,37,5.000000,2 RB,Mike Gillislee,27,1991,78,67,76,76,88,79,2.000000,2 RB,Dion Lewis,27,1991,63,70,65,67,91,79,1.000000,1 RB,Rex Burkhead,27,1991,89,64,81,75,84,77,2.600000,1 RB,James White,25,1993,90,63,70,68,89,76,2.600000,4 RB,Brandon Bolden,27,1991,64,58,75,67,88,72,0.600000,1 RB,James Develin,29,1989,58,71,76,57,70,47,0.900000,2 WR,Rob Gronkowski,28,1990,75,89,73,93,83,72,6.800000,3 WR,Chris Hogan,29,1989,74,81,73,87,88,71,2.500000,2 WR,Brandin Cooks,24,1994,67,76,77,81,96,76,2.700000,2 WR,Julian Edelman,31,1987,69,93,79,81,86,77,4.600000,3 WR,Danny Amendola,32,1986,42,73,76,79,84,72,2.800000,1 WR,Phillip Dorsett,24,1994,81,59,63,71,96,70,1.900000,2 WR,Martellus Bennett,30,1988,73,71,76,75,79,67,5.700000,3 WR,Jacob Hollister,24,1994,81,40,77,63,84,70,0.300000,3 WR,Dwayne Allen,27,1991,63,68,73,71,76,60,5.200000,3 WR,Matthew Slater,32,1986,74,67,75,60,87,67,1.300000,1 OL,Marcus Cannon,29,1989,63,76,64,85,85,60,4.900000,5 OL,Shaq Mason,24,1994,72,75,73,76,92,60,0.500000,2 OL,Nate Solder,29,1989,74,77,76,81,74,60,8.900000,1 OL,David Andrews,25,1993,74,77,77,75,85,60,1.800000,4 OL,Ted Karras,24,1994,75,40,81,75,80,60,0.400000,3 OL,Joe Thuney,25,1993,91,70,81,75,74,63,0.600000,3 OL,LaAdrian Waddle,26,1992,84,59,70,76,73,60,0.800000,1 OL,Cameron Fleming,25,1993,77,59,71,73,74,64,1.100000,1 OL,Cole Croston,24,1994,86,40,73,68,78,59,0.300000,3 OL,Joe Cardona,25,1993,97,35,75,68,46,52,0.400000,2 K,Stephen Gostkowski,33,1985,58,45,67,89,82,45,3.600000,2 K,Ryan Allen,27,1991,74,40,71,83,80,40,1.700000,2 S,Devin McCourty,30,1988,58,85,83,88,90,68,7.800000,3 S,Patrick Chung,30,1988,69,70,89,79,86,68,2.200000,2 S,Nate Ebner,29,1989,82,45,91,72,87,70,0.800000,1 S,Duron Harmon,26,1992,74,64,76,79,88,55,3.400000,4 S,Jordan Richards,24,1994,73,40,81,74,86,69,0.700000,2 S,Brandon King,24,1994,87,45,70,74,89,40,0.400000,1 CB,Malcolm Butler,27,1991,86,81,73,84,89,66,2.400000,1 CB,Johnson Bademosi,27,1991,78,45,79,79,90,60,2.000000,1 CB,Eric Rowe,25,1993,72,50,73,79,91,60,1.000000,2 CB,Stephon Gilmore,27,1991,78,67,79,80,92,45,10.400000,5 CB,Jonathan Jones,24,1994,99,45,63,75,95,40,0.300000,2 CB,Robin Vagas,25,2014,60,82,50,62,58,61,0.500000,1 LB,Dont'a Hightower,27,1991,80,81,83,89,93,76,7.100000,4 LB,Elandon Roberts,23,1995,78,60,75,75,87,71,0.400000,3 LB,David Harris,33,1985,62,61,85,76,85,68,2.000000,2 LB,Kyle Van Noy,26,1992,73,60,71,70,79,74,1.100000,1 LB,Shea McClellin,28,1990,89,63,71,68,77,70,2.400000,2 LB,Trevor Reilly,29,1989,73,45,75,61,80,67,0.400000,1 LB,Marquis Flowers,25,1993,83,45,71,58,76,74,0.400000,1 DL,Alan Branch,33,1985,66,60,67,83,90,67,3.300000,2 DL,Trey Flowers,24,1994,84,65,79,76,89,76,0.500000,2 DL,Malcom Brown,23,1995,89,68,68,73,87,70,1.800000,2 DL,Deatrich Wise Jr.,23,1995,74,56,67,73,86,74,0.600000,4 DL,Lawrence Guy,27,1991,71,67,77,71,86,70,2.700000,4 DL,Ricky Jean-Francois,31,1987,60,60,64,71,86,70,0.600000,1 DL,Lewis Kari,33,2006,54,77,76,59,66,61,0.500000,1 DL,Cassius Marsh,25,1993,98,59,79,50,71,71,0.500000,1 END_PLAYERS New York Jets,NYJ QB,Bryce Petty,26,1992,89,45,70,83,75,45,0.500000,2 QB,Christian Hackenberg,22,1996,74,50,76,91,70,40,1.000000,3 QB,Josh McCown,38,1980,57,71,70,73,79,37,5.600000,1 RB,Elijah McGuire,23,1995,80,40,76,76,89,80,0.400000,4 RB,Matt Forte,32,1986,62,64,79,79,87,77,3.100000,2 RB,Bilal Powell,29,1989,54,77,73,76,88,77,2.900000,2 RB,Lawrence Thomas,24,1994,93,45,73,45,73,45,0.300000,2 WR,Jermaine Kearse,27,1991,81,75,85,75,90,71,4.000000,2 WR,Jeremy Kerley,29,1989,67,63,75,75,86,72,0.500000,1 WR,Robby Anderson,24,1994,93,61,68,70,94,66,0.300000,2 WR,ArDarius Stewart,24,1994,78,52,75,70,89,74,0.700000,4 WR,Austin S-Jenkins,25,1993,89,58,67,70,87,65,1.200000,1 WR,Neal Sterling,25,1993,70,40,73,60,85,71,0.400000,1 WR,Chad Hansen,22,1996,89,45,75,59,89,53,0.500000,4 WR,Eric Tomlinson,25,1993,68,45,73,62,80,44,0.300000,1 OL,James Carpenter,28,1990,85,63,76,81,73,64,3.500000,2 OL,Ben Ijalana,28,1990,75,45,73,75,75,60,3.800000,2 OL,Jonotthan Harrison,26,1992,95,60,75,76,72,59,0.600000,1 OL,Kelvin Beachum,28,1990,74,68,75,71,74,63,5.900000,3 OL,Brian Winters,26,1992,72,71,76,71,73,60,4.500000,4 OL,Dakota Dozier,26,1992,70,58,76,70,79,60,0.400000,1 OL,Wesley Johnson,26,1992,66,62,81,70,73,58,1.700000,1 OL,Brandon Shell,25,1993,80,57,81,68,73,60,0.400000,3 OL,Brent Qvale,26,1992,66,52,76,61,77,60,0.300000,1 OL,Thomas Hennessy,23,1995,91,40,70,45,46,56,0.300000,3 K,Chandler Catanzaro,26,1992,69,40,68,91,82,40,0.600000,1 K,Lachlan Edwards,25,1993,73,40,65,83,75,40,0.400000,3 S,Marcus Maye,24,1994,77,54,75,75,90,74,1.500000,4 S,Rontez Miles,29,1989,88,52,79,75,85,69,0.300000,1 S,Terrence Brooks,25,1993,73,56,70,77,91,47,0.400000,1 S,Jamal Adams,22,1996,88,60,81,74,91,35,5.700000,4 CB,Buster Skrine,28,1990,73,62,73,77,91,53,4.700000,2 CB,Juston Burris,24,1994,83,45,81,75,88,55,0.500000,3 CB,Rashard Robinson,22,1996,85,61,81,77,93,37,0.500000,3 CB,Robert Nelson,27,1991,84,45,75,75,90,47,0.300000,1 CB,Morris Claiborne,27,1991,83,60,68,77,90,40,4.400000,1 CB,Darryl Roberts,27,1991,80,45,64,77,92,37,0.400000,2 CB,Derrick Jones,23,1995,94,35,73,71,90,40,0.400000,4 LB,Demario Davis,28,1990,66,65,73,75,89,77,1.500000,1 LB,Bruce Carter,29,1989,62,59,62,70,82,76,0.500000,1 LB,Jordan Jenkins,23,1995,79,59,67,68,86,70,0.600000,3 LB,Darron Lee,23,1995,87,60,79,65,79,77,2.500000,3 LB,Julian Stanford,27,1991,63,50,65,64,82,77,0.500000,1 LB,Lorenzo Mauldin,25,1993,72,56,71,64,81,69,0.600000,2 LB,Freddie Bishop,27,1991,76,40,79,62,83,66,0.300000,1 LB,Josh Martin,26,1992,84,45,71,61,80,67,1.300000,2 DL,Muhammad Wilkerson,28,1990,74,68,85,89,97,79,12.600000,4 DL,Leonard Williams,23,1995,99,71,68,76,90,76,4.800000,2 DL,Steve McLendon,31,1987,74,62,71,75,91,72,2.700000,2 DL,Ed Stinson,27,1991,86,45,65,77,85,63,0.400000,1 DL,Mike Pennel,26,1992,85,52,70,76,85,66,0.600000,1 DL,Kony Ealy,26,1992,69,63,73,67,82,79,0.500000,1 DL,Xavier Cooper,26,1992,69,52,76,70,81,71,0.500000,2 DL,David Bass,27,1991,71,52,75,60,74,71,0.500000,1 DL,Obum Gwacham,26,1992,65,40,67,60,74,74,0.400000,2 END_PLAYERS Houston Texans,HOU QB,Deshaun Watson,22,1996,89,71,83,77,79,70,3.400000,4 QB,Tom Savage,27,1991,97,50,76,87,74,40,0.400000,1 QB,Josh Johnson,31,1987,61,45,75,76,72,53,0.600000,1 RB,Lamar Miller,26,1992,74,76,73,77,92,84,4.100000,3 RB,D'onta Foreman,21,1997,77,63,76,73,90,79,0.600000,4 RB,Alfred Blue,26,1992,87,61,65,70,87,71,0.400000,1 RB,Jordan Todman,27,1991,66,45,68,63,89,76,0.500000,1 RB,Jay Prosch,25,1993,75,60,85,59,81,55,0.400000,1 WR,DeAndre Hopkins,25,1993,86,87,87,87,92,74,2.600000,5 WR,Bruce Ellington,26,1992,93,61,79,71,91,76,0.400000,1 WR,Braxton Miller,25,1993,67,45,73,68,91,76,0.600000,3 WR,Will Fuller,23,1995,86,65,73,64,95,71,2.500000,3 WR,CJ Fiedorowicz,26,1992,74,65,83,73,81,55,0.800000,1 WR,Ryan Griffin,27,1991,77,59,75,68,75,63,1.900000,3 WR,Stephen Anderson,24,1994,70,40,73,60,84,62,0.300000,2 OL,Derek Newton,30,1988,62,71,71,76,83,59,3.000000,3 OL,Greg Mancz,25,1993,91,54,77,76,72,62,0.300000,1 OL,Jeff Allen,27,1991,69,60,67,76,73,59,4.700000,3 OL,Chris Clark,32,1986,63,62,65,75,77,60,2.200000,1 OL,Julie'n Davenport,22,1996,97,45,75,73,77,62,0.600000,4 OL,Nick Martin,24,1994,85,63,75,73,75,61,1.000000,3 OL,Breno Giacomini,32,1986,62,59,76,71,86,57,2.200000,1 OL,Xavier Su'a-Filo,26,1992,75,60,77,73,74,59,1.200000,1 OL,Kyle Fuller,23,1995,66,40,77,67,74,60,0.400000,4 OL,Kendall Lamm,25,1993,82,56,77,62,82,59,0.300000,1 OL,Jon Weeks,31,1987,62,60,73,56,48,45,0.600000,3 K,Ka'lmi Fairbairn,23,1995,84,35,65,77,87,35,0.300000,2 K,Shane Lechler,41,1977,67,56,67,77,86,56,1.600000,1 S,Marcus Gilchrist,29,1989,76,64,79,80,88,76,2.400000,1 S,Eddie Pleasant,29,1989,85,60,83,74,87,69,0.700000,1 S,Andre Hal,25,1993,67,68,75,79,92,43,0.500000,1 S,Corey Moore,24,1994,80,64,77,75,87,53,0.300000,1 S,Kurtis Drummond,25,1993,86,50,75,75,85,40,0.300000,1 CB,Kevin Johnson,25,1993,70,63,75,80,88,55,2.400000,2 CB,Johnathan Joseph,33,1985,58,76,71,82,89,44,4.200000,1 CB,Kareem Jackson,29,1989,74,64,70,76,89,53,6.700000,2 CB,Treston Decoud,24,1994,73,40,71,70,87,60,0.500000,4 CB,Marcus Williams,26,1992,81,54,77,74,87,37,1.700000,1 CB,Peyton Ohotto,25,2014,55,74,69,60,65,62,0.500000,1 LB,Whitney Mercilus,27,1991,82,71,76,76,84,74,4.900000,3 LB,Benardrick McKinney,25,1993,68,67,77,76,81,77,1.200000,2 LB,Jadeveon Clowney,24,1994,80,64,65,71,85,77,6.800000,2 LB,Zach Cunningham,23,1995,87,60,81,71,84,76,0.900000,4 LB,Brian Cushing,30,1988,60,73,83,68,85,74,6.400000,3 LB,Dylan Cole,23,1995,85,40,76,67,86,72,0.300000,3 LB,Lamarr Houston,30,1988,78,68,68,68,87,68,0.600000,1 LB,Jelani Jenkins,25,1993,66,60,76,64,79,76,0.500000,1 LB,Ufomba Kamalu,25,1993,77,40,76,65,84,62,0.300000,1 LB,Brennan Scarlett,24,1994,97,45,64,59,79,69,0.300000,2 LB,Brian Peters,29,1989,88,45,76,60,73,70,0.300000,1 DL,JJ Watt,28,1990,89,85,79,95,99,77,11.700000,5 DL,Carlos Watkins,24,1994,96,40,76,75,84,74,0.500000,4 DL,DJ Reader,23,1995,83,67,75,76,86,69,0.400000,3 DL,Joel Heath,24,1994,69,58,73,68,82,70,0.300000,2 DL,Christian Covington,24,1994,99,60,62,63,80,70,0.400000,2 DL,Brandon Dunn,25,1993,83,59,73,63,81,65,0.500000,2 DL,Kenneth Bonga,28,2011,65,73,52,69,64,57,0.500000,1 DL,Randall Durden,27,2012,89,78,73,61,59,66,0.500000,1 END_PLAYERS Indianapolis Colts,IND QB,Andrew Luck,28,1990,77,73,81,91,87,67,19.400000,5 QB,Jacoby Brissett,24,1994,86,59,81,89,78,69,0.600000,3 QB,Scott Tolzien,30,1988,73,45,81,70,77,40,1.300000,1 RB,Robert Turbin,28,1990,50,59,76,73,90,76,0.800000,2 RB,Matt Jones,24,1994,77,60,65,64,89,76,0.600000,2 RB,Frank Gore,34,1984,56,89,81,73,82,75,2.500000,1 RB,Marlon Mack,21,1997,95,56,76,60,89,72,0.500000,4 RB,Darrell Daniels,23,1995,74,40,75,59,86,70,0.300000,3 WR,TY Hilton,28,1990,81,91,77,85,94,75,9.200000,4 WR,Donte Moncrief,24,1994,70,63,76,77,92,72,0.700000,1 WR,Kamar Aiken,28,1990,72,63,68,75,89,72,2.300000,1 WR,Chester Rogers,23,1995,70,57,73,70,89,70,0.300000,2 WR,Jack Doyle,27,1991,67,70,71,77,77,53,3.900000,3 WR,Erik Swoope,25,1993,85,40,65,60,80,71,0.300000,1 WR,Brandon Williams,30,1988,55,50,65,60,86,62,0.600000,1 OL,Anthony Castonzo,29,1989,90,79,73,79,93,60,7.200000,3 OL,Denzelle Good,26,1992,81,62,64,76,79,68,0.400000,2 OL,Jeremy Vujnovich,27,1991,81,40,68,81,73,60,0.300000,1 OL,Jack Mewhort,26,1992,99,67,77,79,72,64,0.700000,1 OL,Ryan Kelly,24,1994,84,71,79,75,77,64,2.500000,3 OL,Kyle Kalis,24,1994,82,40,71,77,73,60,0.300000,3 OL,Joe Haeg,24,1994,72,60,83,70,75,60,0.400000,3 OL,Le'Raven Clark,24,1994,75,40,79,67,80,59,0.600000,3 OL,Tyreek Burwell,25,1993,70,40,70,68,77,58,0.400000,1 OL,Mike Person,29,1989,84,56,67,64,75,63,0.500000,1 OL,Luke Rhodes,25,1993,68,40,77,70,46,35,0.300000,1 K,Adam Vinatieri,45,1973,65,59,71,77,94,59,1.900000,1 K,Rigoberto Sanchez,23,1995,89,40,77,85,83,40,0.300000,3 S,Clayton Geathers,25,1993,69,65,76,77,87,75,0.500000,2 S,TJ Green,22,1996,91,45,75,76,93,70,0.800000,3 S,Matthias Farley,25,1993,83,60,77,76,89,68,0.300000,2 S,Malik Hooker,21,1997,83,60,73,77,88,67,3.100000,4 S,Darius Butler,31,1987,74,64,81,77,89,45,2.800000,1 CB,Nate Hairston,23,1995,90,45,75,76,88,53,0.500000,4 CB,Chris Milton,25,1993,79,40,79,71,92,59,0.300000,1 CB,Rashaan Melvin,28,1990,73,71,70,82,90,40,0.500000,1 CB,DJ White,24,1994,92,40,79,74,89,45,0.400000,3 CB,Pierre Desir,27,1991,82,45,75,76,88,40,0.500000,1 CB,Kenny Moore,22,1996,85,40,73,75,87,40,0.300000,3 CB,Quincy Wilson,21,1997,96,45,77,71,88,43,1.300000,4 LB,Jabaal Sheard,28,1990,80,76,81,77,86,74,5.300000,3 LB,Joshua Perry,23,1995,91,40,81,73,84,67,0.600000,3 LB,Jeremiah George,25,1993,91,50,76,71,83,71,0.400000,2 LB,Barkevious Mingo,27,1991,66,59,76,70,79,77,1.600000,1 LB,John Simon,27,1991,62,63,77,70,86,72,2.800000,3 LB,Anthony Walker Jr.,22,1996,98,40,87,70,84,66,0.500000,4 LB,Antonio Morrison,23,1995,72,52,70,68,83,69,0.500000,3 LB,Jon Bostic,26,1992,97,59,75,68,80,70,0.400000,1 LB,Tarell Basham,23,1995,71,45,79,63,80,68,0.700000,4 DL,Johnathan Hankins,25,1993,94,75,70,87,93,70,5.600000,3 DL,Al Woods,30,1988,70,60,68,87,92,68,1.300000,2 DL,Grover Stewart,24,1994,95,40,79,81,86,67,0.500000,4 DL,Hassan Ridgeway,23,1995,99,40,63,76,88,75,0.500000,3 DL,Margus Hunt,30,1988,83,57,71,73,82,74,1.300000,2 DL,Henry Anderson,26,1992,90,70,67,70,86,72,0.500000,2 DL,Emerson Estrello,27,2012,85,74,50,65,65,55,0.500000,1 DL,Roland Chisley,22,2017,70,65,91,60,55,60,0.500000,1 END_PLAYERS Jacksonville Jaguars,JAX QB,Blake Bortles,25,1993,69,62,91,87,78,67,7.000000,2 QB,Chad Henne,32,1986,68,61,79,77,74,37,2.500000,1 RB,Leonard Fournette,22,1996,79,68,73,87,91,82,7.000000,4 RB,Chris Ivory,29,1989,73,73,64,75,89,79,4.600000,4 RB,TJ Yeldon,24,1994,85,63,70,76,88,77,1.300000,2 RB,Corey Grant,26,1992,81,54,62,60,96,70,0.300000,1 RB,Tommy Bohanon,27,1991,88,57,73,58,76,57,0.400000,1 WR,Allen Robinson,24,1994,73,81,76,79,90,74,0.700000,1 WR,Marqise Lee,26,1992,88,70,76,75,89,74,1.100000,1 WR,Allen Hurns,26,1992,77,75,79,75,88,74,5.100000,4 WR,Dede Westbrook,24,1994,66,40,71,75,93,72,0.600000,4 WR,Jaelen Strong,23,1995,67,40,70,75,91,68,0.600000,2 WR,Keelan Cole,24,1994,81,45,76,67,87,76,0.300000,3 WR,James O'Shaughnessy,25,1993,66,40,67,64,83,69,0.400000,2 WR,Arrelious Benn,29,1989,88,58,65,60,84,70,0.600000,2 WR,Ben Koyack,24,1994,77,56,75,63,79,55,0.300000,1 WR,Marcedes Lewis,33,1985,52,68,75,63,74,47,2.500000,2 OL,Tyler Shatley,26,1992,85,45,71,91,77,60,0.700000,2 OL,Cam Robinson,22,1996,81,60,87,83,77,61,1.600000,4 OL,Brandon Linder,25,1993,73,79,77,79,80,60,5.600000,6 OL,AJ Cann,26,1992,88,65,76,79,73,60,0.700000,2 OL,Chris Reed,25,1993,89,45,68,73,75,61,0.300000,1 OL,Josh Wells,26,1992,79,45,71,70,79,60,0.500000,2 OL,Patrick Omameh,28,1990,71,64,76,68,73,68,0.600000,1 OL,Jermey Parnell,31,1987,66,67,68,71,73,61,4.000000,3 OL,William Poehls,26,1992,91,45,75,65,77,60,0.300000,1 OL,Josh Walker,26,1992,85,40,76,61,79,60,0.400000,1 OL,Matt Overton,32,1986,75,45,70,50,57,57,0.500000,1 K,Josh Lambo,27,1991,83,40,67,87,84,40,0.400000,1 K,Brad Nortman,28,1990,70,45,71,81,82,45,1.400000,3 S,Barry Church,29,1989,86,60,89,72,85,76,4.100000,4 S,Calvin Pryor,25,1993,84,60,83,76,87,67,1.000000,1 S,Tashaun Gipson,27,1991,73,70,81,79,84,60,5.000000,4 S,Jarrod Wilson,23,1995,93,40,77,70,87,53,0.300000,2 S,Peyton Thompson,27,1991,84,45,70,74,88,40,0.400000,1 CB,Jalen Ramsey,23,1995,82,73,76,84,93,68,6.000000,3 CB,Jalen Myrick,22,1996,84,40,70,74,96,59,0.400000,4 CB,AJ Bouye,26,1992,60,76,68,82,89,47,9.700000,5 CB,Aaron Colvin,26,1992,63,64,64,77,89,53,0.600000,1 CB,Tyler Patmon,26,1992,70,45,70,75,88,40,0.400000,1 CB,Homer Trimpe,26,2013,67,73,50,65,65,62,0.500000,1 LB,Blair Brown,23,1995,99,40,81,75,87,70,0.500000,4 LB,Telvin Smith,26,1992,67,79,73,76,79,77,0.600000,1 LB,Paul Posluszny,33,1985,49,77,85,75,84,75,3.600000,1 LB,Myles Jack,22,1996,73,67,70,71,82,79,1.400000,3 LB,Donald Payne,23,1995,94,40,79,67,77,72,0.300000,3 LB,Lerentee McCray,27,1991,78,52,65,60,75,70,1.300000,1 DL,Marcell Dareus,27,1991,87,68,79,89,96,77,10.100000,5 DL,Calais Campbell,31,1987,66,83,83,76,93,79,10.300000,4 DL,Abry Jones,26,1992,64,67,71,77,87,66,2.400000,4 DL,Malik Jackson,27,1991,75,64,76,70,88,74,10.000000,5 DL,Dawuane Smoot,22,1996,94,45,81,68,81,76,0.800000,4 DL,Eli Ankou,23,1995,80,54,71,68,84,72,0.300000,3 DL,Yannick Ngakoue,22,1996,98,65,76,65,84,77,0.700000,3 DL,Sheldon Day,23,1995,84,50,76,65,85,77,0.600000,3 DL,Dante Fowler Jr.,23,1995,71,61,64,60,81,79,6.100000,2 END_PLAYERS Tennessee Titans,TEN QB,Marcus Mariota,24,1994,85,63,89,79,79,69,6.300000,2 QB,Brandon Weeden,34,1984,57,45,81,81,73,37,0.500000,1 QB,Matt Cassel,35,1983,52,60,76,71,74,37,1.600000,2 RB,Derrick Henry,23,1995,69,75,81,79,88,79,1.200000,3 RB,Demarco Murray,29,1989,65,79,75,75,89,80,3.900000,3 RB,David Fluellen,25,1993,68,40,75,63,82,75,0.400000,2 RB,Jalston Fowler,27,1991,82,60,60,61,77,63,0.500000,2 WR,Eric Decker,30,1988,55,73,81,83,86,72,4.100000,1 WR,Delanie Walker,33,1985,43,89,73,83,85,72,3.300000,2 WR,Rishard Matthews,28,1990,60,79,79,79,89,72,3.700000,2 WR,Tajae Sharpe,23,1995,79,62,76,75,87,69,0.500000,3 WR,Corey Davis,22,1996,78,59,77,70,90,76,6.600000,4 WR,Taywan Taylor,22,1996,66,45,85,68,92,72,0.700000,4 WR,Harry Douglas,33,1985,45,60,75,70,88,71,2.000000,1 WR,Jonnu Smith,22,1996,80,52,76,67,85,67,0.600000,4 WR,Eric Weems,32,1986,48,65,70,64,85,71,0.800000,2 WR,Darius Jennings,25,1993,81,40,73,61,90,66,0.400000,2 WR,Phillip Supernaw,27,1991,80,57,73,62,81,68,1.100000,2 OL,Taylor Lewan,26,1992,76,83,79,83,85,70,3.600000,2 OL,Brian Schwenke,26,1992,92,60,81,83,74,70,1.000000,1 OL,Jack Conklin,23,1995,78,75,85,76,78,60,4.000000,3 OL,Ben Jones,28,1990,76,76,85,77,78,60,2.800000,3 OL,Josh Kline,28,1990,64,76,71,70,82,73,1.300000,1 OL,Dennis Kelly,27,1991,61,52,77,75,78,60,0.900000,3 OL,Corey Levin,23,1995,87,40,75,73,78,60,0.400000,4 OL,Quinton Spain,26,1992,71,70,79,71,77,68,0.300000,1 OL,Gregorio Meneley,26,2013,81,85,67,58,66,69,0.500000,1 OL,Beau Brinkley,27,1991,72,35,71,56,50,45,0.800000,3 K,Ryan Succop,31,1987,70,57,73,81,93,57,1.800000,1 K,Brett Kern,31,1987,80,45,57,81,83,45,2.200000,3 S,Johnathan Cyprien,27,1991,83,71,81,79,89,74,4.400000,4 S,Kevin Byard,24,1994,86,63,79,79,89,72,0.700000,3 S,Da'Norris Searcy,29,1989,68,60,77,76,87,68,4.400000,2 S,Brynden Trawick,28,1990,77,45,77,74,85,70,1.500000,2 S,Curtis Riley,25,1993,89,45,76,75,89,47,0.300000,1 CB,Logan Ryan,26,1992,73,70,85,77,88,71,6.700000,3 CB,Adoree' Jackson,22,1996,83,50,76,77,92,59,2.800000,4 CB,Brice McCain,31,1987,54,57,73,77,90,40,2.000000,1 CB,LeShaun Sims,24,1994,89,62,75,77,88,40,0.400000,3 CB,Tye Smith,24,1994,99,45,76,74,87,37,0.400000,2 CB,Kalan Reed,24,1994,77,40,77,72,89,40,0.300000,1 LB,Wesley Woodyard,31,1987,79,77,85,77,80,79,2.300000,3 LB,Avery Williamson,25,1993,75,62,77,76,86,71,0.600000,1 LB,Brian Orakpo,31,1987,54,70,75,73,91,74,5.600000,2 LB,Kevin Dodd,25,1993,71,58,73,70,85,70,1.500000,3 LB,Jayon Brown,22,1996,98,45,76,68,81,70,0.500000,4 LB,Nate Palmer,28,1990,68,45,75,65,83,69,0.800000,2 LB,Erik Walden,32,1986,65,61,76,65,80,69,1.900000,1 LB,Derrick Morgan,28,1990,86,62,77,62,83,68,5.200000,2 LB,Daren Bates,27,1991,83,40,79,64,74,68,1.400000,3 DL,Jurrell Casey,28,1990,78,77,77,85,94,75,9.200000,6 DL,DaQuan Jones,26,1992,76,76,70,77,91,72,0.700000,1 DL,Sylvester Williams,29,1989,82,60,71,75,84,69,4.300000,3 DL,David King,28,1990,88,45,75,70,82,72,0.400000,1 DL,Karl Klug,29,1989,87,64,71,67,83,71,1.600000,2 DL,Austin Johnson,23,1995,85,54,77,67,85,71,1.200000,3 DL,Doug Lynah,32,2007,95,78,51,64,67,62,0.500000,1 DL,Armando Yardley,22,2017,87,84,54,61,66,55,0.500000,1 END_PLAYERS Denver Broncos,DEN QB,Brock Osweiler,27,1991,76,56,85,93,75,40,0.500000,1 QB,Paxton Lynch,23,1995,73,45,85,87,74,66,2.300000,3 QB,Trevor Siemian,26,1992,71,70,73,77,81,45,0.400000,2 RB,CJ Anderson,26,1992,71,77,75,87,89,84,2.800000,3 RB,Jamaal Charles,31,1987,57,71,68,71,90,79,1.600000,1 RB,De'Angelo Henderson,25,1993,87,40,73,67,90,74,0.400000,4 RB,Devontae Booker,25,1993,72,62,81,65,87,79,0.500000,3 RB,Andy Janovich,24,1994,92,59,73,60,79,63,0.400000,3 WR,Emmanuel Sanders,30,1988,72,89,75,95,92,71,8.600000,3 WR,Demaryius Thomas,30,1988,71,81,81,70,91,77,10.100000,3 WR,Bennie Fowler,26,1992,72,60,64,67,91,70,0.400000,1 WR,Isaiah McKenzie,22,1996,89,45,68,65,92,67,0.400000,4 WR,Jordan Taylor,25,1993,80,56,76,68,88,62,0.300000,1 WR,AJ Derby,26,1992,74,45,71,68,82,67,0.400000,2 WR,Cody Latimer,25,1993,71,35,73,63,90,69,0.700000,1 WR,Virgil Green,29,1989,61,60,67,63,86,71,2.100000,1 WR,Jeff Heuerman,25,1993,66,52,73,64,79,59,0.500000,2 OL,Matthew Paradis,28,1990,70,77,73,81,80,75,0.400000,1 OL,Garett Bolles,25,1993,82,60,79,81,87,62,2.700000,4 OL,Ronald Leary,28,1990,73,75,68,76,78,79,6.200000,4 OL,Max Garcia,26,1992,87,64,75,79,75,59,0.500000,2 OL,Cyrus Kouandjio,24,1994,82,60,62,75,77,63,0.400000,1 OL,Connor McGovern,24,1994,90,40,81,76,78,58,0.500000,3 OL,Billy Turner,26,1992,75,60,73,73,69,62,0.500000,1 OL,Allen Barbre,33,1985,64,61,73,71,77,60,1.000000,1 OL,Donald Stephenson,29,1989,88,60,75,71,74,56,3.500000,2 OL,Menelik Watson,29,1989,87,61,70,71,72,58,4.600000,3 OL,Elijah Wilkinson,22,1996,66,45,70,65,72,60,0.300000,1 OL,Casey Kreiter,27,1991,61,45,76,54,48,59,0.300000,1 K,Brandon McManus,26,1992,73,45,73,95,90,45,1.700000,1 K,Riley Dixon,24,1994,99,40,75,77,79,40,0.400000,3 S,Justin Simmons,24,1994,69,59,75,79,88,71,0.600000,3 S,Darian Stewart,29,1989,81,68,79,79,85,63,4.800000,4 S,William Parks,23,1995,86,58,76,72,85,70,0.400000,3 S,Jamal Carter,23,1995,66,35,79,69,85,68,0.300000,3 CB,Chris Harris Jr.,28,1990,80,87,83,90,91,45,6.600000,3 CB,Aqib Talib,31,1987,63,87,77,88,88,47,6.600000,3 CB,Brendan Langley,23,1995,96,40,77,74,91,55,0.600000,4 CB,Bradley Roby,25,1993,67,61,71,80,93,40,1.600000,1 CB,Lorenzo Doss,23,1995,77,45,76,71,89,37,0.400000,2 CB,Hunter Mieszala,26,2013,60,79,59,65,61,55,0.500000,1 LB,Von Miller,28,1990,81,85,85,89,93,79,14.100000,5 LB,Brandon Marshall,28,1990,70,70,77,79,86,76,5.600000,4 LB,Todd Davis,25,1993,69,73,81,77,86,74,1.700000,1 LB,Zaire Anderson,25,1993,86,40,73,67,81,66,0.300000,1 LB,Shaquil Barrett,25,1993,80,76,76,64,79,71,0.400000,1 LB,Shane Ray,24,1994,82,61,71,61,79,74,2.200000,2 LB,Demarcus Walker,23,1995,86,45,83,62,81,63,1.100000,4 LB,Kasim Edebali,28,1990,82,45,73,59,76,66,0.900000,1 DL,Derek Wolfe,27,1991,61,70,79,79,92,75,6.900000,3 DL,Domata Peko,33,1985,66,75,73,81,84,59,2.700000,2 DL,Zach Kerr,27,1991,67,45,62,76,87,68,1.200000,2 DL,Shelby Harris,26,1992,75,58,70,71,86,74,0.400000,1 DL,Billy Winn,28,1990,70,45,71,68,85,74,0.500000,1 DL,Adam Gotsis,25,1993,94,62,71,68,85,69,0.800000,3 DL,Jared Crick,28,1990,61,64,67,67,84,70,1.600000,1 DL,Henry Almodovar,25,2014,91,65,57,69,67,60,0.500000,1 END_PLAYERS Kansas City Chiefs,KC QB,Patrick Mahomes,22,1996,85,45,85,95,78,70,4.100000,4 QB,Alex Smith,33,1985,58,81,83,76,86,45,10.900000,2 QB,Tyler Bray,26,1992,72,40,70,87,70,37,0.600000,1 RB,Kareem Hunt,22,1996,91,75,75,83,90,77,0.600000,4 RB,Charcandric West,26,1992,64,60,68,68,91,76,1.000000,2 RB,Akeem Hunt,24,1994,99,54,73,59,92,68,0.300000,1 RB,Anthony Sherman,29,1989,65,64,81,54,79,55,1.400000,1 WR,Travis Kelce,28,1990,88,91,71,83,85,76,7.100000,5 WR,Tyreek Hill,23,1995,74,76,70,77,97,72,0.400000,3 WR,Albert Wilson,25,1993,96,64,73,71,91,70,1.100000,1 WR,Chris Conley,25,1993,91,60,73,70,93,70,0.600000,2 WR,Jehu Chesson,24,1994,69,45,76,71,90,69,0.500000,4 WR,De'Anthony Thomas,24,1994,76,57,61,63,92,76,0.500000,1 WR,Demetrius Harris,26,1992,70,60,70,63,87,70,1.100000,2 WR,Demarcus Robinson,23,1995,99,40,75,60,88,67,0.500000,3 WR,Ross Travis,24,1994,68,40,76,61,84,66,0.300000,2 OL,Mitch Morse,25,1993,86,76,73,85,81,60,1.000000,2 OL,Laurent Duvernay-Tard,26,1992,69,65,79,85,73,70,5.700000,6 OL,Eric Fisher,26,1992,87,71,83,77,74,73,9.100000,5 OL,Mitchell Schwartz,28,1990,87,73,76,75,85,60,5.000000,4 OL,Zach Fulton,26,1992,93,63,75,73,80,60,0.500000,1 OL,Cameron Erving,25,1993,90,57,75,71,73,60,2.300000,2 OL,Jordan Devey,29,1989,66,45,76,68,80,56,0.400000,1 OL,Bryan Witzmann,27,1991,82,59,73,65,77,60,0.300000,1 OL,Parker Ehinger,25,1993,76,50,70,65,79,60,0.600000,3 OL,James Winchester,28,1990,80,35,60,52,48,35,0.600000,5 K,Harrison Butker,22,1996,81,40,65,83,83,40,0.400000,4 K,Dustin Colquitt,35,1983,51,57,79,79,87,57,2.800000,1 S,Eric Berry,29,1989,69,87,81,88,91,76,10.600000,6 S,Ron Parker,30,1988,71,68,70,79,90,63,3.800000,3 S,Eric Murray,23,1995,84,45,79,75,89,66,0.600000,3 S,Daniel Sorensen,27,1991,81,62,81,75,84,66,3.100000,4 S,Steven Terrell,27,1991,72,50,73,77,92,43,0.400000,1 CB,Marcus Peters,24,1994,97,81,76,84,90,46,2.300000,2 CB,Steven Nelson,24,1994,91,60,83,79,90,55,0.500000,2 CB,Phillip Gaines,26,1992,73,50,71,79,93,37,0.500000,1 CB,Terrance Mitchell,25,1993,83,60,79,79,89,40,0.400000,1 CB,Kenneth Acker,25,1993,94,45,68,76,89,37,0.400000,1 CB,Garland East,24,2015,58,72,84,60,64,58,0.500000,1 LB,Justin Houston,28,1990,84,83,76,85,92,77,13.100000,4 LB,Derrick Johnson,35,1983,55,87,76,79,84,76,5.700000,2 LB,Ramik Wilson,25,1993,77,67,77,73,84,77,0.400000,1 LB,Kevin Pierre-Louis,26,1992,91,56,68,68,84,77,0.500000,1 LB,Reggie Ragland,24,1994,92,54,79,68,84,72,1.300000,3 LB,Ukeme Eligwe,23,1995,77,40,71,70,83,68,0.400000,4 LB,Tamba Hali,34,1984,74,75,79,67,88,70,5.400000,2 LB,Dee Ford,26,1992,96,60,75,61,82,76,2.800000,2 LB,Terrance Smith,24,1994,93,40,67,63,81,68,0.300000,1 LB,Tanoh Kpassagnon,23,1995,97,45,73,62,83,65,0.900000,4 LB,Frank Zombo,30,1988,65,60,76,63,76,67,0.900000,2 DL,Allen Bailey,28,1990,90,60,79,81,88,74,5.200000,2 DL,Jarvis Jenkins,29,1989,82,62,62,83,87,65,0.500000,1 DL,Chris Jones,23,1995,79,75,75,77,90,77,1.400000,3 DL,Bennie Logan,28,1990,65,63,71,79,92,70,5.600000,1 DL,Roy Miller,30,1988,77,60,73,76,89,68,0.900000,1 DL,Rakeem Nunez-Roches,24,1994,71,45,65,65,85,68,0.400000,1 DL,Isaiah Longhenry,27,2012,70,79,57,63,68,59,0.500000,1 DL,Fabian Vaszily,23,2016,93,81,71,60,55,56,0.500000,1 END_PLAYERS Oakland Raiders,OAK QB,Derek Carr,26,1992,92,71,83,91,82,55,14.600000,6 QB,EJ Manuel,27,1991,87,50,79,85,76,63,0.500000,1 QB,Connor Cook,24,1994,90,45,83,81,76,40,0.600000,3 RB,Marshawn Lynch,31,1987,59,71,79,91,89,84,2.800000,2 RB,Jalen Richard,24,1994,98,63,76,76,90,79,0.300000,2 RB,DeAndre Washington,24,1994,94,54,81,65,91,79,0.500000,3 RB,Jamize Olawale,28,1990,58,61,75,61,87,69,1.200000,2 WR,Cordarrelle Patterson,26,1992,81,60,79,71,92,82,2.700000,2 WR,Michael Crabtree,30,1988,71,91,83,77,87,76,5.500000,3 WR,Amari Cooper,23,1995,71,73,73,70,92,80,5.800000,2 WR,Seth Roberts,26,1992,67,67,75,70,91,69,0.200000,3 WR,Jared Cook,30,1988,59,70,71,71,86,68,3.300000,2 WR,Clive Walford,26,1992,96,60,75,70,79,65,0.600000,2 WR,Johnny Holton,26,1992,81,35,76,61,92,71,0.300000,2 WR,Lee Smith,30,1988,56,60,71,56,72,53,1.400000,1 OL,Donald Penn,34,1984,62,93,75,85,89,71,3.700000,1 OL,Kelechi Osemele,28,1990,72,91,73,87,88,64,7.400000,4 OL,Rodney Hudson,28,1990,76,85,81,77,89,76,5.600000,3 OL,Gabe Jackson,26,1992,95,75,75,85,72,60,5.900000,6 OL,David Sharpe,22,1996,92,45,75,76,80,61,0.600000,4 OL,Marshall Newhouse,29,1989,86,60,73,75,81,61,1.100000,2 OL,Vadal Alexander,23,1995,68,45,76,75,74,63,0.400000,3 OL,Jylan Ware,24,1994,81,40,76,73,77,60,0.400000,4 OL,Jon Feliciano,25,1993,99,45,76,67,79,62,0.500000,2 OL,Jon Condo,36,1982,62,68,71,58,51,45,0.700000,1 K,Marquette King,29,1989,63,57,71,97,92,57,2.100000,4 K,Sebastian Janikowski,39,1979,51,45,68,95,87,45,3.600000,1 K,Giorgio Tavecchio,27,1991,81,40,67,83,84,40,0.400000,1 S,Obi Melifonwu,23,1995,92,45,79,79,92,71,0.900000,4 S,Karl Joseph,24,1994,94,71,73,79,87,74,2.900000,3 S,Reggie Nelson,34,1984,61,67,87,77,87,69,2.700000,1 S,Keith McGill,28,1990,68,40,65,74,89,67,0.500000,1 S,Shalom Luani,23,1995,87,40,77,71,87,55,0.400000,4 S,Erik Harris,27,1991,70,40,76,69,85,60,0.300000,1 CB,Travis Carrie,27,1991,63,62,71,82,91,59,0.500000,1 CB,David Amerson,26,1992,64,71,75,80,90,60,4.200000,4 CB,Sean Smith,30,1988,64,63,77,82,87,55,7.100000,3 CB,Gareon Conley,22,1996,89,60,77,79,91,47,2.500000,4 CB,Dexter McDonald,26,1992,63,40,70,74,91,37,0.400000,2 CB,Hunter Diskind,32,2007,67,80,102,63,65,56,0.500000,1 LB,Navorro Bowman,29,1989,81,73,73,79,88,75,1.700000,1 LB,Bruce Irvin,30,1988,88,62,83,71,80,76,6.600000,3 LB,Marquel Lee,22,1996,82,60,81,70,83,69,0.500000,4 LB,Cory James,24,1994,98,59,77,68,79,74,0.400000,3 LB,Jihad Ward,23,1995,77,45,79,68,84,65,1.200000,3 LB,Shilique Calhoun,25,1993,81,45,79,64,82,69,0.600000,3 LB,Nicholas Morrow,22,1996,81,56,71,62,80,76,0.300000,3 LB,Xavier Woodson-Luste,22,1996,75,45,73,62,77,69,0.300000,3 DL,Khalil Mack,26,1992,75,89,91,76,93,88,5.900000,2 DL,Eddie Vanderdoes,23,1995,76,52,73,79,86,74,0.600000,4 DL,Mario Edwards Jr.,23,1995,77,63,63,77,88,72,1.400000,2 DL,Justin Ellis,27,1991,62,61,70,71,89,71,0.700000,1 DL,Treyvon Hester,25,1993,92,52,73,73,83,66,0.400000,4 DL,Darius Latham,23,1995,92,40,71,68,84,68,0.300000,2 DL,James Cowser,27,1991,62,40,71,67,82,74,0.300000,1 DL,Denico Autry,27,1991,63,60,70,60,81,71,1.100000,1 END_PLAYERS Los Angeles Chargers,LAC QB,Cardale Jones,25,1993,97,45,81,93,68,65,0.500000,3 QB,Philip Rivers,36,1982,47,81,95,79,84,37,15.800000,3 QB,Kellen Clemens,34,1984,70,59,71,71,76,37,0.700000,1 RB,Melvin Gordon,24,1994,79,76,77,77,92,82,2.600000,2 RB,Branden Oliver,26,1992,76,59,75,75,88,77,0.500000,1 RB,Andre Williams,25,1993,79,59,71,73,87,72,0.400000,1 RB,Austin Ekeler,22,1996,67,40,73,61,92,76,0.300000,3 RB,Derek Watt,25,1993,62,40,81,60,81,63,0.400000,3 WR,Keenan Allen,25,1993,91,87,65,85,87,77,6.800000,4 WR,Travis Benjamin,28,1990,76,73,65,75,92,74,4.500000,3 WR,Mike Williams,23,1995,75,60,77,76,89,76,5.000000,4 WR,Tyrell Williams,25,1993,67,73,71,75,91,75,0.300000,1 WR,Antonio Gates,37,1981,64,91,68,79,77,70,3.800000,1 WR,Geremy Davis,25,1993,82,35,67,71,89,72,0.400000,1 WR,Hunter Henry,23,1995,77,62,83,75,84,66,1.400000,3 WR,Sean Culkin,24,1994,98,40,79,60,82,62,0.300000,3 WR,Sean McGrath,30,1988,54,60,75,60,77,55,0.400000,1 WR,Jeff Cumberland,30,1988,51,68,70,60,86,47,0.500000,1 OL,Dan Feeney,23,1995,89,45,71,83,77,60,0.700000,4 OL,Russell Okung,29,1989,75,67,71,77,73,76,9.800000,4 OL,Matt Slauson,31,1987,52,83,76,79,74,60,1.400000,1 OL,Joe Barksdale,29,1989,71,62,73,77,72,60,4.100000,3 OL,Michael Ola,29,1989,70,45,71,71,77,62,0.400000,1 OL,Kenny Wiggins,29,1989,75,60,75,71,72,60,0.600000,1 OL,Spencer Pulley,24,1994,74,60,75,70,78,60,0.300000,2 OL,Michael Schofield,27,1991,72,61,71,70,74,59,0.700000,1 OL,Sam Tevi,23,1995,80,40,76,64,78,60,0.400000,4 OL,Mike Windt,31,1987,74,59,70,60,55,45,0.800000,4 K,Nick Novak,36,1982,45,45,64,81,88,45,0.600000,1 K,Drew Kaser,24,1994,98,40,60,91,75,40,0.400000,3 S,Tre Boston,25,1993,77,62,76,79,87,71,0.600000,1 S,Jahleel Addae,27,1991,66,70,79,79,83,70,3.800000,4 S,Rayshawn Jenkins,23,1995,88,45,71,74,89,70,0.600000,4 S,Adrian Phillips,25,1993,74,54,76,75,87,63,0.400000,1 CB,Jason Verrett,26,1992,81,70,77,86,93,43,2.700000,2 CB,Desmond King,23,1995,92,59,85,77,86,53,0.500000,4 CB,Casey Hayward,28,1990,82,79,70,80,89,43,3.700000,2 CB,Trevor Williams,24,1994,77,63,73,79,91,44,0.300000,1 CB,Michael Davis,22,1996,80,40,79,70,92,53,0.300000,1 CB,Wilson Spicknall,31,2008,64,77,95,61,58,66,0.500000,1 LB,Jatavis Brown,23,1995,78,61,77,75,88,77,0.400000,3 LB,Denzel Perryman,24,1994,95,64,81,71,88,74,1.000000,2 LB,Nick Dzubnar,26,1992,76,50,79,73,82,65,0.300000,1 LB,Korey Toomer,29,1989,89,65,61,63,79,80,1.100000,1 LB,James Onwualu,23,1995,98,40,76,63,80,70,0.300000,3 LB,Hayes Pullard,25,1993,67,52,76,62,76,71,0.400000,2 LB,Kyle Emanuel,26,1992,72,57,75,59,80,69,0.400000,2 DL,Corey Liuget,27,1991,72,70,79,83,93,76,7.300000,4 DL,Brandon Mebane,32,1986,50,76,75,83,92,70,3.400000,2 DL,Tenny Palepoi,27,1991,75,54,68,79,89,71,0.400000,1 DL,Joey Bosa,22,1996,85,68,76,76,84,77,6.700000,3 DL,Melvin Ingram,28,1990,88,73,76,70,85,79,11.600000,4 DL,Darius Philon,23,1995,90,54,71,64,82,75,0.400000,2 DL,Damion Square,28,1990,82,57,68,65,82,71,1.600000,2 DL,Jeremiah Attaochu,24,1994,78,60,71,60,79,79,0.900000,1 DL,Chris McCain,26,1992,68,54,75,45,69,75,0.400000,1 END_PLAYERS Chicago Bears,CHI QB,Mitchell Trubisky,23,1995,91,54,87,87,79,67,7.500000,4 QB,Mike Glennon,28,1990,70,62,81,87,77,37,10.000000,3 QB,Mark Sanchez,31,1987,80,57,77,76,74,40,1.700000,1 RB,Jordan Howard,23,1995,76,76,73,81,90,82,0.400000,3 RB,Tarik Cohen,22,1996,90,62,73,67,92,80,0.600000,4 RB,Benny Cunningham,27,1991,81,60,76,67,87,71,0.600000,1 RB,Taquan Mizzell,24,1994,67,40,73,59,87,72,0.300000,3 RB,Mike Burton,25,1993,87,62,71,45,81,47,0.400000,2 WR,Cameron Meredith,25,1993,85,75,76,79,89,75,0.300000,1 WR,Tre McBride,25,1993,86,35,75,75,91,76,0.300000,1 WR,Dontrelle Inman,28,1990,76,63,75,77,88,75,1.700000,1 WR,Kendall Wright,28,1990,75,63,83,75,90,79,1.400000,1 WR,Zach Miller,33,1985,52,64,65,79,85,69,2.000000,1 WR,Markus Wheaton,26,1992,68,60,79,70,90,72,3.900000,2 WR,Adam Shaheen,24,1994,68,45,75,68,81,70,1.300000,4 WR,Josh Bellamy,28,1990,64,62,76,64,89,67,0.500000,1 WR,Dion Sims,26,1992,89,62,65,68,80,63,4.000000,3 WR,Daniel Brown,25,1993,78,40,75,63,86,66,0.400000,1 OL,Josh Sitton,31,1987,83,85,71,83,77,70,4.800000,2 OL,Tom Compton,28,1990,74,58,81,81,74,60,1.700000,1 OL,Kyle Long,29,1989,79,73,83,71,85,65,6.300000,5 OL,Cody Whitehair,25,1993,71,77,79,76,77,57,0.900000,3 OL,Charles Leno Jr.,26,1992,69,67,73,67,85,60,0.400000,5 OL,Bradley Sowell,28,1990,64,59,70,70,78,60,0.500000,1 OL,Bobby Massie,28,1990,72,63,77,70,73,60,4.100000,2 OL,Hroniss Grasu,26,1992,93,60,75,63,74,60,0.600000,2 OL,Andrew Depaola,30,1988,89,45,70,61,73,58,0.400000,1 OL,Jame Rease,31,2008,87,68,73,58,61,64,0.500000,1 K,Pat O'Donnell,26,1992,96,50,67,83,85,50,0.400000,1 K,Connor Barth,31,1987,63,45,63,77,84,45,0.700000,1 S,Quintin Demps,32,1986,66,62,76,76,88,68,3.000000,3 S,DeAndre Houston-Carso,24,1994,89,40,79,71,88,74,0.400000,3 S,Eddie Jackson,25,1993,88,58,63,76,88,60,0.600000,4 S,Adrian Amos,24,1994,81,62,73,79,93,46,0.400000,2 S,Deon Bush,24,1994,75,45,76,74,87,60,0.500000,3 CB,Prince Amukamara,28,1990,89,67,76,82,90,69,6.600000,1 CB,Kyle Fuller,25,1993,71,61,81,80,92,60,2.400000,1 CB,Bryce Callahan,26,1992,88,65,75,84,94,40,0.400000,1 CB,Marcus Cooper,27,1991,87,61,76,79,90,46,3.600000,3 CB,Cre'von LeBlanc,23,1995,70,54,73,75,87,57,0.300000,2 CB,Sherrick McManis,30,1988,71,45,65,75,87,44,0.900000,1 CB,Deiondre' Hall,23,1995,73,40,75,74,88,40,0.500000,3 LB,Jerrell Freeman,31,1987,73,79,77,89,86,75,2.800000,2 LB,Danny Trevathan,27,1991,75,75,76,85,83,75,4.600000,3 LB,Nick Kwiatkoski,24,1994,87,60,76,73,85,75,0.500000,3 LB,Pernell McPhee,29,1989,83,70,76,70,91,69,5.200000,3 LB,Leonard Floyd,25,1993,77,60,75,70,82,79,4.000000,3 LB,Sam Acho,29,1989,80,60,75,70,80,68,0.600000,1 LB,Christian Jones,26,1992,66,60,79,65,79,74,1.300000,1 LB,Roy Robertson-Har,24,1994,95,45,73,65,83,65,0.300000,2 LB,Willie Young,32,1986,50,67,73,61,80,70,2.900000,2 DL,John Jenkins,28,1990,77,50,68,85,89,68,0.600000,1 DL,Akiem Hicks,28,1990,67,76,75,76,90,74,3.400000,1 DL,Eddie Goldman,23,1995,96,63,71,77,90,67,1.300000,2 DL,Mitch Unrein,30,1988,70,71,71,71,85,70,0.800000,1 DL,Jonathan Bullard,24,1994,74,40,76,65,84,77,0.700000,3 DL,Carlton Alvernaz,22,2017,68,67,63,66,63,65,0.500000,1 DL,Ira Maenpaa,29,2010,69,64,94,63,68,65,0.500000,1 DL,Carl Wisnewski,24,2015,50,70,63,63,63,66,0.500000,1 END_PLAYERS Detroit Lions,DET QB,Matthew Stafford,29,1989,87,75,89,97,82,46,16.800000,1 QB,Jake Rudock,24,1994,70,40,77,77,73,40,0.300000,1 RB,Ameer Abdullah,24,1994,90,64,73,73,89,79,0.800000,2 RB,Zach Zenner,26,1992,85,61,71,71,87,71,0.300000,1 RB,Theo Riddick,26,1992,83,73,77,64,87,79,2.400000,3 RB,Tion Green,24,1994,99,40,70,67,81,74,0.300000,3 RB,Dwayne Washington,23,1995,90,45,65,62,90,70,0.400000,3 RB,Darren Fells,31,1987,66,61,71,58,73,63,0.700000,1 WR,Golden Tate,29,1989,78,79,83,77,89,84,5.300000,2 WR,Kenny Golladay,24,1994,70,50,77,75,90,74,0.600000,4 WR,Marvin Jones,27,1991,67,76,79,70,90,72,5.000000,4 WR,Eric Ebron,24,1994,67,68,77,70,87,75,3.000000,1 WR,TJ Jones,25,1993,87,50,79,68,90,71,0.400000,1 WR,Jace Billingsley,24,1994,99,40,76,62,90,75,0.300000,2 WR,Jared Abbrederis,27,1991,90,54,77,64,89,62,0.400000,1 WR,Michael Roberts,23,1995,97,45,77,67,77,60,0.600000,4 OL,Taylor Decker,23,1995,84,75,81,81,84,71,2.700000,3 OL,TJ Lang,30,1988,64,85,77,79,87,75,7.600000,3 OL,Ricky Wagner,28,1990,82,76,73,76,84,65,7.800000,5 OL,Corey Robinson,25,1993,68,45,65,79,79,62,0.400000,2 OL,Travis Swanson,26,1992,68,75,81,76,73,60,0.700000,1 OL,Graham Glasgow,25,1993,68,60,79,71,74,60,0.600000,3 OL,Brian Mihalik,25,1993,79,40,70,68,74,58,0.300000,2 OL,Emmett Cleary,27,1991,78,40,76,67,78,60,0.400000,1 OL,Don Barclay,28,1990,83,60,76,68,73,56,0.700000,1 OL,Don Muhlbach,36,1982,52,68,71,62,62,40,0.700000,1 K,Matt Prater,33,1985,63,56,60,91,95,56,2.000000,1 K,Sam Martin,27,1991,80,50,71,93,86,50,2.100000,4 S,Miles Killebrew,24,1994,84,61,77,79,87,79,0.500000,3 S,Tavon Wilson,27,1991,85,70,85,79,87,69,1.200000,1 S,Glover Quin,31,1987,81,81,79,80,86,69,4.800000,3 S,Charles Washington,24,1994,82,40,71,76,90,57,0.300000,2 S,Don Carey,30,1988,78,45,75,74,86,55,0.500000,1 CB,Darius Slay,26,1992,73,75,75,86,94,53,9.300000,4 CB,Nevin Lawson,26,1992,84,63,79,77,90,62,0.600000,1 CB,DJ Hayden,27,1991,77,58,68,77,91,62,3.000000,1 CB,Jamal Agnew,22,1996,71,40,73,74,93,59,0.500000,4 CB,Quandre Diggs,24,1994,94,65,79,77,87,43,0.400000,2 CB,Teez Tabor,22,1996,89,45,77,72,87,53,1.000000,4 LB,Tahir Whitehead,27,1991,72,76,77,83,84,79,2.600000,1 LB,Jarrad Davis,22,1996,79,61,68,79,89,77,2.700000,4 LB,Nick Bellore,28,1990,62,61,70,76,85,65,0.500000,1 LB,Steve Longa,23,1995,92,35,79,73,85,65,0.300000,2 LB,Paul Worrilow,27,1991,82,59,79,67,81,70,2.300000,1 LB,Jalen Reeves-Maybin,22,1996,90,45,71,62,76,71,0.600000,4 DL,Haloti Ngata,33,1985,67,71,83,89,92,70,5.000000,1 DL,Akeem Spence,26,1992,64,52,75,83,84,68,2.300000,3 DL,Cornelius Washington,28,1990,86,54,61,77,84,74,2.300000,2 DL,A'Shawn Robinson,22,1996,76,58,79,75,89,71,1.100000,3 DL,Ziggy Ansah,28,1990,77,64,77,71,86,77,5.800000,1 DL,Anthony Zettel,25,1993,66,64,81,70,86,79,0.400000,3 DL,Khyri Thornton,28,1990,64,40,68,75,83,68,1.100000,2 DL,Jeremiah Ledbetter,23,1995,98,45,73,70,84,72,0.400000,4 DL,Jacquies Smith,27,1991,78,60,63,59,73,71,1.100000,1 DL,Jeremiah Valoaga,23,1995,72,45,73,54,73,71,0.300000,3 END_PLAYERS Green Bay Packers,GB QB,Aaron Rodgers,34,1984,72,95,93,95,92,55,18.100000,3 QB,Brett Hundley,24,1994,98,40,77,83,74,67,0.400000,2 QB,Joe Callahan,24,1994,97,40,79,73,75,43,0.300000,1 RB,Aaron Jones,23,1995,93,45,68,70,89,79,0.400000,4 RB,Jamaal Williams,22,1996,76,45,75,73,88,76,0.600000,4 RB,Ty Montgomery,24,1994,88,67,70,68,90,77,0.600000,2 RB,Devante Mays,23,1995,78,40,75,68,88,72,0.400000,4 RB,Aaron Ripkowski,25,1993,76,71,68,52,82,45,0.400000,2 WR,Randall Cobb,27,1991,72,76,79,93,91,74,8.300000,2 WR,Jordy Nelson,32,1986,53,97,79,95,89,69,7.900000,2 WR,Davante Adams,25,1993,73,85,76,81,89,74,0.800000,1 WR,Geronimo Allison,23,1995,70,58,71,68,87,69,0.300000,1 WR,Richard Rodgers,25,1993,79,61,68,70,78,67,0.700000,1 WR,Jeff Janis,26,1992,66,50,75,64,92,66,0.400000,1 WR,Trevor Davis,24,1994,76,54,73,63,92,63,0.400000,3 WR,Lance Kendricks,29,1989,70,64,79,63,82,66,1.600000,2 OL,David Bakhtiari,26,1992,71,97,70,81,82,89,7.900000,4 OL,Corey Linsley,26,1992,85,77,73,83,79,60,0.600000,1 OL,Bryan Bulaga,28,1990,80,89,75,77,74,76,5.200000,3 OL,Justin McCray,25,1993,86,50,65,79,77,59,0.300000,1 OL,Jahri Evans,34,1984,66,71,76,76,80,62,1.500000,1 OL,Lane Taylor,28,1990,76,70,73,76,79,60,1.600000,1 OL,Jason Spriggs,23,1995,83,50,85,70,77,61,1.100000,3 OL,Lucas Patrick,24,1994,89,45,71,67,78,59,0.300000,1 OL,Ulrick John,25,1993,94,58,71,62,75,58,0.400000,1 OL,Derek Hart,25,1993,85,40,75,54,45,52,0.300000,1 K,Mason Crosby,33,1985,76,40,76,89,84,40,3.300000,3 K,Justin Vogel,24,1994,73,40,63,87,81,40,0.300000,3 S,Josh Jones,23,1995,95,58,77,79,92,74,0.800000,4 S,Morgan Burnett,28,1990,86,71,75,79,86,75,5.200000,1 S,Ha Ha Clinton-Dix,25,1993,77,71,81,77,87,77,2.400000,2 S,Marwin Evans,24,1994,86,40,76,75,90,55,0.300000,2 S,Jermaine Whitehead,24,1994,67,40,75,71,89,40,0.300000,1 CB,Quinten Rollins,25,1993,93,58,81,77,87,63,0.700000,2 CB,Kevin King,22,1996,72,56,75,77,91,55,1.600000,4 CB,Damarious Randall,25,1993,67,59,76,77,90,46,1.900000,2 CB,Josh Hawkins,24,1994,87,40,71,77,93,37,0.300000,2 CB,Davon House,28,1990,70,60,75,76,89,40,2.300000,1 CB,Demetri Goodson,28,1990,61,40,63,76,91,37,0.400000,1 CB,Lenzy Pipkins,24,1994,74,40,63,71,90,45,0.300000,3 CB,Donatello Brown,26,1992,85,35,77,71,89,37,0.300000,1 LB,Jake Ryan,25,1993,81,63,71,73,84,72,0.500000,2 LB,Blake Martinez,23,1995,68,70,85,73,86,72,0.500000,3 LB,Clay Matthews,31,1987,72,73,83,70,87,76,10.800000,2 LB,Nick Perry,27,1991,71,70,77,68,85,77,9.700000,5 LB,Kyler Fackrell,26,1992,68,45,71,70,82,70,0.600000,3 LB,Joe Thomas,26,1992,78,62,76,65,80,74,0.400000,1 LB,Vince Biegel,24,1994,86,45,70,64,81,69,0.600000,4 LB,Chris Odom,23,1995,87,35,73,62,80,60,0.300000,3 LB,Ahmad Brooks,33,1985,41,61,77,56,79,68,3.300000,1 DL,Mike Daniels,28,1990,87,85,76,89,95,77,8.300000,3 DL,Dean Lowry,23,1995,77,45,79,75,89,75,0.500000,3 DL,Kenny Clark,22,1996,70,63,79,76,88,69,2.200000,3 DL,Montravius Adams,23,1995,85,45,85,75,84,74,0.400000,4 DL,Quinton Dial,27,1991,61,62,63,76,87,68,2.800000,3 DL,Reggie Vellekamp,33,2006,60,89,67,66,66,63,0.500000,1 DL,Rory Blevans,25,2014,95,78,55,57,65,59,0.500000,1 DL,Davis Szafran,26,2013,57,68,62,55,64,66,0.500000,1 END_PLAYERS Minnesota Vikings,MIN QB,Teddy Bridgewater,25,1993,72,62,76,81,85,62,1.600000,1 QB,Sam Bradford,30,1988,64,75,73,81,84,37,11.300000,1 QB,Kyle Sloter,23,1995,72,45,81,79,76,62,0.300000,1 QB,Case Keenum,29,1989,85,67,75,76,79,37,1.400000,1 RB,Dalvin Cook,22,1996,81,62,75,77,90,82,1.400000,4 RB,Jerick McKinnon,25,1993,68,62,76,76,93,80,0.500000,1 RB,Latavius Murray,27,1991,64,71,68,75,92,80,3.500000,3 RB,Mack Brown,26,1992,61,40,77,65,87,74,0.300000,1 RB,CJ Ham,24,1994,68,50,73,63,83,75,0.300000,2 RB,Blake Bell,26,1992,63,40,64,64,79,70,0.500000,2 WR,Stefon Diggs,24,1994,84,81,65,83,91,72,0.400000,2 WR,Adam Thielen,27,1991,77,79,75,83,89,70,3.600000,4 WR,Kyle Rudolph,28,1990,77,81,79,85,77,67,5.400000,3 WR,Michael Floyd,28,1990,90,52,75,71,89,74,0.900000,1 WR,Stacy Coley,23,1995,87,40,67,70,91,67,0.400000,4 WR,Laquon Treadwell,22,1996,67,60,77,71,87,70,2.400000,3 WR,Jarius Wright,28,1990,78,60,85,65,91,70,2.800000,3 WR,David Morgan,24,1994,99,50,65,64,72,62,0.400000,3 OL,Joe Berger,35,1983,45,71,75,79,78,62,1.400000,1 OL,Pat Elflein,23,1995,98,60,83,77,74,59,0.700000,4 OL,Riley Reiff,29,1989,90,64,89,73,80,63,8.700000,5 OL,Danny Isidora,23,1995,99,45,71,73,78,60,0.400000,4 OL,Aviante Collins,24,1994,86,35,71,75,74,59,0.300000,3 OL,Mike Remmers,28,1990,84,64,71,73,74,63,4.100000,5 OL,Nick Easton,25,1993,78,56,76,68,72,60,0.300000,1 OL,Jeremiah Sirles,26,1992,79,50,81,63,78,60,0.400000,1 OL,Rashod Hill,25,1993,74,40,75,63,74,60,0.300000,2 OL,Kevin McDermott,27,1991,71,45,73,45,54,45,0.600000,4 K,Ryan Quigley,27,1991,81,40,73,87,81,40,0.500000,2 K,Kai Forbath,30,1988,51,45,70,73,87,45,0.300000,1 S,Harrison Smith,28,1990,81,85,79,80,87,76,6.900000,4 S,Andrew Sendejo,30,1988,63,62,71,72,83,72,2.500000,3 S,Jayron Kearse,23,1995,91,40,79,69,85,63,0.400000,3 S,Anthony Harris,26,1992,75,57,70,76,87,43,0.300000,1 CB,Xavier Rhodes,27,1991,83,77,77,88,91,43,9.600000,6 CB,Terence Newman,39,1979,73,76,75,79,87,53,2.300000,1 CB,Trae Waynes,25,1993,76,61,77,77,94,40,3.200000,2 CB,Tramaine Brock,29,1989,83,63,76,77,88,44,0.600000,1 CB,Mackensie Alexander,24,1994,77,57,73,79,90,37,0.900000,3 CB,Marcus Sherels,30,1988,68,52,67,77,90,37,1.300000,1 LB,Kentrell Brothers,24,1994,88,40,81,77,85,65,0.400000,3 LB,Anthony Barr,25,1993,75,70,71,73,84,77,4.300000,2 LB,Eric Kendricks,25,1993,67,71,70,70,82,79,1.100000,2 LB,Eric Wilson,23,1995,78,35,76,67,81,71,0.300000,3 LB,Ben Gedeon,23,1995,90,52,87,63,81,70,0.600000,4 LB,Emmanuel Lamur,28,1990,82,52,70,60,75,70,1.700000,1 DL,Linval Joseph,29,1989,90,76,71,95,97,72,7.400000,6 DL,Everson Griffen,30,1988,74,75,67,73,88,77,8.200000,6 DL,Shamar Stephen,26,1992,75,60,76,73,85,67,0.600000,1 DL,Jaleel Johnson,23,1995,94,45,79,68,84,72,0.600000,4 DL,Danielle Hunter,23,1995,86,62,71,64,81,79,0.600000,2 DL,Stephen Weatherly,23,1995,68,35,75,63,80,75,0.300000,2 DL,Brian Robison,34,1984,44,70,81,64,80,71,2.300000,2 DL,Tashawn Bower,22,1996,73,35,71,62,79,72,0.400000,3 DL,Tom Johnson,33,1985,46,63,65,65,81,63,1.500000,1 END_PLAYERS Dallas Cowboys,DAL QB,Dak Prescott,24,1994,87,75,87,87,81,72,0.500000,3 QB,Cooper Rush,24,1994,80,45,83,77,75,40,0.300000,3 RB,Ezekiel Elliott,22,1996,92,77,85,77,91,84,6.500000,3 RB,Alfred Morris,29,1989,51,65,87,77,87,75,1.400000,1 RB,Rod Smith,25,1993,84,50,76,65,86,72,0.400000,2 RB,Darren McFadden,30,1988,75,59,62,65,89,70,0.700000,1 RB,Keith Smith,25,1993,83,61,70,52,77,62,0.400000,1 WR,Dez Bryant,29,1989,64,81,79,85,89,82,11.300000,3 WR,Cole Beasley,28,1990,79,75,83,76,88,72,2.800000,2 WR,Jason Witten,35,1983,59,95,89,87,77,63,4.800000,5 WR,Ryan Switzer,23,1995,76,45,81,70,89,71,0.600000,4 WR,Terrance Williams,28,1990,72,65,77,71,90,71,3.400000,4 WR,Noah Brown,20,1998,88,40,71,73,87,63,0.400000,4 WR,Brice Butler,27,1991,88,64,68,67,92,66,0.900000,1 WR,James Hanna,28,1990,82,63,64,60,87,66,2.200000,2 WR,Blake Jarwin,23,1995,70,35,73,63,81,59,0.400000,3 WR,Geoff Swaim,24,1994,82,52,64,60,82,60,0.400000,2 OL,Zack Martin,27,1991,72,93,89,87,91,87,2.200000,1 OL,Travis Frederick,26,1992,77,91,93,85,88,67,6.200000,7 OL,Tyron Smith,27,1991,69,95,76,79,78,73,9.700000,7 OL,Byron Bell,28,1990,69,60,71,83,74,60,1.400000,1 OL,Jonathan Cooper,27,1991,88,56,64,77,77,60,1.600000,1 OL,La'el Collins,24,1994,77,60,77,77,77,60,4.100000,3 OL,Joe Looney,27,1991,78,50,75,68,78,59,0.600000,1 OL,Chaz Green,25,1993,85,60,67,61,73,61,0.600000,2 OL,Joesph Sneath,25,2014,94,68,56,61,62,63,0.500000,1 OL,L. P. Ladouceur,36,1982,54,73,73,59,55,59,0.800000,1 K,Dan Bailey,29,1989,62,58,71,85,95,58,2.500000,4 K,Chris Jones,28,1990,65,56,67,87,92,56,1.000000,1 K,Mike Nugent,35,1983,74,40,71,83,77,40,0.600000,1 S,Byron Jones,25,1993,68,62,79,86,91,59,2.100000,2 S,Kavon Frazier,23,1995,95,45,83,75,86,75,0.400000,3 S,Xavier Woods,22,1996,95,54,79,75,89,69,0.400000,4 S,Jeff Heath,26,1992,87,59,76,76,89,60,1.500000,3 CB,Chidobe Awuzie,22,1996,91,54,77,76,91,62,0.900000,4 CB,Orlando Scandrick,30,1988,78,67,70,82,90,53,2.800000,3 CB,Jourdan Lewis,22,1996,66,60,83,79,89,59,0.600000,4 CB,Anthony Brown,24,1994,93,62,81,79,95,40,0.400000,3 CB,Bene Benwikere,26,1992,85,45,76,79,88,40,0.400000,1 CB,Billy Kafel,25,2014,89,60,79,55,58,63,0.500000,1 LB,Sean Lee,31,1987,66,95,73,91,88,77,5.800000,3 LB,Jaylon Smith,22,1996,95,56,68,71,82,74,1.500000,3 LB,Justin Durant,32,1986,63,61,77,70,76,75,0.600000,1 LB,Anthony Hitchens,25,1993,92,65,85,67,82,76,0.700000,1 LB,Damien Wilson,24,1994,82,60,75,68,81,72,0.500000,2 LB,Justin March-Lillard,24,1994,69,56,68,68,81,71,0.300000,1 LB,Kyle Wilber,28,1990,70,59,70,65,80,71,1.200000,1 DL,Stephen Paea,29,1989,63,61,73,93,93,63,1.600000,1 DL,Richard Ash,25,1993,82,35,73,77,86,63,0.300000,2 DL,Maliek Collins,22,1996,69,61,76,71,86,76,0.700000,3 DL,Tyrone Crawford,28,1990,83,67,68,67,85,75,6.900000,4 DL,Taco Charlton,23,1995,81,45,81,64,84,80,2.400000,4 DL,Charles Tapper,24,1994,73,40,81,65,85,76,0.600000,3 DL,DeMarcus Lawrence,25,1993,79,71,75,64,82,79,1.200000,1 DL,Lewis Neal,22,1996,92,35,76,65,81,68,0.300000,1 DL,David Irving,24,1994,82,63,71,60,77,77,0.400000,1 DL,Benson Mayowa,26,1992,79,60,67,57,76,76,2.400000,2 END_PLAYERS New York Giants,NYG QB,Geno Smith,27,1991,77,50,76,83,78,55,0.800000,1 QB,Davis Webb,22,1996,77,45,73,87,76,47,0.700000,4 QB,Eli Manning,36,1982,51,75,95,81,83,37,18.200000,3 RB,Orleans Darkwa,25,1993,78,64,76,75,90,79,0.700000,1 RB,Wayne Gallman,23,1995,87,58,77,76,89,76,0.500000,4 RB,Paul Perkins,23,1995,71,63,71,70,89,76,0.400000,3 RB,Shane Vereen,28,1990,58,65,76,65,88,74,3.300000,1 RB,Rhett Ellison,29,1989,51,62,64,56,81,55,3.600000,4 WR,Odell Beckham Jr.,25,1993,91,89,81,79,94,79,3.300000,2 WR,Sterling Shepard,24,1994,99,75,79,77,90,72,1.300000,3 WR,Evan Engram,23,1995,95,58,73,70,90,79,2.600000,4 WR,Brandon Marshall,33,1985,61,71,87,73,86,76,4.100000,2 WR,Dwayne Harris,30,1988,80,58,81,65,87,77,2.700000,3 WR,Tavarres King,27,1991,74,45,73,62,89,74,0.400000,1 WR,Roger Lewis,24,1994,70,54,73,63,91,69,0.300000,2 WR,Jerell Adams,25,1993,74,40,70,62,84,60,0.400000,3 WR,Matt LaCosse,25,1993,91,40,73,60,82,59,0.300000,1 OL,DJ Fluker,26,1992,78,60,76,83,73,59,2.800000,1 OL,Ereck Flowers,23,1995,91,60,75,81,72,60,3.600000,2 OL,Justin Pugh,27,1991,78,75,76,77,82,60,2.800000,1 OL,Weston Richburg,26,1992,74,79,81,79,77,60,1.100000,1 OL,John Jerry,31,1987,75,70,60,77,75,60,2.600000,3 OL,Brett Jones,26,1992,86,45,70,71,73,62,0.300000,1 OL,Bobby Hart,23,1995,70,63,73,71,74,59,0.400000,2 OL,Stuart Ferriola,32,2007,90,81,54,69,58,66,0.500000,1 OL,Chad Wheeler,23,1995,88,45,70,65,72,60,0.400000,3 OL,Zak DeOssie,33,1985,67,63,79,58,57,54,0.700000,2 K,Brad Wing,26,1992,91,45,70,83,82,45,1.400000,3 K,Aldrick Rosas,23,1995,95,40,61,79,80,40,0.300000,2 S,Landon Collins,23,1995,94,85,77,79,88,82,1.400000,2 S,Darian Thompson,24,1994,96,58,76,75,86,74,0.700000,3 S,Andrew Adams,24,1994,92,50,76,74,88,62,0.300000,2 S,Nat Berhe,26,1992,78,45,76,72,87,60,0.400000,1 CB,Janoris Jenkins,29,1989,77,79,83,86,91,60,8.100000,4 CB,Dominique R-Cromartie,31,1987,65,83,68,90,93,37,5.600000,2 CB,Ross Cockrell,26,1992,70,61,79,79,90,43,1.100000,1 CB,Eli Apple,22,1996,67,58,79,79,92,40,3.800000,3 CB,Aurelio Courts,26,2013,73,74,66,66,69,59,0.500000,1 CB,John Demario,30,2009,66,72,57,55,63,65,0.500000,1 LB,Devon Kennard,26,1992,95,63,70,75,84,71,0.600000,1 LB,BJ Goodson,24,1994,98,52,76,73,88,71,0.600000,3 LB,Keenan Robinson,28,1990,72,61,71,68,83,77,1.900000,1 LB,Jonathan Casillas,30,1988,67,64,61,68,75,76,2.100000,1 LB,Calvin Munson,23,1995,85,45,76,68,83,66,0.300000,3 LB,Mark Herzlich,30,1988,73,60,76,63,80,67,0.600000,1 LB,JT Thomas,29,1989,66,56,73,64,75,70,2.400000,1 LB,Curtis Grant,25,1993,86,40,67,62,80,67,0.300000,2 LB,Deontae Skinner,27,1991,67,45,75,62,73,66,0.400000,1 DL,Damon Harrison,29,1989,62,91,73,87,97,72,6.800000,4 DL,Robert Thomas,26,1992,80,40,63,89,88,57,0.300000,1 DL,Jason Pierre-Paul,28,1990,90,76,76,73,92,82,12.800000,4 DL,Dalvin Tomlinson,23,1995,68,64,73,75,89,70,0.900000,4 DL,Kerry Wynn,26,1992,89,45,73,75,85,69,1.100000,1 DL,Corbin Bryant,29,1989,63,52,70,75,84,68,0.500000,1 DL,Jay Bromley,25,1993,75,56,73,73,83,70,0.600000,1 DL,Olivier Vernon,27,1991,71,76,83,70,87,77,10.700000,4 DL,Avery Moss,23,1995,75,40,71,62,81,79,0.500000,4 DL,Devin Taylor,28,1990,67,56,73,60,75,71,0.500000,1 END_PLAYERS Philadelphia Eagles,PHI QB,Carson Wentz,25,1993,90,73,85,85,85,71,6.900000,3 QB,Nick Foles,28,1990,67,58,71,81,77,37,3.300000,2 RB,Jay Ajayi,24,1994,69,76,67,79,88,84,0.400000,2 RB,LeGarrette Blount,31,1987,62,93,77,81,87,77,0.900000,1 RB,Wendell Smallwood,23,1995,83,59,79,70,91,77,0.400000,3 RB,Corey Clement,23,1995,82,40,73,75,87,77,0.300000,3 RB,Kenjon Barner,27,1991,60,40,79,61,92,76,0.400000,1 RB,Trey Burton,26,1992,75,61,85,60,86,75,1.700000,1 WR,Zach Ertz,27,1991,68,91,76,87,80,69,6.300000,5 WR,Alshon Jeffery,27,1991,67,75,81,79,89,71,10.800000,1 WR,Nelson Agholor,24,1994,89,63,75,68,91,75,2.300000,2 WR,Mack Hollins,24,1994,69,56,75,70,90,70,0.600000,4 WR,Torrey Smith,28,1990,61,63,83,70,90,71,3.100000,3 WR,Shelton Gibson,22,1996,84,40,73,67,93,70,0.500000,4 WR,Marcus Johnson,23,1995,93,45,71,62,93,63,0.300000,2 WR,Brent Celek,32,1986,40,75,76,73,75,62,3.300000,2 OL,Jason Peters,35,1983,60,91,79,91,85,77,8.100000,3 OL,Brandon Brooks,28,1990,87,75,70,91,82,75,6.400000,4 OL,Chance Warmack,26,1992,99,59,83,85,74,61,0.600000,2 OL,Lane Johnson,27,1991,65,81,81,77,87,75,8.300000,4 OL,Jason Kelce,30,1988,62,75,68,73,98,61,4.700000,4 OL,Stefen Wisniewski,28,1990,89,61,85,73,78,63,2.000000,3 OL,Isaac Seumalo,24,1994,74,60,73,71,73,60,0.600000,3 OL,Halapouliva Vaitai,24,1994,69,52,79,68,74,60,0.400000,3 OL,Taylor Hart,26,1992,86,45,77,61,78,60,0.400000,1 OL,Rick Lovato,25,1993,98,40,76,59,51,56,0.300000,1 K,Jake Elliott,22,1996,87,40,63,95,86,40,0.500000,4 K,Donnie Jones,37,1981,72,45,67,73,81,45,0.900000,2 S,Malcolm Jenkins,30,1988,82,68,91,79,86,75,6.400000,3 S,Corey Graham,32,1986,50,62,79,76,87,76,1.300000,1 S,Rodney McLeod,27,1991,83,67,77,77,85,69,5.400000,4 S,Jaylen Watkins,26,1992,87,57,79,75,91,55,0.400000,1 CB,Ronald Darby,23,1995,80,67,67,84,93,53,1.000000,2 CB,Jalen Mills,23,1995,93,58,73,79,90,53,0.400000,3 CB,Sidney Jones,21,1997,93,50,68,75,90,62,1.400000,4 CB,Rasul Douglas,24,1994,71,54,77,72,87,57,0.600000,4 CB,Patrick Robinson,30,1988,56,68,71,77,88,44,0.500000,1 CB,Dexter McDougle,26,1992,85,40,64,74,91,40,0.400000,2 LB,Jordan Hicks,25,1993,94,75,67,73,85,77,0.600000,2 LB,Mychal Kendricks,27,1991,66,63,73,71,83,79,5.500000,3 LB,Nigel Bradham,28,1990,66,76,87,71,81,79,2.800000,1 LB,Joe Walker,25,1993,83,40,79,71,83,70,0.400000,3 LB,Kamu Grugier-Hill,23,1995,72,35,83,63,78,71,0.400000,3 LB,Nathan Gerry,22,1996,90,40,73,60,75,69,0.400000,4 LB,Najee Goode,28,1990,78,45,73,60,75,69,0.600000,1 DL,Elijah Qualls,22,1996,91,40,79,87,90,69,0.400000,4 DL,Fletcher Cox,27,1991,71,73,77,79,94,79,14.100000,6 DL,Brandon Graham,29,1989,67,79,76,75,90,80,4.700000,2 DL,Timmy Jernigan,25,1993,78,75,71,75,88,75,6.100000,5 DL,Derek Barnett,21,1997,77,54,73,76,86,74,3.200000,4 DL,Beau Allen,26,1992,89,61,76,77,88,63,0.400000,1 DL,Chris Long,32,1986,74,62,79,75,83,74,1.400000,2 DL,Destiny Vaeao,23,1995,85,45,68,71,85,67,0.300000,2 DL,Vinny Curry,29,1989,88,60,75,67,82,75,7.200000,4 DL,Steven Means,27,1991,89,45,65,56,75,74,0.600000,2 END_PLAYERS Washington Redskins,WAS QB,Kirk Cousins,29,1989,83,71,81,85,85,40,15.000000,1 QB,Colt McCoy,31,1987,51,58,85,67,76,46,2.300000,2 RB,Rob Kelley,25,1993,61,68,77,79,86,77,0.300000,2 RB,Samaje Perine,22,1996,84,59,73,75,87,75,0.600000,4 RB,Chris Thompson,27,1991,78,75,58,67,91,74,1.700000,1 RB,Niles Paul,28,1990,57,56,71,57,88,67,1.500000,1 WR,Jordan Reed,27,1991,60,89,70,89,86,77,8.300000,4 WR,Jamison Crowder,24,1994,77,71,79,76,91,72,0.500000,2 WR,Josh Doctson,25,1993,79,59,75,73,89,74,2.400000,3 WR,Terrelle Pryor Sr.,28,1990,68,70,77,73,91,72,5.600000,1 WR,Brian Quick,28,1990,88,60,75,73,87,74,0.600000,1 WR,Vernon Davis,33,1985,42,71,76,70,87,70,4.000000,3 WR,Ryan Grant,27,1991,65,62,71,68,88,66,0.400000,1 WR,Jeremy Sprinkle,23,1995,91,40,75,61,84,67,0.500000,4 OL,Trent Williams,29,1989,87,91,79,91,89,77,9.600000,4 OL,Brandon Scherff,26,1992,83,85,77,85,88,60,5.500000,2 OL,Morgan Moses,26,1992,80,75,71,79,87,60,5.400000,6 OL,Spencer Long,27,1991,81,73,64,77,74,63,0.700000,1 OL,Shawn Lauvao,30,1988,89,65,76,75,75,60,3.300000,1 OL,Chase Roullier,24,1994,98,40,79,73,77,60,0.400000,4 OL,Ty Nsekhe,32,1986,68,62,65,71,82,62,0.400000,1 OL,TJ Clemmings,26,1992,72,59,77,73,73,58,0.500000,2 OL,Tyler Catalina,24,1994,84,40,76,67,77,58,0.300000,3 OL,Nick Sundberg,30,1988,69,45,64,56,67,45,0.800000,4 K,Tress Way,27,1991,69,45,70,97,84,45,1.100000,4 K,Nick Rose,23,1995,84,35,54,35,88,35,0.300000,1 S,DeAngelo Hall,34,1984,75,70,71,79,88,62,3.600000,1 S,Montae Nicholson,22,1996,77,56,70,76,92,62,0.600000,4 S,DJ Swearinger,26,1992,60,70,83,79,83,57,3.600000,3 S,Deshazor Everett,25,1993,83,54,73,76,87,47,0.300000,1 CB,Josh Norman,30,1988,71,91,89,84,88,60,11.300000,4 CB,Kendall Fuller,22,1996,93,61,71,79,90,60,0.600000,3 CB,Fabian Moreau,23,1995,75,45,73,79,94,55,0.700000,4 CB,Bashaud Breeland,25,1993,70,63,73,77,87,53,0.700000,1 CB,Quinton Dunbar,25,1993,82,54,75,76,91,40,0.300000,1 CB,Joshua Holsey,24,1994,82,40,70,71,90,44,0.400000,4 LB,Zach Brown,28,1990,84,77,70,76,80,80,1.800000,1 LB,Martrell Spaight,24,1994,70,60,71,73,84,72,0.400000,2 LB,Mason Foster,28,1990,72,73,77,73,82,70,0.900000,1 LB,Ryan Kerrigan,29,1989,63,79,85,70,88,71,9.200000,4 LB,Ryan Anderson,23,1995,74,45,77,70,86,66,1.100000,4 LB,Will Compton,28,1990,88,60,77,68,81,74,1.100000,1 LB,Preston Smith,25,1993,97,60,73,65,84,71,1.300000,2 LB,Trent Murphy,27,1991,74,65,77,64,84,72,0.900000,1 LB,Josh Harvey-Clemon,23,1995,99,45,73,64,77,69,0.400000,4 LB,Junior Galette,29,1989,78,67,65,63,80,70,0.500000,1 LB,Chris Carter,28,1990,77,56,73,61,73,66,0.600000,1 DL,Arthur Jones,31,1987,65,63,75,81,89,70,0.600000,1 DL,Matt Ioannidis,23,1995,88,60,79,79,89,71,0.300000,2 DL,Terrell McClain,29,1989,82,62,62,79,88,67,4.100000,4 DL,Phil Taylor,29,1989,76,54,62,77,88,70,0.500000,1 DL,Ziggy Hood,30,1988,55,60,68,77,84,69,0.900000,2 DL,Jonathan Allen,22,1996,77,61,71,73,86,74,2.800000,4 DL,Stacy McGee,27,1991,62,61,65,75,85,66,3.600000,5 DL,Anthony Lanier,24,1994,88,40,75,59,75,71,0.300000,2 END_PLAYERS Atlanta Falcons,ATL QB,Matt Ryan,32,1986,75,87,93,89,91,40,16.500000,2 QB,Matt Schaub,36,1982,60,71,73,68,76,37,3.600000,2 RB,Devonta Freeman,25,1993,85,77,83,83,92,90,6.400000,6 RB,Tevin Coleman,24,1994,89,70,73,77,94,82,0.600000,2 RB,Terron Ward,25,1993,83,54,76,70,87,79,0.400000,1 RB,Derrick Coleman,27,1991,73,54,75,65,88,68,0.400000,1 WR,Julio Jones,28,1990,63,99,85,97,94,86,10.400000,4 WR,Mohamed Sanu,28,1990,60,76,83,87,88,75,4.900000,4 WR,Taylor Gabriel,26,1992,95,71,64,75,95,70,1.700000,1 WR,Justin Hardy,26,1992,88,56,79,71,87,76,0.500000,2 WR,Andre Roberts,29,1989,66,64,77,64,89,74,1.400000,1 WR,Nick Williams,27,1991,82,60,76,67,86,67,0.400000,1 WR,Austin Hooper,23,1995,86,60,79,64,82,68,0.600000,3 WR,Marvin Hall,24,1994,74,35,77,57,92,70,0.300000,1 WR,Devin Fuller,23,1995,72,40,75,60,93,63,0.400000,3 WR,Eric Saubert,23,1995,83,40,77,60,83,69,0.400000,4 WR,Levine Toilolo,26,1992,68,64,65,63,76,53,3.100000,3 OL,Alex Mack,32,1986,73,95,89,83,98,77,7.100000,4 OL,Ryan Schraeder,29,1989,62,77,77,76,88,73,4.800000,5 OL,Andy Levitre,31,1987,58,77,85,77,87,63,4.900000,2 OL,Jake Matthews,25,1993,72,70,89,75,86,61,5.200000,2 OL,Sean Harlow,22,1996,70,45,75,75,80,61,0.500000,4 OL,Austin Pasztor,27,1991,85,60,73,70,75,68,0.500000,1 OL,Ben Garland,29,1989,66,45,79,68,80,61,0.400000,1 OL,Wes Schweitzer,24,1994,68,45,77,67,75,59,0.400000,3 OL,Ty Sambrailo,25,1993,97,59,73,64,83,59,0.800000,2 OL,Josh Harris,28,1990,80,45,79,45,61,50,0.600000,2 K,Matt Bryant,42,1976,58,57,60,93,96,57,2.000000,1 K,Matt Bosher,30,1988,70,56,77,85,88,56,1.900000,3 S,Keanu Neal,22,1996,80,61,83,79,87,76,2.600000,3 S,Kemal Ishmael,26,1992,87,60,73,75,85,74,1.600000,1 S,Ricardo Allen,26,1992,77,67,83,80,89,62,0.400000,1 S,Damontae Kazee,24,1994,98,50,79,75,88,62,0.500000,4 S,Sharrod Neasman,26,1992,90,40,75,69,83,67,0.300000,1 CB,Desmond Trufant,27,1991,61,75,76,88,92,70,9.900000,6 CB,Brian Poole,25,1993,95,67,73,75,89,63,0.300000,2 CB,Robert Alford,29,1989,88,62,70,84,93,40,7.200000,4 CB,Jalen Collins,24,1994,83,61,68,79,90,46,1.200000,2 CB,Blidi Wreh-Wilson,28,1990,60,52,70,77,88,43,0.500000,1 CB,CJ Goodwin,27,1991,65,45,71,76,91,37,0.300000,1 LB,Duke Riley,23,1995,86,50,76,76,84,72,0.700000,4 LB,Deion Jones,23,1995,85,73,71,73,82,77,0.900000,3 LB,De'vondre Campbell,24,1994,68,70,77,70,81,79,0.500000,3 LB,Vic Beasley Jr.,25,1993,83,70,71,63,84,80,3.600000,2 LB,Sean Weatherspoon,30,1988,87,54,73,62,80,74,0.600000,1 LB,LaRoy Reynolds,27,1991,61,45,71,63,83,70,1.000000,1 LB,Jermaine Grace,24,1994,92,45,71,62,81,71,0.300000,3 DL,Dontari Poe,27,1991,79,65,85,91,94,77,5.300000,1 DL,Ahtyba Rubin,31,1987,61,61,76,85,91,67,0.600000,1 DL,Grady Jarrett,24,1994,86,71,65,79,89,72,0.400000,2 DL,Adrian Clayborn,29,1989,67,64,71,71,85,75,3.400000,1 DL,Takkarist McKinley,22,1996,85,57,73,67,82,77,2.500000,4 DL,Derrick Shelby,28,1990,77,59,71,68,82,74,3.600000,3 DL,Courtney Upshaw,28,1990,65,58,87,67,84,75,0.800000,1 DL,Brooks Reed,30,1988,74,64,77,61,83,77,3.300000,3 END_PLAYERS Carolina Panthers,CAR QB,Cam Newton,28,1990,85,77,95,95,80,79,15.800000,4 QB,Derek Anderson,34,1984,57,60,83,83,74,37,1.900000,1 QB,Garrett Gilbert,26,1992,72,35,71,73,71,40,0.300000,1 RB,Jonathan Stewart,30,1988,64,77,73,81,86,84,2.500000,2 RB,Christian McCaffrey,21,1997,83,54,76,68,91,77,4.400000,4 RB,Cameron Artis-Payne,27,1991,69,35,76,73,88,74,0.400000,2 RB,Fozzy Whittaker,28,1990,64,59,68,60,88,71,0.800000,2 RB,Alex Armah,23,1995,97,40,87,62,82,67,0.400000,4 WR,Greg Olsen,32,1986,40,95,85,95,85,70,7.200000,2 WR,Devin Funchess,23,1995,85,60,75,70,89,76,1.200000,2 WR,Russell Shepard,27,1991,64,60,76,67,90,74,2.500000,3 WR,Curtis Samuel,21,1997,88,56,75,65,95,69,1.500000,4 WR,Brenton Bersin,27,1991,88,59,75,68,85,68,0.400000,1 WR,Kaelin Clay,25,1993,74,40,67,60,91,67,0.300000,1 WR,Ed Dickson,30,1988,58,68,76,63,83,65,1.700000,1 WR,Chris Manhertz,25,1993,89,45,73,60,78,65,0.300000,1 OL,Tyler Larsen,26,1992,99,56,77,87,82,60,0.300000,1 OL,Andrew Norwell,26,1992,68,79,77,76,80,77,1.700000,1 OL,Trai Turner,24,1994,91,76,76,77,89,64,7.700000,5 OL,Taylor Moton,23,1995,97,45,89,76,83,65,0.800000,4 OL,Ryan Kalil,32,1986,51,81,81,79,81,61,7.100000,1 OL,Daryl Williams,25,1993,95,60,73,76,81,64,0.500000,2 OL,Matt Kalil,28,1990,87,63,81,79,73,60,8.400000,5 OL,Amini Silatolu,29,1989,81,56,76,76,75,60,0.600000,1 OL,Greg Van Roten,27,1991,75,45,75,71,80,61,0.400000,1 OL,John Theus,23,1995,88,45,81,60,74,60,0.400000,3 OL,JJ Jansen,31,1987,77,61,73,58,56,50,0.800000,4 K,Graham Gano,30,1988,54,40,65,95,85,40,2.400000,1 K,Michael Palardy,25,1993,72,40,63,83,78,40,0.300000,1 S,Jairus Byrd,31,1987,68,58,79,79,84,69,0.600000,1 S,Colin Jones,30,1988,74,45,68,75,90,62,0.800000,2 S,Kurt Coleman,29,1989,66,71,76,77,85,63,3.700000,2 S,Mike Adams,36,1982,49,77,71,77,82,67,1.500000,2 CB,Captain Munnerlyn,29,1989,86,60,75,79,89,53,3.700000,4 CB,Ladarius Gunter,25,1993,81,54,75,75,88,60,0.300000,1 CB,James Bradberry,24,1994,76,64,77,77,91,53,0.800000,3 CB,Daryl Worley,22,1996,88,60,79,76,86,46,0.600000,3 CB,Kevon Seymour,24,1994,87,40,65,74,93,40,0.400000,3 CB,Ivan Pasquarelli,27,2012,91,94,74,58,59,59,0.500000,1 LB,Luke Kuechly,26,1992,92,93,93,95,93,84,10.400000,5 LB,Thomas Davis,34,1984,57,77,81,81,84,79,8.400000,2 LB,Shaq Thompson,23,1995,71,64,79,76,84,77,2.100000,2 LB,David Mayo,24,1994,68,45,67,73,83,68,0.400000,2 LB,Andrew Gachkar,29,1989,90,58,70,70,77,69,0.500000,1 LB,Ben Jacobs,29,1989,71,54,79,63,76,67,0.500000,1 LB,Jared Norris,24,1994,70,35,77,63,80,65,0.300000,2 DL,Star Lotulelei,28,1990,77,63,77,93,95,72,2.900000,1 DL,Kawann Short,28,1990,64,79,71,76,90,75,12.600000,5 DL,Vernon Butler,23,1995,76,58,76,70,86,79,2.000000,3 DL,Kyle Love,31,1987,56,64,65,73,86,65,0.800000,2 DL,Julius Peppers,37,1981,65,71,79,68,85,79,3.200000,1 DL,Charles Johnson,31,1987,53,75,75,68,83,74,2.500000,2 DL,Bryan Cox Jr.,23,1995,75,40,68,67,84,74,0.300000,3 DL,Daeshon Hall,22,1996,74,40,77,61,79,76,0.600000,4 DL,Mario Addison,30,1988,56,75,73,61,80,75,6.400000,3 DL,Wes Horton,27,1991,60,60,65,61,77,71,0.800000,2 END_PLAYERS New Orleans Saints,NO QB,Drew Brees,38,1980,75,99,93,81,92,37,7.600000,1 QB,Taysom Hill,27,1991,94,35,71,77,68,70,0.300000,3 QB,Chase Daniel,31,1987,78,57,87,73,76,40,0.600000,1 RB,Alvin Kamara,21,1997,76,59,71,75,88,82,0.800000,4 RB,Mark Ingram,28,1990,55,77,79,77,87,79,3.100000,2 RB,Trey Edmunds,23,1995,70,40,68,63,90,74,0.300000,3 RB,Daniel Lasco,25,1993,76,40,68,61,90,69,0.400000,3 RB,Zach Line,27,1991,74,40,81,67,83,68,0.500000,1 WR,Michael Thomas,23,1995,75,79,77,85,89,72,1.100000,3 WR,Willie Snead,25,1993,87,73,75,75,89,66,0.400000,1 WR,Austin Carr,24,1994,95,40,76,67,86,76,0.300000,3 WR,Brandon Coleman,25,1993,90,62,70,71,87,70,0.300000,1 WR,Coby Fleener,29,1989,85,68,71,71,87,70,4.800000,4 WR,Ted Ginn Jr.,32,1986,52,70,67,63,93,74,2.900000,3 WR,Tommylee Lewis,25,1993,93,40,71,63,91,68,0.300000,2 WR,Josh Hill,27,1991,74,60,68,67,83,66,2.000000,2 WR,Michael Hoomanawanui,29,1989,71,63,68,64,77,46,1.200000,2 OL,Terron Armstead,26,1992,96,79,70,77,78,79,9.500000,5 OL,Zach Strief,34,1984,61,79,79,79,84,60,3.200000,2 OL,Larry Warford,26,1992,70,65,85,79,74,67,6.600000,4 OL,Ryan Ramczyk,23,1995,90,60,83,77,78,63,2.100000,4 OL,Josh LeRibeus,28,1990,60,56,76,77,72,62,0.500000,1 OL,Senio Kelemete,27,1991,82,60,73,75,73,63,0.900000,1 OL,Andrus Peat,24,1994,79,63,67,75,80,59,2.800000,2 OL,Max Unger,31,1987,66,89,81,76,73,60,5.500000,3 OL,Bryce Harris,28,1990,62,45,75,68,82,60,0.500000,1 OL,Zach Wood,24,1994,89,40,70,60,53,45,0.300000,2 K,Thomas Morstead,31,1987,61,54,79,89,94,54,2.700000,2 K,Wil Lutz,23,1995,72,45,63,93,88,45,0.300000,2 S,Marcus Williams,21,1997,85,59,79,77,87,72,1.400000,4 S,Vonn Bell,23,1995,99,60,76,75,88,72,0.800000,3 S,Kenny Vaccaro,26,1992,88,67,87,77,85,72,2.700000,1 S,Rafael Bush,30,1988,62,62,70,77,87,59,0.600000,1 S,Chris Banjo,27,1991,87,45,71,76,88,53,1.000000,2 CB,Marshon Lattimore,21,1997,67,60,64,80,94,62,3.900000,4 CB,PJ Williams,24,1994,77,45,77,76,90,66,0.600000,2 CB,Delvin Breaux,28,1990,66,62,68,77,90,57,0.300000,1 CB,Ken Crawley,24,1994,82,60,77,79,91,43,0.300000,2 CB,De'vante Harris,24,1994,89,40,73,75,88,40,0.300000,2 CB,Booker Keefner,23,2016,89,64,61,57,69,57,0.500000,1 LB,Gerald Hodges Jr.,26,1992,95,64,77,77,82,72,0.500000,1 LB,Craig Robertson,29,1989,81,63,75,75,80,70,1.300000,2 LB,Manti Te'o,26,1992,79,65,77,75,81,72,1.800000,2 LB,Michael Mauti,27,1991,67,59,65,75,85,66,0.500000,1 LB,AJ Klein,26,1992,88,61,83,71,79,70,4.400000,4 LB,Alex Anzalone,23,1995,96,52,64,68,81,70,0.700000,4 LB,Hau'oli Kikaha,25,1993,67,60,64,60,78,71,1.100000,2 DL,Cameron Jordan,28,1990,76,81,85,83,94,79,8.900000,4 DL,Tyeler Davison,25,1993,93,61,67,83,86,67,0.400000,2 DL,David Onyemata,25,1993,72,60,75,79,87,74,0.500000,3 DL,Nick Fairley,29,1989,60,64,77,77,89,74,5.600000,4 DL,Sheldon Rankins,23,1995,71,60,79,75,87,76,3.200000,3 DL,John Hughes III,29,1989,82,57,70,73,86,68,0.500000,1 DL,Trey Hendrickson,23,1995,90,40,77,64,82,79,0.600000,4 DL,Al-Quadin Muhammad,22,1996,87,40,75,63,79,75,0.400000,4 DL,Alex Okafor,26,1992,81,63,85,61,77,70,1.900000,1 END_PLAYERS Tampa Bay Buccaneers,TB QB,Jameis Winston,23,1995,86,65,93,91,80,70,6.600000,2 QB,Ryan Fitzpatrick,35,1983,66,56,75,76,76,43,1.900000,1 QB,Ryan Griffin,28,1990,67,40,73,71,76,37,0.600000,2 RB,Doug Martin,28,1990,65,70,79,85,88,88,4.500000,4 RB,Jacquizz Rodgers,27,1991,68,63,76,79,87,80,1.000000,2 RB,Charles Sims III,27,1991,72,67,75,68,89,75,0.600000,1 RB,Peyton Barber,23,1995,99,40,75,63,86,71,0.300000,2 RB,Luke Stocker,29,1989,64,59,77,57,81,59,1.000000,1 WR,DeSean Jackson,31,1987,52,79,71,81,94,77,7.000000,3 WR,Mike Evans,24,1994,98,93,83,77,88,76,4.900000,2 WR,Adam Humphries,24,1994,99,75,68,77,88,67,0.400000,1 WR,Chris Godwin,21,1997,96,45,89,68,91,77,0.600000,4 WR,Cameron Brate,26,1992,78,71,73,76,80,60,0.400000,1 WR,OJ Howard,23,1995,69,54,89,68,87,72,2.700000,4 WR,Bernard Reedy,26,1992,93,45,71,65,88,67,0.300000,1 WR,Freddie Martino,26,1992,79,40,71,63,89,71,0.400000,1 WR,Antony Auclair,24,1994,69,40,77,58,76,69,0.300000,3 OL,Demar Dotson,32,1986,61,70,76,75,87,79,2.600000,3 OL,Joe Hawley,29,1989,86,71,77,79,77,61,1.800000,2 OL,Ali Marpet,24,1994,74,76,75,77,81,62,0.700000,2 OL,Donovan Smith,24,1994,96,63,68,77,73,60,1.400000,2 OL,Evan Smith,31,1987,62,63,71,73,77,62,2.200000,1 OL,JR Sweezy,28,1990,65,63,70,71,73,64,3.800000,4 OL,Kevin Pamphile,27,1991,72,60,71,68,74,60,0.600000,1 OL,Leonard Wester,24,1994,84,35,71,64,72,61,0.300000,2 OL,Caleb Benenoch,23,1995,76,45,70,63,78,59,0.400000,3 OL,Garrison Sanborn,32,1986,82,45,71,62,66,45,0.600000,1 K,Bryan Anger,29,1989,81,57,81,91,94,57,2.100000,5 K,Patrick Murray,26,1992,94,35,63,85,85,35,0.300000,1 S,Justin Evans,22,1996,82,45,79,77,87,74,1.100000,4 S,TJ Ward,31,1987,53,67,87,77,87,71,4.300000,1 S,Keith Tandy,28,1990,60,61,83,79,87,63,0.600000,1 S,Chris Conte,28,1990,77,67,76,76,86,53,1.600000,2 S,Josh Robinson,26,1992,63,56,71,77,92,40,1.600000,2 CB,Vernon Hargreaves,22,1996,73,54,77,77,90,63,3.500000,3 CB,Brent Grimes,34,1984,58,81,73,84,87,44,4.200000,1 CB,Robert McClain,29,1989,73,58,71,77,87,43,0.500000,1 CB,Javien Elliott,24,1994,66,45,73,71,86,55,0.300000,1 CB,Ryan Smith,24,1994,93,40,73,74,90,40,0.600000,3 CB,Maurice Sahm,29,2010,63,91,60,56,56,57,0.500000,1 LB,Lavonte David,27,1991,69,77,91,79,84,80,6.300000,4 LB,Kendell Beckwith,23,1995,98,63,70,76,88,71,0.600000,4 LB,Kwon Alexander,23,1995,84,71,73,67,83,79,0.500000,2 LB,Adarius Glanton,27,1991,66,52,73,64,82,71,0.400000,1 LB,Cameron Lynch,24,1994,87,40,77,61,82,67,0.400000,1 LB,Devante Bond,24,1994,79,45,71,60,77,70,0.400000,3 DL,Gerald McCoy,29,1989,84,77,75,85,94,79,10.200000,5 DL,Chris Baker,30,1988,62,73,67,81,89,71,3.300000,3 DL,Clinton McDonald,30,1988,73,60,71,77,87,71,1.900000,1 DL,Sealver Siliga,27,1991,63,59,68,77,90,67,0.800000,1 DL,Noah Spence,23,1995,90,58,73,65,81,79,1.300000,3 DL,Robert Ayers,32,1986,50,70,68,63,82,74,4.100000,2 DL,William Gholston,26,1992,60,65,68,62,83,74,3.400000,5 DL,Will Clarke,26,1992,89,45,73,61,79,74,0.400000,1 DL,Ryan Russell,25,1993,68,50,62,63,76,74,0.400000,1 DL,Darryl Tapp,33,1985,54,60,76,58,77,72,0.600000,1 END_PLAYERS Arizona Cardinals,ARZ QB,Carson Palmer,38,1980,71,75,85,83,81,37,15.800000,2 QB,Blaine Gabbert,28,1990,72,60,79,77,75,45,0.600000,1 QB,Drew Stanton,33,1985,63,60,75,79,76,37,2.700000,1 RB,David Johnson,26,1992,77,81,83,85,92,91,0.600000,2 RB,Adrian Peterson,32,1986,41,71,81,75,90,84,1.300000,2 RB,Kerwynn Williams,26,1992,90,59,75,67,89,76,0.300000,1 RB,DJ Foster,24,1994,95,35,73,62,90,74,0.400000,2 RB,Elijhaa Penny,24,1994,82,45,65,68,81,75,0.300000,1 RB,Andre Ellington,28,1990,62,60,68,60,90,70,0.600000,1 RB,Ricky Seals-Jones,22,1996,80,35,71,57,83,62,0.300000,3 WR,Larry Fitzgerald,34,1984,44,95,93,95,84,71,11.500000,1 WR,John Brown,27,1991,75,67,68,77,94,76,0.700000,1 WR,Jaron Brown,27,1991,67,64,71,77,91,74,0.800000,1 WR,Chad Williams,23,1995,96,40,76,71,90,72,0.600000,4 WR,JJ Nelson,25,1993,74,63,62,71,96,67,0.400000,2 WR,Jermaine Gresham,29,1989,83,64,77,75,81,72,5.500000,4 WR,Brittan Golden,29,1989,71,54,71,63,88,67,0.400000,1 WR,Troy Niklas,25,1993,68,40,73,63,77,63,0.800000,1 OL,Jared Veldheer,30,1988,90,68,77,95,74,59,5.300000,2 OL,Mike Iupati,30,1988,79,64,79,85,86,59,5.800000,3 OL,Alex Boone,30,1988,76,62,71,81,74,62,0.600000,1 OL,DJ Humphries,24,1994,70,54,75,77,81,60,2.100000,2 OL,John Wetzel,26,1992,84,52,70,75,79,58,0.300000,1 OL,AQ Shipley,31,1987,72,75,77,76,74,59,1.300000,2 OL,Earl Watford,27,1991,73,61,81,73,73,57,0.500000,1 OL,Evan Boehm,24,1994,66,60,81,70,77,59,0.500000,3 OL,Max Tuerk,23,1995,98,45,75,64,81,62,0.700000,3 OL,Will Holden,24,1994,80,40,75,64,77,35,0.500000,4 OL,Justin Drescher,29,1989,65,60,75,60,52,56,0.600000,1 K,Andy Lee,35,1983,73,45,67,93,84,45,2.400000,2 K,Phil Dawson,42,1976,60,45,63,85,89,45,2.200000,2 S,Tyrann Mathieu,25,1993,90,73,73,82,90,70,9.800000,5 S,Tyvon Branch,31,1987,81,73,76,80,90,70,2.200000,1 S,Budda Baker,21,1997,83,45,79,75,91,68,1.600000,4 S,Antoine Bethea,33,1985,40,65,75,77,86,70,3.100000,3 S,Rudy Ford,23,1995,80,40,76,72,92,70,0.400000,4 CB,Patrick Peterson,27,1991,77,77,87,91,92,47,10.700000,4 CB,Justin Bethel,27,1991,61,59,76,80,87,55,2.300000,1 CB,Brandon Williams,25,1993,82,45,81,75,93,40,0.600000,3 CB,Tramon Williams,34,1984,65,60,81,79,84,40,1.600000,1 CB,Grady Zirk,29,2010,68,76,71,66,64,55,0.500000,1 CB,Johnathan Sammis,32,2007,66,94,73,56,68,57,0.500000,1 LB,Karlos Dansby,36,1982,73,67,77,79,89,68,1.700000,1 LB,Chandler Jones,27,1991,69,81,76,71,86,79,12.200000,5 LB,Deone Bucannon,25,1993,87,70,81,71,83,77,2.700000,2 LB,Josh Bynes,28,1990,77,64,71,73,83,68,0.500000,1 LB,Kareem Martin,25,1993,79,45,71,67,83,68,0.500000,1 LB,Markus Golden,26,1992,93,73,75,64,77,71,0.800000,2 LB,Scooby Wright III,23,1995,82,59,70,64,81,71,0.300000,1 LB,Haason Reddick,23,1995,94,58,77,30,83,45,3.300000,4 DL,Corey Peters,29,1989,74,75,68,77,90,72,2.300000,1 DL,Josh Mauro,26,1992,64,60,81,73,85,68,2.100000,2 DL,Robert Nkemdiche,23,1995,70,56,75,67,83,77,2.000000,3 DL,Xavier Williams,25,1993,90,54,75,70,82,66,0.300000,1 DL,Frostee Rucker,34,1984,43,68,71,65,86,72,0.700000,1 DL,Olsen Pierre,26,1992,84,45,68,64,82,69,0.300000,1 DL,Rodney Gunter,25,1993,73,54,67,60,81,71,0.500000,2 DL,Wilford Bedney,30,2009,70,89,109,66,60,68,0.500000,1 END_PLAYERS Los Angeles Rams,LAR QB,Jared Goff,23,1995,86,71,83,85,81,40,7.300000,3 QB,Brandon Allen,25,1993,97,40,70,77,74,37,0.400000,3 QB,Sean Mannion,25,1993,67,40,76,77,74,37,0.600000,2 RB,Todd Gurley,23,1995,85,81,75,79,92,86,3.500000,2 RB,Lance Dunbar,27,1991,84,60,64,63,91,76,0.900000,1 RB,Justin Davis,22,1996,88,40,73,61,88,76,0.300000,3 RB,Malcolm Brown,24,1994,88,40,73,65,89,70,0.300000,1 RB,Tyler Higbee,24,1994,95,60,77,61,80,70,0.600000,3 WR,Sammy Watkins,24,1994,78,64,79,75,92,80,5.100000,1 WR,Cooper Kupp,24,1994,88,60,79,76,87,74,0.700000,4 WR,Robert Woods,25,1993,80,67,81,75,91,71,4.300000,5 WR,Josh Reynolds,22,1996,74,45,75,73,88,67,0.600000,4 WR,Gerald Everett,23,1995,76,45,75,70,85,72,1.300000,4 WR,Tavon Austin,26,1992,72,62,76,62,95,75,6.400000,5 WR,Derek Carrier,27,1991,67,57,70,62,87,69,0.600000,1 WR,Pharoh Cooper,22,1996,70,45,75,63,87,63,0.500000,3 WR,Mike Thomas,23,1995,97,40,79,61,88,63,0.400000,3 OL,Andrew Whitworth,36,1982,61,91,81,89,86,73,8.100000,3 OL,Jamon Brown,24,1994,97,60,68,76,82,58,0.600000,2 OL,Rob Havenstein,25,1993,66,73,73,71,87,60,0.800000,2 OL,John Sullivan,32,1986,53,70,85,75,77,60,0.700000,1 OL,Rodger Saffold,29,1989,90,65,65,71,85,59,4.500000,2 OL,Austin Blythe,25,1993,75,40,89,68,80,60,0.400000,3 OL,Darrell Williams,24,1994,93,40,70,60,77,63,0.300000,1 OL,Andrew Donnal,25,1993,73,52,71,62,75,60,0.500000,2 OL,Cornelius Lucas,26,1992,72,57,65,60,77,60,0.400000,1 OL,Jake McQuaide,30,1988,88,45,68,59,50,45,0.600000,1 K,Johnny Hekker,27,1991,79,57,73,95,96,57,2.000000,4 K,Greg Zuerlein,30,1988,65,45,70,91,89,45,1.600000,3 S,John Johnson,22,1996,94,52,81,77,85,70,0.600000,4 S,Cody Davis,28,1990,75,54,71,77,90,67,0.900000,1 S,Lamarcus Joyner,27,1991,62,70,77,79,88,63,1.100000,1 S,Marqui Christian,23,1995,83,40,76,71,88,70,0.400000,3 S,Blake Countess,24,1994,75,35,71,71,88,43,0.300000,2 CB,Trumaine Johnson,27,1991,73,73,70,80,88,63,10.500000,1 CB,Kayvon Webster,26,1992,69,61,83,77,90,67,2.400000,2 CB,Nickell Robey,25,1993,99,68,76,84,89,37,0.600000,1 CB,Troy Hill,26,1992,88,45,76,77,87,40,0.400000,1 CB,Vicente Golomb,28,2011,59,89,92,69,65,65,0.500000,1 CB,Dominique Hatfield,23,1995,82,40,73,69,85,40,0.300000,3 LB,Alec Ogletree,26,1992,78,65,76,75,81,77,2.500000,1 LB,Mark Barron,28,1990,73,63,75,70,81,76,6.300000,4 LB,Samson Ebukam,22,1996,97,45,79,67,85,74,0.600000,4 LB,Bryce Hager,25,1993,87,45,70,70,84,70,0.400000,2 LB,Robert Quinn,27,1991,82,70,76,65,87,76,7.700000,3 LB,Connor Barwin,31,1987,68,62,83,64,83,76,2.200000,1 LB,Ejuan Price,24,1994,98,45,65,63,81,67,0.400000,4 LB,Matt Longacre,26,1992,90,50,75,60,77,69,0.400000,1 LB,Cory Littleton,24,1994,76,45,70,56,72,69,0.300000,2 DL,Aaron Donald,26,1992,78,81,85,91,96,84,3.000000,2 DL,Michael Brockers,27,1991,76,75,77,76,91,77,7.200000,3 DL,Morgan Fox,23,1995,93,45,79,71,86,75,0.300000,1 DL,Dominique Easley,25,1993,98,64,62,70,84,71,1.100000,1 DL,Ethan Westbrooks,27,1991,90,61,68,68,80,69,1.100000,1 DL,Tyrunn Walker,27,1991,86,50,65,68,81,68,0.500000,1 DL,Tanzel Smart,23,1995,82,54,70,67,81,67,0.400000,4 DL,Xavier Coonfare,27,2012,67,64,68,65,66,56,0.500000,1 END_PLAYERS Seattle Seahawks,SEA QB,Russell Wilson,29,1989,85,79,95,87,86,71,14.800000,3 QB,Austin Davis,28,1990,88,50,76,73,77,45,0.600000,1 RB,Christopher Carson,23,1995,89,62,68,79,86,77,0.400000,4 RB,Eddie Lacy,27,1991,74,62,81,75,86,79,3.600000,1 RB,CJ Prosise,23,1995,83,54,71,65,90,77,0.600000,3 RB,Thomas Rawls,24,1994,69,60,67,73,80,76,0.300000,1 RB,JD McKissic,24,1994,75,45,75,57,88,71,0.300000,1 RB,Nick Vannett,24,1994,68,40,71,60,76,67,0.600000,3 WR,Doug Baldwin,29,1989,81,91,77,89,90,70,6.600000,4 WR,Tyler Lockett,25,1993,99,64,70,75,93,75,0.600000,2 WR,Paul Richardson,25,1993,81,64,72,73,94,72,1.000000,1 WR,Jimmy Graham,31,1987,61,75,75,77,85,75,6.300000,1 WR,Amara Darboh,23,1995,93,52,77,68,91,72,0.600000,4 WR,Luke Willson,27,1991,85,60,68,68,87,67,1.600000,1 WR,Tanner McEvoy,24,1994,89,45,76,64,87,71,0.300000,2 OL,Duane Brown,32,1986,51,85,81,81,87,75,5.600000,2 OL,Jordan Roos,24,1994,85,40,71,86,77,57,0.300000,3 OL,Mark Glowinski,25,1993,90,56,79,83,73,57,0.500000,2 OL,Justin Britt,26,1992,80,81,71,83,83,72,5.200000,4 OL,Luke Joeckel,26,1992,78,59,75,76,74,65,7.200000,1 OL,Ethan Pocic,22,1996,80,56,79,80,80,71,0.900000,4 OL,Germain Ifedi,23,1995,81,62,75,68,72,61,1.900000,3 OL,Matt Tobin,27,1991,66,52,73,64,75,60,0.500000,1 OL,Oday Aboushi,26,1992,89,63,81,63,73,60,0.700000,1 OL,Tyler Ott,25,1993,88,35,71,58,50,40,0.300000,1 K,Blair Walsh,27,1991,78,40,75,70,78,40,0.700000,1 K,Jon Ryan,36,1982,52,45,68,79,82,45,1.900000,3 S,Earl Thomas III,28,1990,73,83,83,88,91,72,6.900000,2 S,Kam Chancellor,29,1989,71,83,89,82,87,79,8.400000,4 S,Brad McDougald,27,1991,72,67,75,79,88,68,1.600000,1 S,Tedric Thompson,22,1996,72,45,73,74,86,67,0.600000,4 S,Delano Hill,22,1996,78,45,77,70,86,72,0.600000,4 CB,Richard Sherman,29,1989,61,83,93,91,88,66,10.500000,2 CB,Shaquill Griffin,22,1996,82,54,77,80,92,62,0.600000,4 CB,DeShawn Shead,29,1989,82,68,73,77,87,68,0.800000,1 CB,Justin Coleman,24,1994,77,58,75,79,88,53,0.400000,1 CB,Jeremy Lane,27,1991,61,61,73,79,88,44,4.400000,3 CB,Neiko Thorpe,27,1991,62,40,76,74,90,43,1.300000,2 LB,Bobby Wagner,27,1991,78,87,81,95,89,84,8.000000,3 LB,KJ Wright,28,1990,67,75,81,85,84,75,5.000000,2 LB,Michael Wilhoite,31,1987,79,61,76,70,81,74,1.300000,1 LB,DJ Alexander,26,1992,76,45,64,63,75,72,0.400000,2 LB,Marcus Smith II,25,1993,84,56,73,61,79,70,0.400000,1 LB,Terence Garvin,26,1992,66,45,75,63,76,68,0.600000,1 LB,Josh Forrest,25,1993,86,40,81,56,70,68,0.300000,1 DL,Michael Bennett,32,1986,51,71,77,81,94,79,7.100000,4 DL,Jarran Reed,25,1993,83,59,76,81,92,72,1.000000,3 DL,Sheldon Richardson,27,1991,86,63,75,79,94,79,3.200000,1 DL,Nazair Jones,23,1995,98,57,70,76,86,69,0.600000,4 DL,Frank Clark,24,1994,81,63,65,77,80,71,0.700000,2 DL,Garrison Smith,26,1992,89,40,75,75,85,66,0.300000,1 DL,Quinton Jefferson,24,1994,86,40,71,64,81,74,0.400000,3 DL,Cliff Avril,31,1987,72,76,79,88,77,76,4.700000,2 DL,Dwight Freeney,37,1981,61,61,65,60,75,72,0.600000,1 DL,Dion Jordan,27,1991,83,45,67,75,77,80,0.400000,1 END_PLAYERS San Francisco 49ers,SF QB,Jimmy Garoppolo,26,1992,86,65,85,81,81,43,0.700000,1 QB,CJ Beathard,24,1994,74,45,75,83,77,55,0.700000,4 RB,Carlos Hyde,26,1992,81,73,76,76,89,84,0.700000,1 RB,Matt Breida,22,1996,86,52,73,70,93,75,0.300000,3 RB,Raheem Mostert,25,1993,83,45,75,58,93,71,0.400000,1 RB,Kyle Juszczyk,26,1992,89,73,83,65,82,71,4.100000,4 WR,Pierre Garcon,31,1987,75,91,76,91,89,74,7.400000,5 WR,Trent Taylor,23,1995,89,45,77,75,86,76,0.400000,4 WR,Marquise Goodwin,27,1991,66,63,68,67,95,67,2.700000,2 WR,George Kittle,24,1994,67,60,73,68,87,66,0.500000,4 WR,Aldrick Robinson,29,1989,62,60,70,64,92,70,1.300000,2 WR,Kendrick Bourne,22,1996,90,40,67,62,87,71,0.300000,3 WR,Victor Bolden Jr.,22,1996,77,40,76,63,90,67,0.300000,3 WR,Garrett Celek,29,1989,70,50,65,63,80,63,2.000000,3 OL,Trent Brown,24,1994,98,76,65,83,80,77,0.400000,2 OL,Joe Staley,33,1985,70,89,81,85,83,63,5.000000,3 OL,Brandon Fusco,29,1989,85,60,65,79,85,60,0.900000,1 OL,Daniel Kilgore,30,1988,90,64,75,79,72,60,1.100000,1 OL,Laken Tomlinson,25,1993,68,60,75,76,74,60,2.000000,2 OL,Joshua Garnett,23,1995,69,61,77,71,74,59,2.200000,3 OL,Erik Magnuson,23,1995,95,45,67,67,75,60,0.300000,3 OL,Zane Beadles,31,1987,72,62,81,70,72,56,2.600000,2 OL,Darrell Williams,24,1994,97,40,75,63,74,60,0.300000,1 OL,Kyle Nelson,31,1987,70,50,71,54,52,45,0.700000,2 K,Robbie Gould,36,1982,54,40,65,89,85,40,1.400000,2 K,Bradley Pinion,23,1995,78,40,67,83,76,40,0.400000,2 S,Jimmie Ward,26,1992,67,63,81,79,90,67,2.500000,2 S,Jaquiski Tartt,25,1993,80,67,79,79,89,59,1.100000,2 S,Eric Reid,26,1992,65,63,76,79,88,60,2.500000,1 S,Dexter McCoil,26,1992,88,45,81,71,86,62,0.300000,2 S,Adrian Colbert,24,1994,74,40,75,70,89,45,0.400000,4 CB,Leon Hall,33,1985,55,56,79,74,87,60,0.600000,1 CB,Dontae Johnson,26,1992,61,56,76,79,91,40,0.500000,1 CB,Ahkello Witherspoon,22,1996,88,45,71,79,91,37,0.800000,4 CB,K'Waun Williams,26,1992,84,52,76,77,88,44,0.400000,1 CB,Ha-Ha Krauskopf,28,2011,79,73,96,65,62,63,0.500000,1 CB,Weldon Kindig,22,2017,58,82,74,59,60,66,0.500000,1 LB,Reuben Foster,23,1995,69,59,68,73,88,74,2.100000,4 LB,Malcolm Smith,28,1990,80,67,70,68,81,77,4.200000,5 LB,Ray-Ray Armstrong,26,1992,93,60,71,67,76,72,1.100000,2 LB,Brock Coyle,27,1991,76,56,81,64,81,74,1.200000,1 LB,Elijah Lee,21,1997,88,40,81,65,77,70,0.400000,4 LB,Eli Harold,23,1995,76,50,75,62,81,72,0.600000,2 LB,Dekoda Watson,29,1989,85,45,65,60,72,72,1.300000,3 LB,Pita Taumoepenu,23,1995,99,40,79,58,77,67,0.400000,4 DL,Solomon Thomas,22,1996,88,54,85,83,90,79,7.300000,4 DL,Tank Carradine,27,1991,76,64,68,81,89,79,2.400000,1 DL,DeForest Buckner,23,1995,67,75,83,75,89,77,4.600000,3 DL,DJ Jones,22,1996,66,40,79,79,85,72,0.400000,4 DL,Tony McDaniel,32,1986,59,64,64,77,89,66,0.600000,1 DL,Arik Armstead,24,1994,70,62,68,73,88,75,2.400000,2 DL,Ronald Blair,24,1994,89,40,76,71,84,75,0.500000,3 DL,Leger Douzable,31,1987,66,64,67,70,86,68,0.600000,1 DL,Datone Jones,27,1991,89,61,71,67,79,71,0.500000,1 DL,Earl Mitchell,30,1988,50,58,70,65,82,75,3.000000,4 DL,Elvis Dumervil,33,1985,72,64,73,63,81,74,2.800000,2 DL,Aaron Lynch,24,1994,72,60,67,61,80,76,0.600000,1 END_PLAYERS
S4ltster / BeemovieBee Movie script for educational purposes only, anyways According to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Coming! Hang on a second. Hello? Barry? Adam? Can you believe this is happening? I can't. I'll pick you up. Looking sharp. Use the stairs, Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. You got lint on your fuzz. Ow! That's me! Wave to us! We'll be in row 118,000. Bye! Barry, I told you, stop flying in the house! Hey, Adam. Hey, Barry. Is that fuzz gel? A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkward. Three days college. I'm glad I took a day and hitchhiked around The Hive. You did come back different. Hi, Barry. Artie, growing a mustache? Looks good. Hear about Frankie? Yeah. You going to the funeral? No, I'm not going. Everybody knows, sting someone, you die. Don't waste it on a squirrel. Such a hothead. I guess he could have just gotten out of the way. I love this incorporating an amusement park into our day. That's why we don't need vacations. Boy, quite a bit of pomp under the circumstances. Well, Adam, today we are men. We are! Bee-men. Amen! Hallelujah! Students, faculty, distinguished bees, please welcome Dean Buzzwell. Welcome, New Hive City graduating class of 9:15. That concludes our ceremonies And begins your career at Honex Industries! Will we pick our job today? I heard it's just orientation. Heads up! Here we go. Keep your hands and antennas inside the tram at all times. Wonder what it'll be like? A little scary. Welcome to Honex, a division of Honesco and a part of the Hexagon Group. This is it! Wow. Wow. We know that you, as a bee, have worked your whole life to get to the point where you can work for your whole life. Honey begins when our valiant Pollen Jocks bring the nectar to The Hive. Our top-secret formula is automatically color-corrected, scent-adjusted and bubble-contoured into this soothing sweet syrup with its distinctive golden glow you know as... Honey! That girl was hot. She's my cousin! She is? Yes, we're all cousins. Right. You're right. At Honex, we constantly strive to improve every aspect of bee existence. These bees are stress-testing a new helmet technology. What do you think he makes? Not enough. Here we have our latest advancement, the Krelman. What does that do? Catches that little strand of honey that hangs after you pour it. Saves us millions. Can anyone work on the Krelman? Of course. Most bee jobs are small ones. But bees know that every small job, if it's done well, means a lot. But choose carefully because you'll stay in the job you pick for the rest of your life. The same job the rest of your life? I didn't know that. What's the difference? You'll be happy to know that bees, as a species, haven't had one day off in 27 million years. So you'll just work us to death? We'll sure try. Wow! That blew my mind! "What's the difference?" How can you say that? One job forever? That's an insane choice to have to make. I'm relieved. Now we only have to make one decision in life. But, Adam, how could they never have told us that? Why would you question anything? We're bees. We're the most perfectly functioning society on Earth. You ever think maybe things work a little too well here? Like what? Give me one example. I don't know. But you know what I'm talking about. Please clear the gate. Royal Nectar Force on approach. Wait a second. Check it out. Hey, those are Pollen Jocks! Wow. I've never seen them this close. They know what it's like outside The Hive. Yeah, but some don't come back. Hey, Jocks! Hi, Jocks! You guys did great! You're monsters! You're sky freaks! I love it! I love it! I wonder where they were. I don't know. Their day's not planned. Outside The Hive, flying who knows where, doing who knows what. You can't just decide to be a Pollen Jock. You have to be bred for that. Right. Look. That's more pollen than you and I will see in a lifetime. It's just a status symbol. Bees make too much of it. Perhaps. Unless you're wearing it and the ladies see you wearing it. Those ladies? Aren't they our cousins too? Distant. Distant. Look at these two. Couple of Hive Harrys. Let's have fun with them. It must be dangerous being a Pollen Jock. Yeah. Once a bear pinned me against a mushroom! He had a paw on my throat, and with the other, he was slapping me! Oh, my! I never thought I'd knock him out. What were you doing during this? Trying to alert the authorities. I can autograph that. A little gusty out there today, wasn't it, comrades? Yeah. Gusty. We're hitting a sunflower patch six miles from here tomorrow. Six miles, huh? Barry! A puddle jump for us, but maybe you're not up for it. Maybe I am. You are not! We're going 0900 at J-Gate. What do you think, buzzy-boy? Are you bee enough? I might be. It all depends on what 0900 means. Hey, Honex! Dad, you surprised me. You decide what you're interested in? Well, there's a lot of choices. But you only get one. Do you ever get bored doing the same job every day? Son, let me tell you about stirring. You grab that stick, and you just move it around, and you stir it around. You get yourself into a rhythm. It's a beautiful thing. You know, Dad, the more I think about it, maybe the honey field just isn't right for me. You were thinking of what, making balloon animals? That's a bad job for a guy with a stinger. Janet, your son's not sure he wants to go into honey! Barry, you are so funny sometimes. I'm not trying to be funny. You're not funny! You're going into honey. Our son, the stirrer! You're gonna be a stirrer? No one's listening to me! Wait till you see the sticks I have. I could say anything right now. I'm gonna get an ant tattoo! Let's open some honey and celebrate! Maybe I'll pierce my thorax. Shave my antennae. Shack up with a grasshopper. Get a gold tooth and call everybody "dawg"! I'm so proud. We're starting work today! Today's the day. Come on! All the good jobs will be gone. Yeah, right. Pollen counting, stunt bee, pouring, stirrer, front desk, hair removal... Is it still available? Hang on. Two left! One of them's yours! Congratulations! Step to the side. What'd you get? Picking crud out. Stellar! Wow! Couple of newbies? Yes, sir! Our first day! We are ready! Make your choice. You want to go first? No, you go. Oh, my. What's available? Restroom attendant's open, not for the reason you think. Any chance of getting the Krelman? Sure, you're on. I'm sorry, the Krelman just closed out. Wax monkey's always open. The Krelman opened up again. What happened? A bee died. Makes an opening. See? He's dead. Another dead one. Deady. Deadified. Two more dead. Dead from the neck up. Dead from the neck down. That's life! Oh, this is so hard! Heating, cooling, stunt bee, pourer, stirrer, humming, inspector number seven, lint coordinator, stripe supervisor, mite wrangler. Barry, what do you think I should... Barry? Barry! All right, we've got the sunflower patch in quadrant nine... What happened to you? Where are you? I'm going out. Out? Out where? Out there. Oh, no! I have to, before I go to work for the rest of my life. You're gonna die! You're crazy! Hello? Another call coming in. If anyone's feeling brave, there's a Korean deli on 83rd that gets their roses today. Hey, guys. Look at that. Isn't that the kid we saw yesterday? Hold it, son, flight deck's restricted. It's OK, Lou. We're gonna take him up. Really? Feeling lucky, are you? Sign here, here. Just initial that. Thank you. OK. You got a rain advisory today, and as you all know, bees cannot fly in rain. So be careful. As always, watch your brooms, hockey sticks, dogs, birds, bears and bats. Also, I got a couple of reports of root beer being poured on us. Murphy's in a home because of it, babbling like a cicada! That's awful. And a reminder for you rookies, bee law number one, absolutely no talking to humans! All right, launch positions! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Black and yellow! Hello! You ready for this, hot shot? Yeah. Yeah, bring it on. Wind, check. Antennae, check. Nectar pack, check. Wings, check. Stinger, check. Scared out of my shorts, check. OK, ladies, let's move it out! Pound those petunias, you striped stem-suckers! All of you, drain those flowers! Wow! I'm out! I can't believe I'm out! So blue. I feel so fast and free! Box kite! Wow! Flowers! This is Blue Leader, We have roses visual. Bring it around 30 degrees and hold. Roses! 30 degrees, roger. Bringing it around. Stand to the side, kid. It's got a bit of a kick. That is one nectar collector! Ever see pollination up close? No, sir. I pick up some pollen here, sprinkle it over here. Maybe a dash over there, a pinch on that one. See that? It's a little bit of magic. That's amazing. Why do we do that? That's pollen power. More pollen, more flowers, more nectar, more honey for us. Cool. I'm picking up a lot of bright yellow, Could be daisies, Don't we need those? Copy that visual. Wait. One of these flowers seems to be on the move. Say again? You're reporting a moving flower? Affirmative. That was on the line! This is the coolest. What is it? I don't know, but I'm loving this color. It smells good. Not like a flower, but I like it. Yeah, fuzzy. Chemical-y. Careful, guys. It's a little grabby. My sweet lord of bees! Candy-brain, get off there! Problem! Guys! This could be bad. Affirmative. Very close. Gonna hurt. Mama's little boy. You are way out of position, rookie! Coming in at you like a missile! Help me! I don't think these are flowers. Should we tell him? I think he knows. What is this?! Match point! You can start packing up, honey, because you're about to eat it! Yowser! Gross. There's a bee in the car! Do something! I'm driving! Hi, bee. He's back here! He's going to sting me! Nobody move. If you don't move, he won't sting you. Freeze! He blinked! Spray him, Granny! What are you doing?! Wow... the tension level out here is unbelievable. I gotta get home. Can't fly in rain. Can't fly in rain. Can't fly in rain. Mayday! Mayday! Bee going down! Ken, could you close the window please? Ken, could you close the window please? Check out my new resume. I made it into a fold-out brochure. You see? Folds out. Oh, no. More humans. I don't need this. What was that? Maybe this time. This time. This time. This time! This time! This... Drapes! That is diabolical. It's fantastic. It's got all my special skills, even my top-ten favorite movies. What's number one? Star Wars? Nah, I don't go for that... kind of stuff. No wonder we shouldn't talk to them. They're out of their minds. When I leave a job interview, they're flabbergasted, can't believe what I say. There's the sun. Maybe that's a way out. I don't remember the sun having a big 75 on it. I predicted global warming. I could feel it getting hotter. At first I thought it was just me. Wait! Stop! Bee! Stand back. These are winter boots. Wait! Don't kill him! You know I'm allergic to them! This thing could kill me! Why does his life have less value than yours? Why does his life have any less value than mine? Is that your statement? I'm just saying all life has value. You don't know what he's capable of feeling. My brochure! There you go, little guy. I'm not scared of him.It's an allergic thing. Put that on your resume brochure. My whole face could puff up. Make it one of your special skills. Knocking someone out is also a special skill. Right. Bye, Vanessa. Thanks. Vanessa, next week? Yogurt night? Sure, Ken. You know, whatever. You could put carob chips on there. Bye. Supposed to be less calories. Bye. I gotta say something. She saved my life. I gotta say something. All right, here it goes. Nah. What would I say? I could really get in trouble. It's a bee law. You're not supposed to talk to a human. I can't believe I'm doing this. I've got to. Oh, I can't do it. Come on! No. Yes. No. Do it. I can't. How should I start it? "You like jazz?" No, that's no good. Here she comes! Speak, you fool! Hi! I'm sorry. You're talking. Yes, I know. You're talking! I'm so sorry. No, it's OK. It's fine. I know I'm dreaming. But I don't recall going to bed. Well, I'm sure this is very disconcerting. This is a bit of a surprise to me. I mean, you're a bee! I am. And I'm not supposed to be doing this, but they were all trying to kill me. And if it wasn't for you... I had to thank you. It's just how I was raised. That was a little weird. I'm talking with a bee. Yeah. I'm talking to a bee. And the bee is talking to me! I just want to say I'm grateful. I'll leave now. Wait! How did you learn to do that? What? The talking thing. Same way you did, I guess. "Mama, Dada, honey." You pick it up. That's very funny. Yeah. Bees are funny. If we didn't laugh, we'd cry with what we have to deal with. Anyway... Can I... get you something? Like what? I don't know. I mean... I don't know. Coffee? I don't want to put you out. It's no trouble. It takes two minutes. It's just coffee. I hate to impose. Don't be ridiculous! Actually, I would love a cup. Hey, you want rum cake? I shouldn't. Have some. No, I can't. Come on! I'm trying to lose a couple micrograms. Where? These stripes don't help. You look great! I don't know if you know anything about fashion. Are you all right? No. He's making the tie in the cab as they're flying up Madison. He finally gets there. He runs up the steps into the church. The wedding is on. And he says, "Watermelon? I thought you said Guatemalan. Why would I marry a watermelon?" Is that a bee joke? That's the kind of stuff we do. Yeah, different. So, what are you gonna do, Barry? About work? I don't know. I want to do my part for The Hive, but I can't do it the way they want. I know how you feel. You do? Sure. My parents wanted me to be a lawyer or a doctor, but I wanted to be a florist. Really? My only interest is flowers. Our new queen was just elected with that same campaign slogan. Anyway, if you look... There's my hive right there. See it? You're in Sheep Meadow! Yes! I'm right off the Turtle Pond! No way! I know that area. I lost a toe ring there once. Why do girls put rings on their toes? Why not? It's like putting a hat on your knee. Maybe I'll try that. You all right, ma'am? Oh, yeah. Fine. Just having two cups of coffee! Anyway, this has been great. Thanks for the coffee. Yeah, it's no trouble. Sorry I couldn't finish it. If I did, I'd be up the rest of my life. Are you...? Can I take a piece of this with me? Sure! Here, have a crumb. Thanks! Yeah. All right. Well, then... I guess I'll see you around. Or not. OK, Barry. And thank you so much again... for before. Oh, that? That was nothing. Well, not nothing, but... Anyway... This can't possibly work. He's all set to go. We may as well try it. OK, Dave, pull the chute. Sounds amazing. It was amazing! It was the scariest, happiest moment of my life. Humans! I can't believe you were with humans! Giant, scary humans! What were they like? Huge and crazy. They talk crazy. They eat crazy giant things. They drive crazy. Do they try and kill you, like on TV? Some of them. But some of them don't. How'd you get back? Poodle. You did it, and I'm glad. You saw whatever you wanted to see. You had your "experience." Now you can pick out yourjob and be normal. Well... Well? Well, I met someone. You did? Was she Bee-ish? A wasp?! Your parents will kill you! No, no, no, not a wasp. Spider? I'm not attracted to spiders. I know it's the hottest thing, with the eight legs and all. I can't get by that face. So who is she? She's... human. No, no. That's a bee law. You wouldn't break a bee law. Her name's Vanessa. Oh, boy. She's so nice. And she's a florist! Oh, no! You're dating a human florist! We're not dating. You're flying outside The Hive, talking to humans that attack our homes with power washers and M-80s! One-eighth a stick of dynamite! She saved my life! And she understands me. This is over! Eat this. This is not over! What was that? They call it a crumb. It was so stingin' stripey! And that's not what they eat. That's what falls off what they eat! You know what a Cinnabon is? No. It's bread and cinnamon and frosting. They heat it up... Sit down! ...really hot! Listen to me! We are not them! We're us. There's us and there's them! Yes, but who can deny the heart that is yearning? There's no yearning. Stop yearning. Listen to me! You have got to start thinking bee, my friend. Thinking bee! Thinking bee. Thinking bee. Thinking bee! Thinking bee! Thinking bee! Thinking bee! There he is. He's in the pool. You know what your problem is, Barry? I gotta start thinking bee? How much longer will this go on? It's been three days! Why aren't you working? I've got a lot of big life decisions to think about. What life? You have no life! You have no job. You're barely a bee! Would it kill you to make a little honey? Barry, come out. Your father's talking to you. Martin, would you talk to him? Barry, I'm talking to you! You coming? Got everything? All set! Go ahead. I'll catch up. Don't be too long. Watch this! Vanessa! We're still here. I told you not to yell at him. He doesn't respond to yelling! Then why yell at me? Because you don't listen! I'm not listening to this. Sorry, I've gotta go. Where are you going? I'm meeting a friend. A girl? Is this why you can't decide? Bye. I just hope she's Bee-ish. They have a huge parade of flowers every year in Pasadena? To be in the Tournament of Roses, that's every florist's dream! Up on a float, surrounded by flowers, crowds cheering. A tournament. Do the roses compete in athletic events? No. All right, I've got one. How come you don't fly everywhere? It's exhausting. Why don't you run everywhere? It's faster. Yeah, OK, I see, I see. All right, your turn. TiVo. You can just freeze live TV? That's insane! You don't have that? We have Hivo, but it's a disease. It's a horrible, horrible disease. Oh, my. Dumb bees! You must want to sting all those jerks. We try not to sting. It's usually fatal for us. So you have to watch your temper. Very carefully. You kick a wall, take a walk, write an angry letter and throw it out. Work through it like any emotion: Anger, jealousy, lust. Oh, my goodness! Are you OK? Yeah. What is wrong with you?! It's a bug. He's not bothering anybody. Get out of here, you creep! What was that? A Pic 'N' Save circular? Yeah, it was. How did you know? It felt like about 10 pages. Seventy-five is pretty much our limit. You've really got that down to a science. I lost a cousin to Italian Vogue. I'll bet. What in the name of Mighty Hercules is this? How did this get here? cute Bee, Golden Blossom, Ray Liotta Private Select? Is he that actor? I never heard of him. Why is this here? For people. We eat it. You don't have enough food of your own? Well, yes. How do you get it? Bees make it. I know who makes it! And it's hard to make it! There's heating, cooling, stirring. You need a whole Krelman thing! It's organic. It's our-ganic! It's just honey, Barry. Just what?! Bees don't know about this! This is stealing! A lot of stealing! You've taken our homes, schools,hospitals! This is all we have! And it's on sale?! I'm getting to the bottom of this. I'm getting to the bottom of all of this! Hey, Hector. You almost done? Almost. He is here. I sense it. Well, I guess I'll go home now and just leave this nice honey out, with no one around. You're busted, box boy! I knew I heard something. So you can talk! I can talk. And now you'll start talking! Where you getting the sweet stuff? Who's your supplier? I don't understand. I thought we were friends. The last thing we want to do is upset bees! You're too late! It's ours now! You, sir, have crossed the wrong sword! You, sir, will be lunch for my iguana, Ignacio! Where is the honey coming from? Tell me where! Honey Farms! It comes from Honey Farms! Crazy person! What horrible thing has happened here? These faces, they never knew what hit them. And now they're on the road to nowhere! Just keep still. What? You're not dead? Do I look dead? They will wipe anything that moves. Where you headed? To Honey Farms. I am onto something huge here. I'm going to Alaska. Moose blood, crazy stuff. Blows your head off! I'm going to Tacoma. And you? He really is dead. All right. Uh-oh! What is that?! Oh, no! A wiper! Triple blade! Triple blade? Jump on! It's your only chance, bee! Why does everything have to be so doggone clean?! How much do you people need to see?! Open your eyes! Stick your head out the window! From NPR News in Washington, I'm Carl Kasell. But don't kill no more bugs! Bee! Moose blood guy!! You hear something? Like what? Like tiny screaming. Turn off the radio. Whassup, bee boy? Hey, Blood. Just a row of honey jars, as far as the eye could see. Wow! I assume wherever this truck goes is where they're getting it. I mean, that honey's ours. Bees hang tight. We're all jammed in. It's a close community. Not us, man. We on our own. Every mosquito on his own. What if you get in trouble? You a mosquito, you in trouble. Nobody likes us. They just smack. See a mosquito, smack, smack! At least you're out in the world. You must meet girls. Mosquito girls try to trade up, get with a moth, dragonfly. Mosquito girl don't want no mosquito. You got to be kidding me! Mooseblood's about to leave the building! So long, bee! Hey, guys! Mooseblood! I knew I'd catch y'all down here. Did you bring your crazy straw? We throw it in jars, slap a label on it, and it's pretty much pure profit. What is this place? A bee's got a brain the size of a pinhead. They are pinheads! Pinhead. Check out the new smoker. Oh, sweet. That's the one you want. The Thomas 3000! Smoker? Ninety puffs a minute, semi-automatic. Twice the nicotine, all the tar. A couple breaths of this knocks them right out. They make the honey, and we make the money. "They make the honey, and we make the money"? Oh, my! What's going on? Are you OK? Yeah. It doesn't last too long. Do you know you're in a fake hive with fake walls? Our queen was moved here. We had no choice. This is your queen? That's a man in women's clothes! That's a drag queen! What is this? Oh, no! There's hundreds of them! Bee honey. Our honey is being brazenly stolen on a massive scale! This is worse than anything bears have done! I intend to do something. Oh, Barry, stop. Who told you humans are taking our honey? That's a rumor. Do these look like rumors? That's a conspiracy theory. These are obviously doctored photos. How did you get mixed up in this? He's been talking to humans. What? Talking to humans?! He has a human girlfriend. And they make out! Make out? Barry! We do not. You wish you could. Whose side are you on? The bees! I dated a cricket once in San Antonio. Those crazy legs kept me up all night. Barry, this is what you want to do with your life? I want to do it for all our lives. Nobody works harder than bees! Dad, I remember you coming home so overworked your hands were still stirring. You couldn't stop. I remember that. What right do they have to our honey? We live on two cups a year. They put it in lip balm for no reason whatsoever! Even if it's true, what can one bee do? Sting them where it really hurts. In the face! The eye! That would hurt. No. Up the nose? That's a killer. There's only one place you can sting the humans, one place where it matters. Hive at Five, The Hive's only full-hour action news source. No more bee beards! With Bob Bumble at the anchor desk. Weather with Storm Stinger. Sports with Buzz Larvi. And Jeanette Chung. Good evening. I'm Bob Bumble. And I'm Jeanette Ohung. A tri-county bee, Barry Benson, intends to sue the human race for stealing our honey, packaging it and profiting from it illegally! Tomorrow night on Bee Larry King, we'll have three former queens here in our studio, discussing their new book, classy Ladies, out this week on Hexagon. Tonight we're talking to Barry Benson. Did you ever think, "I'm a kid from The Hive. I can't do this"? Bees have never been afraid to change the world. What about Bee Oolumbus? Bee Gandhi? Bejesus? Where I'm from, we'd never sue humans. We were thinking of stickball or candy stores. How old are you? The bee community is supporting you in this case, which will be the trial of the bee century. You know, they have a Larry King in the human world too. It's a common name. Next week... He looks like you and has a show and suspenders and colored dots... Next week... Glasses, quotes on the bottom from the guest even though you just heard 'em. Bear Week next week! They're scary, hairy and here live. Always leans forward, pointy shoulders, squinty eyes, very Jewish. In tennis, you attack at the point of weakness! It was my grandmother, Ken. She's 81. Honey, her backhand's a joke! I'm not gonna take advantage of that? Quiet, please. Actual work going on here. Is that that same bee? Yes, it is! I'm helping him sue the human race. Hello. Hello, bee. This is Ken. Yeah, I remember you. Timberland, size ten and a half. Vibram sole, I believe. Why does he talk again? Listen, you better go 'cause we're really busy working. But it's our yogurt night! Bye-bye. Why is yogurt night so difficult?! You poor thing. You two have been at this for hours! Yes, and Adam here has been a huge help. Frosting... How many sugars? Just one. I try not to use the competition. So why are you helping me? Bees have good qualities. And it takes my mind off the shop. Instead of flowers, people are giving balloon bouquets now. Those are great, if you're three. And artificial flowers. Oh, those just get me psychotic! Yeah, me too. Bent stingers, pointless pollination. Bees must hate those fake things! Nothing worse than a daffodil that's had work done. Maybe this could make up for it a little bit. This lawsuit's a pretty big deal. I guess. You sure you want to go through with it? Am I sure? When I'm done with the humans, they won't be able to say, "Honey, I'm home," without paying a royalty! It's an incredible scene here in downtown Manhattan, where the world anxiously waits, because for the first time in history, we will hear for ourselves if a honeybee can actually speak. What have we gotten into here, Barry? It's pretty big, isn't it? I can't believe how many humans don't work during the day. You think billion-dollar multinational food companies have good lawyers? Everybody needs to stay behind the barricade. What's the matter? I don't know, I just got a chill. Well, if it isn't the bee team. You boys work on this? All rise! The Honorable Judge Bumbleton presiding. All right. Case number 4475, Superior Court of New York, Barry Bee Benson v. the Honey Industry is now in session. Mr. Montgomery, you're representing the five food companies collectively? A privilege. Mr. Benson... you're representing all the bees of the world? I'm kidding. Yes, Your Honor, we're ready to proceed. Mr. Montgomery, your opening statement, please. Ladies and gentlemen of the jury, my grandmother was a simple woman. Born on a farm, she believed it was man's divine right to benefit from the bounty of nature God put before us. If we lived in the topsy-turvy world Mr. Benson imagines, just think of what would it mean. I would have to negotiate with the silkworm for the elastic in my britches! Talking bee! How do we know this isn't some sort of holographic motion-picture-capture Hollywood wizardry? They could be using laser beams! Robotics! Ventriloquism! Cloning! For all we know, he could be on steroids! Mr. Benson? Ladies and gentlemen, there's no trickery here. I'm just an ordinary bee. Honey's pretty important to me. It's important to all bees. We invented it! We make it. And we protect it with our lives. Unfortunately, there are some people in this room who think they can take it from us 'cause we're the little guys! I'm hoping that, after this is all over, you'll see how, by taking our honey, you not only take everything we have but everything we are! I wish he'd dress like that all the time. So nice! Call your first witness. So, Mr. Klauss Vanderhayden of Honey Farms, big company you have. I suppose so. I see you also own Honeyburton and Honron! Yes, they provide beekeepers for our farms. Beekeeper. I find that to be a very disturbing term. I don't imagine you employ any bee-free-ers, do you? No. I couldn't hear you. No. No. Because you don't free bees. You keep bees. Not only that, it seems you thought a bear would be an appropriate image for a jar of honey. They're very lovable creatures. Yogi Bear, Fozzie Bear, Build-A-Bear. You mean like this? Bears kill bees! How'd you like his head crashing through your living room?! Biting into your couch! Spitting out your throw pillows! OK, that's enough. Take him away. So, Mr. Sting, thank you for being here. Your name intrigues me. Where have I heard it before? I was with a band called The Police. But you've never been a police officer, have you? No, I haven't. No, you haven't. And so here we have yet another example of bee culture casually stolen by a human for nothing more than a prance-about stage name. Oh, please. Have you ever been stung, Mr. Sting? Because I'm feeling a little stung, Sting. Or should I say... Mr. Gordon M. Sumner! That's not his real name?! You idiots! Mr. Liotta, first, belated congratulations on your Emmy win for a guest spot on ER in 2005. Thank you. Thank you. I see from your resume that you're devilishly handsome with a churning inner turmoil that's ready to blow. I enjoy what I do. Is that a crime? Not yet it isn't. But is this what it's come to for you? Exploiting tiny, helpless bees so you don't have to rehearse your part and learn your lines, sir? Watch it, Benson! I could blow right now! This isn't a goodfella. This is a badfella! Why doesn't someone just step on this creep, and we can all go home?! Order in this court! You're all thinking it! Order! Order, I say! Say it! Mr. Liotta, please sit down! I think it was awfully nice of that bear to pitch in like that. I think the jury's on our side. Are we doing everything right, legally? I'm a florist. Right. Well, here's to a great team. To a great team! Well, hello. Ken! Hello. I didn't think you were coming. No, I was just late I tried to call, but... the battery. I didn't want all this to go to waste, so I called Barry. Luckily, he was free. Oh, that was lucky. There's a little left. I could heat it up. Yeah, heat it up, sure, whatever. So I hear you're quite a tennis player. I'm not much for the game myself. The ball's a little grabby. That's where I usually sit. Right... there. Ken, Barry was looking at your resume, and he agreed with me that eating with chopsticks isn't really a special skill. You think I don't see what you're doing? I know how hard it is to find the right job. We have that in common. Do we? Bees have 100 percent employment, but we do jobs like taking the crud out. That's just what I was thinking about doing. Ken, I let Barry borrow your razor for his fuzz. I hope that was all right. I'm going to drain the old stinger. Yeah, you do that. Look at that. You know, I've just about had it with your little Mind Games. What's that? Italian Vogue. Mamma mia, that's a lot of pages. A lot of ads. Remember what Van said, why is your life more valuable than mine? Funny, I just can't seem to recall that! I think something stinks in here! I love the smell of flowers. How do you like the smell of flames?! Not as much. Water bug! Not taking sides! Ken, I'm wearing a Chapstick hat! This is pathetic! I've got issues! Well, well, well, a royal flush! You're bluffing. Am I? Surf's up, dude! Poo water! That bowl is gnarly. Except for those dirty yellow rings! Kenneth! What are you doing?! You know, I don't even like honey! I don't eat it! We need to talk! He's just a little bee! And he happens to be the nicest bee I've met in a long time! Long time? What are you talking about?! Are there other bugs in your life? No, but there are other things bugging me in life. And you're one of them! Fine! Talking bees, no yogurt night... My nerves are fried from riding on this emotional roller coaster! Goodbye, Ken. And for your information, I prefer sugar-free, artificial sweeteners made by man! I'm sorry about all that. I know it's got an aftertaste! I like it! I always felt there was some kind of barrier between Ken and me. I couldn't overcome it. Oh, well. Are you OK for the trial? I believe Mr. Montgomery is about out of ideas. We would like to call Mr. Barry Benson Bee to the stand. Good idea! You can really see why he's considered one of the best lawyers... Yeah. Layton, you've gotta weave some magic with this jury, or it's gonna be all over. Don't worry. The only thing I have to do to turn this jury around is to remind them of what they don't like about bees. You got the tweezers? Are you allergic? Only to losing, son. Only to losing. Mr. Benson Bee, I'll ask you what I think we'd all like to know. What exactly is your relationship to that woman? We're friends. Good friends? Yes. How good? Do you live together? Wait a minute... Are you her little... bedbug? I've seen a bee documentary or two. From what I understand, doesn't your queen give birth to all the bee children? Yeah, but... So those aren't your real parents! Oh, Barry... Yes, they are! Hold me back! You're an illegitimate bee, aren't you, Benson? He's denouncing bees! Don't y'all date your cousins? Objection! I'm going to pincushion this guy! Adam, don't! It's what he wants! Oh, I'm hit!! Oh, lordy, I am hit! Order! Order! The venom! The venom is coursing through my veins! I have been felled by a winged beast of destruction! You see? You can't treat them like equals! They're striped savages! Stinging's the only thing they know! It's their way! Adam, stay with me. I can't feel my legs. What Angel of Mercy will come forward to suck the poison from my heaving buttocks? I will have order in this court. Order! Order, please! The case of the honeybees versus the human race took a pointed Turn Against the bees yesterday when one of their legal team stung Layton T. Montgomery. Hey, buddy. Hey. Is there much pain? Yeah. I... I blew the whole case, didn't I? It doesn't matter. What matters is you're alive. You could have died. I'd be better off dead. Look at me. They got it from the cafeteria downstairs, in a tuna sandwich. Look, there's a little celery still on it. What was it like to sting someone? I can't explain it. It was all... All adrenaline and then...and then ecstasy! All right. You think it was all a trap? Of course. I'm sorry. I flew us right into this. What were we thinking? Look at us. We're just a couple of bugs in this world. What will the humans do to us if they win? I don't know. I hear they put the roaches in motels. That doesn't sound so bad. Adam, they check in, but they don't check out! Oh, my. Could you get a nurse to close that window? Why? The smoke. Bees don't smoke. Right. Bees don't smoke. Bees don't smoke! But some bees are smoking. That's it! That's our case! It is? It's not over? Get dressed. I've gotta go somewhere. Get back to the court and stall. Stall any way you can. And assuming you've done step correctly, you're ready for the tub. Mr. Flayman. Yes? Yes, Your Honor! Where is the rest of your team? Well, Your Honor, it's interesting. Bees are trained to fly haphazardly, and as a result, we don't make very good time. I actually heard a funny story about... Your Honor, haven't these ridiculous bugs taken up enough of this court's valuable time? How much longer will we allow these absurd shenanigans to go on? They have presented no compelling evidence to support their charges against my clients, who run legitimate businesses. I move for a complete dismissal of this entire case! Mr. Flayman, I'm afraid I'm going to have to consider Mr. Montgomery's motion. But you can't! We have a terrific case. Where is your proof? Where is the evidence? Show me the smoking gun! Hold it, Your Honor! You want a smoking gun? Here is your smoking gun. What is that? It's a bee smoker! What, this? This harmless little contraption? This couldn't hurt a fly, let alone a bee. Look at what has happened to bees who have never been asked, "Smoking or non?" Is this what nature intended for us? To be forcibly addicted to smoke machines and man-made wooden slat work camps? Living out our lives as honey slaves to the white man? What are we gonna do? He's playing the species card. Ladies and gentlemen, please, free these bees! Free the bees! Free the bees! Free the bees! Free the bees! Free the bees! The court finds in favor of the bees! Vanessa, we won! I knew you could do it! High-five! Sorry. I'm OK! You know what this means? All the honey will finally belong to the bees. Now we won't have to work so hard all the time. This is an unholy perversion of the balance of nature, Benson. You'll regret this. Barry, how much honey is out there? All right. One at a time. Barry, who are you wearing? My sweater is Ralph Lauren, and I have no pants. What if Montgomery's right? What do you mean? We've been living the bee way a long time, 27 million years. Congratulations on your victory. What will you demand as a settlement? First, we'll demand a complete shutdown of all bee work camps. Then we want back the honey that was ours to begin with, every last drop. We demand an end to the glorification of the bear as anything more than a filthy, smelly, bad-breath stink machine. We're all aware of what they do in the woods. Wait for my signal. Take him out. He'll have nauseous for a few hours, then he'll be fine. And we will no longer tolerate bee-negative nicknames... But it's just a prance-about stage name! ...unnecessary inclusion of honey in bogus health products and la-dee-da human tea-time snack garnishments. Can't breathe. Bring it in, boys! Hold it right there! Good. Tap it. Mr. Buzzwell, we just passed three cups and there's gallons more coming! I think we need to shut down! Shut down? We've never shut down. Shut down honey production! Stop making honey! Turn your key, sir! What do we do now? Cannonball! We're shutting honey production! Mission abort. Aborting pollination and nectar detail. Returning to base. Adam, you wouldn't believe how much honey was out there. Oh, yeah? What's going on? Where is everybody? Are they out celebrating? They're home. They don't know what to do. Laying out, sleeping in. I heard your Uncle Carl was on his way to San Antonio with a cricket. At least we got our honey back. Sometimes I think, so what if humans liked our honey? Who wouldn't? It's the greatest thing in the world! I was excited to be part of making it. This was my new desk. This was my new job. I wanted to do it really well. And now... Now I can't. I don't understand why they're not happy. I thought their lives would be better! They're doing nothing. It's amazing. Honey really changes people. You don't have any idea what's going on, do you? What did you want to show me? This. What happened here? That is not the half of it. Oh, no. Oh, my. They're all wilting. Doesn't look very good, does it? No. And whose fault do you think that is? You know, I'm gonna guess bees. Bees? Specifically, me. I didn't think bees not needing to make honey would affect all these things. It's not just flowers. Fruits, vegetables, they all need bees. That's our whole SAT test right there. Take away produce, that affects the entire animal kingdom. And then, of course... The human species? So if there's no more pollination, it could all just go south here, couldn't it? I know this is also partly my fault. How about a suicide pact? How do we do it? I'll sting you, you step on me. That just kills you twice. Right, right. Listen, Barry... sorry, but I gotta get going. I had to open my mouth and talk. Vanessa? Vanessa? Why are you leaving? Where are you going? To the final Tournament of Roses parade in Pasadena. They've moved it to this weekend because all the flowers are dying. It's the Last Chance I'll ever have to see it. Vanessa, I just wanna say I'm sorry. I never meant it to turn out like this. I know. Me neither. Tournament of Roses. Roses can't do sports. Wait a minute. Roses. Roses? Roses! Vanessa! Roses?! Barry? Roses are flowers! Yes, they are. Flowers, bees, pollen! I know. That's why this is the last parade. Maybe not. Could you ask him to slow down? Could you slow down? Barry! OK, I made a huge mistake. This is a total disaster, all my fault. Yes, it kind of is. I've ruined the planet. I wanted to help you with the flower shop. I've made it worse. Actually, it's completely closed down. I thought maybe you were remodeling. But I have another idea, and it's greater than my previous ideas combined. I don't want to hear it! All right, they have the roses, the roses have the pollen. I know every bee, plant and flower bud in this park. All we gotta do is get what they've got back here with what we've got. Bees. Park. Pollen! Flowers. Repollination! Across the nation! Tournament of Roses, Pasadena, California. They've got nothing but flowers, floats and cotton candy. Security will be tight. I have an idea. Vanessa Bloome, FTD. Official floral business. It's real. Sorry, ma'am. Nice brooch. Thank you. It was a gift. Once inside, we just pick the right float. How about The Princess and the Pea? I could be the princess, and you could be the pea! Yes, I got it. Where should I sit? What are you? I believe I'm the pea. The pea? It goes under the mattresses. Not in this fairy tale, sweetheart. I'm getting the marshal. You do that! This whole parade is a fiasco! Let's see what this baby'll do. Hey, what are you doing?! Then all we do is blend in with traffic... without arousing suspicion. Once at the airport, there's no stopping us. Stop! Security. You and your insect pack your float? Yes. Has it been in your possession the entire time? Would you remove your shoes? Remove your stinger. It's part of me. I know. Just having some fun. Enjoy your flight. Then if we're lucky, we'll have just enough pollen to do the job. Can you believe how lucky we are? We have just enough pollen to do the job! I think this is gonna work. It's got to work. Attention, passengers, this is Captain Scott. We have a bit of bad weather in New York. It looks like we'll experience a couple hours delay. Barry, these are cut flowers with no water. They'll never make it. I gotta get up there and talk to them. Be careful. Can I get help with the Sky Mall magazine? I'd like to order the talking inflatable nose and ear hair trimmer. Captain, I'm in a real situation. What'd you say, Hal? Nothing. Bee! Don't freak out! My entire species... What are you doing? Wait a minute! I'm an attorney! Who's an attorney? Don't move. Oh, Barry. Good afternoon, passengers. This is your captain. Would a Miss Vanessa Bloome in 24B please report to the cockpit? And please hurry! What happened here? There was a DustBuster, a toupee, a life raft exploded. One's bald, one's in a boat, they're both unconscious! Is that another bee joke? No! No one's flying the plane! This is JFK control tower, Flight 356. What's your status? This is Vanessa Bloome. I'm a florist from New York. Where's the pilot? He's unconscious, and so is the copilot. Not good. Does anyone onboard have flight experience? As a matter of fact, there is. Who's that? Barry Benson. From the honey trial?! Oh, great. Vanessa, this is nothing more than a big metal bee. It's got giant wings, huge engines. I can't fly a plane. Why not? Isn't John Travolta a pilot? Yes. How hard could it be? Wait, Barry! We're headed into some lightning. This is Bob Bumble. We have some late-breaking news from JFK Airport, where a suspenseful scene is developing. Barry Benson, fresh from his legal victory... That's Barry! ...is attempting to land a plane, loaded with people, flowers and an incapacitated flight crew. Flowers?! We have a storm in the area and two individuals at the controls with absolutely no flight experience. Just a minute. There's a bee on that plane. I'm quite familiar with Mr. Benson and his no-account compadres. They've done enough damage. But isn't he your only hope? Technically, a bee shouldn't be able to fly at all. Their wings are too small... Haven't we heard this a million times? "The surface area of the wings and body mass make no sense." Get this on the air! Got it. Stand by. We're going live. The way we work may be a mystery to you. Making honey takes a lot of bees doing a lot of small jobs. But let me tell you about a small job. If you do it well, it makes a big difference. More than we realized. To us, to everyone. That's why I want to get bees back to working together. That's the bee way! We're not made of Jell-O. We get behind a fellow. Black and yellow! Hello! Left, right, down, hover. Hover? Forget hover. This isn't so hard. Beep-beep! Beep-beep! Barry, what happened?! Wait, I think we were on autopilot the whole time. That may have been helping me. And now we're not! So it turns out I cannot fly a plane. All of you, let's get behind this fellow! Move it out! Move out! Our only chance is if I do what I'd do, you copy me with the wings of the plane! Don't have to yell. I'm not yelling! We're in a lot of trouble. It's very hard to concentrate with that panicky tone in your voice! It's not a tone. I'm panicking! I can't do this! Vanessa, pull yourself together. You have to snap out of it! You snap out of it. You snap out of it. You snap out of it! You snap out of it! You snap out of it! You snap out of it! You snap out of it! You snap out of it! Hold it! Why? Come on, it's my turn. How is the plane flying? I don't know. Hello? Benson, got any flowers for a happy occasion in there? The Pollen Jocks! They do get behind a fellow. Black and yellow. Hello. All right, let's drop this tin can on the blacktop. Where? I can't see anything. Can you? No, nothing. It's all cloudy. Come on. You got to think bee, Barry. Thinking bee. Thinking bee. Thinking bee! Thinking bee! Thinking bee! Wait a minute. I think I'm feeling something. What? I don't know. It's strong, pulling me. Like a 27-million-year-old instinct. Bring the nose down. Thinking bee! Thinking bee! Thinking bee! What in the world is on the tarmac? Get some lights on that! Thinking bee! Thinking bee! Thinking bee! Vanessa, aim for the flower. OK. Cut the engines. We're going in on bee power. Ready, boys? Affirmative! Good. Good. Easy, now. That's it. Land on that flower! Ready? Full reverse! Spin it around! Not that flower! The other one! Which one? That flower. I'm aiming at the flower! That's a fat guy in a flowered shirt. I mean the giant pulsating flower made of millions of bees! Pull forward. Nose down. Tail up. Rotate around it. This is insane, Barry! This's the only way I know how to fly. Am I koo-koo-kachoo, or is this plane flying in an insect-like pattern? Get your nose in there. Don't be afraid. Smell it. Full reverse! Just drop it. Be a part of it. Aim for the center! Now drop it in! Drop it in, woman! Come on, already. Barry, we did it! You taught me how to fly! Yes. No high-five! Right. Barry, it worked! Did you see the giant flower? What giant flower? Where? Of course I saw the flower! That was genius! Thank you. But we're not done yet. Listen, everyone! This runway is covered with the last pollen from the last flowers available anywhere on Earth. That means this is our Last Chance. We're the only ones who make honey, pollinate flowers and dress like this. If we're gonna survive as a species, this is our moment! What do you say? Are we going to be bees, or just Museum of Natural History keychains? We're bees! Keychain! Then follow me! Except Keychain. Hold on, Barry. Here. You've earned this. Yeah! I'm a Pollen Jock! And it's a perfect fit. All I gotta do are the sleeves. Oh, yeah. That's our Barry. Mom! The bees are back! If anybody needs to make a call, now's the time. I got a feeling we'll be working late tonight! Here's your change. Have a great afternoon! Can I help who's next? Would you like some honey with that? It is bee-approved. Don't forget these. Milk, cream, cheese, it's all me. And I don't see a nickel! Sometimes I just feel like a piece of meat! I had no idea. Barry, I'm sorry. Have you got a moment? Would you excuse me? My mosquito associate will help you. Sorry I'm late. He's a lawyer too? I was already a blood-sucking parasite. All I needed was a briefcase. Have a great afternoon! Barry, I just got this huge tulip order, and I can't get them anywhere. No problem, Vannie. Just leave it to me. You're a lifesaver, Barry. Can I help who's next? All right, scramble, jocks! It's time to fly. Thank you, Barry! That bee is living my life! Let it go, Kenny. When will this nightmare end?! Let it all go. Beautiful day to fly. Sure is. Between you and me, I was dying to get out of that office. You have got to start thinking bee, my friend. Thinking bee! Me? Hold it. Let's just stop for a second. Hold it. I'm sorry. I'm sorry, everyone. Can we stop here? I'm not making a major life decision during a production number! All right. Take ten, everybody. Wrap it up, guys. I h
Bostock133 / Eagles Dominance# NFL-ROSTER-ROWIE ## Antdroid/Minotauri NFL Roster for 2017-18 Season ## version 1.50 (09-15-2017) ##Changelog ##v1.0 Initial Release ##v1.11 Fixed extra comma bug affecting iOS and players with initials for first name ##v1.20: Randomized Potential based on Age ##v1.30 Fixed Player Salaries; New Coverage Formula; Using PFC-Converter v1.2 ##v1.50 Normalizing Salaries to avoid salary cap issues ## http://www.AntDroid.net ###################################################################### RAVENS Baltimore Ravens,BAL QB,Joe Flacco,28,2012,80,87,95,99,88,88,19.9,2 QB,Ryan Mallett,29,2011,67,45,78,93,60,87,1.9,1 RB,Javorius Allen,26,2015,68,50,73,70,81,76,0.5,2 RB,Kenneth Dixon,23,2016,89,85,81,85,88,90,0.5,3 RB,Terrance West,26,2014,88,73,85,75,81,86,1.1,1 RB,Danny Woodhead,32,2008,47,70,68,67,81,78,2.3,3 RB,Maxx Williams,23,2015,71,45,70,61,65,73,0.8,2 WR,Mike Wallace,31,2009,72,78,83,71,88,76,5.6,1 WR,Chris Matthews,28,2011,90,45,75,68,78,70,0.4,1 WR,Chris Moore,24,2016,99,90,85,82,85,85,0.6,3 WR,Jeremy Maclin,29,2009,64,71,71,85,88,81,5,2 WR,Vince Mayle,26,2015,91,40,73,63,70,76,0.3,1 WR,Michael Campanaro,26,2014,89,60,70,68,85,70,0.9,1 WR,Breshad Perriman,24,2015,98,54,63,63,95,81,2.1,2 WR,Nick Boyle,24,2015,88,50,83,68,59,55,0.4,2 WR,Benjamin Watson,37,2004,68,68,75,70,65,65,2.3,1 WR,Crockett Gillmore,26,2014,77,59,78,68,64,59,0.5,1 OL,Ronnie Stanley,23,2016,82,68,81,78,64,73,5.2,3 OL,James Hurst,26,2014,97,62,67,63,60,59,0.9,1 OL,Tony Bergstrom,31,2012,80,50,83,70,67,60,0.5,1 OL,Luke Bowanko,26,2014,75,52,68,75,71,60,0.4,1 OL,Ryan Jensen,26,2013,86,54,81,85,61,68,1.1,1 OL,Marshal Yanda,33,2007,60,100,90,90,85,100,5.9,2 OL,Austin Howard,30,2010,64,62,71,78,63,59,3.3,3 OL,Jermaine Eluemunor,23,2017,88,90,87,88,82,82,0.5,4 DL,Willie Henry,23,2016,86,90,91,85,95,80,0.5,3 DL,Chris Wormley,24,2017,92,45,75,70,68,80,0.7,4 DL,Bronson Kaufusi,26,2016,81,45,83,67,67,74,0.7,3 DL,Brent Urban,26,2014,85,50,62,64,64,70,0.4,1 DL,Carl Davis,25,2015,82,40,63,81,75,67,0.6,2 DL,Michael Pierce,25,2016,93,60,71,93,85,76,0.3,2 DL,Patrick Ricard,23,2017,79,35,78,78,81,73,0.3,3 DL,Brandon Williams,28,2013,71,81,65,97,90,71,8.1,5 LB,Matt Judon,25,2016,76,40,70,65,73,67,0.4,3 LB,Tyus Bowser,22,2017,98,45,78,64,64,74,1.2,4 LB,Bam Bradley,23,2017,83,35,85,65,60,66,0.3,3 LB,C.J. Mosley,25,2014,80,81,83,90,68,88,2.9,2 LB,Patrick Onwuasor,25,2016,92,40,81,62,62,70,0.3,1 LB,Kamalei Correa,23,2016,92,56,78,68,65,76,1.3,3 LB,Tim Williams,24,2017,70,45,71,61,63,71,0.6,4 LB,Za'Darius Smith,25,2015,97,57,78,65,67,67,0.5,2 LB,Terrell Suggs,35,2003,62,75,88,87,88,73,5.3,2 CB,Tavon Young,23,2016,89,81,83,83,85,87,0.6,3 CB,Jimmy Smith,29,2011,77,71,83,90,83,70,9.5,3 CB,Brandon Carr,31,2008,57,65,85,86,78,60,4.3,4 CB,Sheldon Price,26,2013,64,35,67,71,83,37,0.4,1 CB,Marlon Humphrey,21,2017,86,50,81,80,88,67,2.9,4 CB,Jaylen Hill,23,2017,73,35,68,68,73,53,0.3,3 S,Eric Weddle,32,2007,66,90,88,88,73,83,5.2,3 S,Lardarius Webb,32,2009,50,73,78,92,85,53,1.6,3 S,Chuck Clark,22,2017,80,40,83,71,81,66,0.4,4 S,Anthony Levine Sr.,30,2010,70,57,70,80,75,59,1,3 S,Tony Jefferson,25,2013,78,87,71,83,70,81,6.9,4 K,Justin Tucker,28,2012,67,57,71,100,100,57,3.6,3 K,Sam Koch,35,2006,75,59,65,87,90,59,2.5,4 END_PLAYERS ###################################################################### BENGALS Cincinnati Bengals,CIN QB,Andy Dalton,30,2011,86,81,93,88,81,90,11.5,4 QB,A.J. McCarron,27,2014,77,61,88,75,65,40,0.4,1 RB,Giovani Bernard,26,2013,60,68,68,71,87,86,3.1,3 RB,Joe Mixon,21,2017,98,85,87,93,87,83,1.2,4 RB,Jeremy Hill,25,2014,63,75,83,83,81,88,0.7,1 RB,Cethan Carter,24,2017,71,35,68,59,70,62,0.3,3 RB,Ryan Hewitt,26,2014,60,61,81,57,62,60,1.4,3 WR,Cody Core,23,2016,79,45,73,65,85,65,0.4,3 WR,Alex Erickson,25,2016,96,35,75,65,81,66,0.3,2 WR,Brandon LaFell,31,2010,72,81,83,81,75,74,2.8,2 WR,A.J. Green,29,2011,85,95,90,97,87,92,9.4,3 WR,Tyler Boyd,23,2016,90,61,73,75,81,60,0.9,3 WR,John Ross,22,2017,90,98,85,90,100,90,4.3,4 WR,Josh Malone,21,2017,95,45,75,70,88,59,0.6,4 WR,Tyler Eifert,27,2013,81,81,73,83,71,71,3,1 WR,C.J. Uzomah,24,2015,71,45,75,62,73,67,0.4,2 WR,Tyler Kroft,25,2015,90,40,64,65,67,66,0.6,2 OL,Cedric Ogbuehi,25,2015,94,61,62,68,63,58,2.2,2 OL,Clint Boling,28,2011,86,63,88,78,62,73,3.6,3 OL,Christian Westerman,24,2016,76,40,78,81,63,60,0.4,3 OL,Russell Bodine,25,2014,70,71,83,99,70,60,0.7,1 OL,T.J. Johnson,27,2013,78,45,71,75,64,60,1.2,2 OL,Clark Harris,33,2007,76,54,71,60,40,45,0.6,1 OL,Trey Hopkins,25,2014,87,40,70,78,73,60,0.3,2 OL,Alex Redmond,22,2016,89,95,83,85,89,87,0.3,2 OL,Andre Smith,30,2009,88,60,75,95,64,61,3,1 OL,Jake Fisher,24,2015,87,60,70,70,63,60,0.9,2 DL,Carlos Dunlap,28,2010,77,75,68,64,68,86,5.1,2 DL,Chris Smith,25,2014,84,40,71,73,71,80,0.4,1 DL,Michael Johnson,30,2009,70,67,70,60,63,83,3.8,2 DL,Jordan Willis,22,2017,90,45,87,73,73,88,0.7,4 DL,Christian Ringo,25,2015,75,40,63,65,63,70,0.3,1 DL,Andrew Billings,22,2016,99,40,70,87,75,71,0.5,3 DL,Ryan Glasgow,24,2017,69,45,70,81,73,65,0.5,4 DL,Pat Sims,32,2008,74,60,71,83,75,70,0.7,1 DL,Geno Atkins,29,2010,60,88,73,85,81,78,8.5,2 LB,Nick Vigil,24,2016,91,45,83,78,63,68,0.6,3 LB,Carl Lawson,22,2017,87,40,67,65,75,65,0.6,4 LB,Hardy Nickerson,23,2017,97,40,81,75,65,66,0.3,3 LB,Kevin Minter,27,2013,60,71,75,70,68,76,4,1 LB,Jordan Evans,22,2017,82,90,81,82,83,94,0.4,4 LB,Vincent Rey,30,2010,72,67,83,85,70,74,2.2,2 LB,Vontaze Burfict,27,2012,65,85,95,85,75,76,3.5,1 CB,Darqueze Dennard,26,2014,82,56,83,81,88,67,1.9,1 CB,Dre Kirkpatrick,28,2012,88,67,73,86,81,40,7.4,5 CB,William Jackson III,25,2016,69,45,75,81,88,40,2.3,3 CB,Josh Shaw,25,2015,69,45,65,78,85,63,0.5,2 CB,Adam Jones,34,2005,71,71,78,90,78,44,5,2 CB,KeiVarae Russell,24,2016,87,40,75,80,83,63,0.5,3 S,George Iloka,27,2012,87,62,81,81,73,55,4.1,4 S,Clayton Fejedelem,24,2016,99,40,87,71,78,66,0.4,3 S,Derron Smith,25,2015,95,45,68,74,73,40,0.4,2 S,Shawn Williams,26,2013,67,61,85,83,85,83,2.8,4 K,Randy Bullock,28,2012,78,40,62,93,68,40,0.5,2 K,Kevin Huber,32,2009,78,40,70,81,60,40,2,1 END_PLAYERS ###################################################################### BROWNS Cleveland Browns,CLE QB,Rowie Palacpac,18,2017,100,100,100,100,100,100,1,10 QB,Baker Mayfield,13,2017,95,87,88,86,87,85,0.6,7 QB,Kevin Hogan,25,2016,66,45,90,75,60,60,0.3,1 RB,Saquon Barkley,20,2017,91,96,88,97,95,94,0.4,7 RB,Duke Johnson,24,2015,85,90,86,82,85,83,0.6,7 RB,Isaiah Crowell,24,2014,83,81,84,85,83,90,1,5 RB,Darius Jackson,24,2016,85,35,81,67,88,71,0.4,3 RB,Dan Vitale,24,2016,69,40,81,60,73,71,0.3,2 WR,Kenny Britt,29,2009,69,75,83,75,75,80,6.1,4 WR,Sammie Coates,24,2015,97,56,81,62,87,76,0.6,2 WR,Kasen Williams,25,2015,67,35,62,63,73,63,0.3,1 WR,Ricardo Louis,23,2016,82,45,81,63,87,66,0.5,3 WR,Colton Cruise,21,2017,97,89,88,96,98,96,0.3,5 WR,Corey Coleman,23,2016,82,60,78,67,90,73,2.9,3 WR,David Njoku,21,2017,85,80,89,84,90,89,1,4 WR,Randall Telfer,25,2015,78,40,64,50,63,67,0.4,2 WR,Seth DeValve,24,2016,97,40,75,62,70,68,0.5,3 OL,Quenton Nelson,21,2017,88,95,81,93,99,99,0.5,7 OL,Zach Banner,24,2017,88,95,87,85,88,88,0.5,4 OL,Joe Thomas,21,2017,90,100,99,99,98,99,3,8 OL,Marcus Martin,24,2014,98,62,71,68,60,59,1.1,1 OL,Charley Hughlett,27,2014,70,45,68,75,73,73,0.7,6 OL,Skye McLovin,26,2014,88,92,87,89,89,96,1,6 OL,J. C. Tretter,26,2013,72,73,75,83,75,75,4.4,3 OL,Austin Reiter,26,2015,85,40,73,62,65,59,0.3,1 OL,Kevin Zeitler,27,2012,62,83,88,87,78,87,9,5 OL,Spencer Drango,25,2016,71,60,85,70,65,61,0.4,3 OL,Shon Coleman,26,2016,90,40,70,75,64,60,0.6,3 DL,Bradley Chubb,21,2017,98,92,94,96,95,94,0.9,8 DL,Emmanuel Ogbah,24,2016,88,45,81,62,67,83,1.5,3 DL,Carl Nassib,24,2016,66,50,75,60,60,74,0.7,3 DL,Myles Garrett,22,2017,97,99,89,99,99,99,1,8 DL,Tyrone Holmes,24,2016,82,88,83,82,81,90,0.3,3 DL,Jamie Meder,26,2014,75,60,85,78,68,68,0.4,1 DL,Trevon Coley,23,2016,76,35,70,35,45,66,0.3,2 DL,Danny Shelton,24,2015,81,90,84,95,90,92,0.3,4 DL,Caleb Brantley,23,2017,84,82,84,83,89,87,0.4,4 DL,Larry Ogunjobi,23,2017,70,40,78,81,71,76,0.8,4 DL,T.Y. McGill,25,2015,68,60,78,73,71,71,0.3,1 LB,Jamie Collins,28,2013,89,71,85,81,68,88,8.6,4 LB,James Burgess,23,2016,80,35,73,65,67,63,0.3,2 LB,Tremaine Edmunds,22,2017,94,88,89,91,89,94,0.6,5 LB,Tank Carder,28,2012,74,50,85,70,61,74,0.9,1 LB,Dominique Alexander,22,2016,78,40,70,63,63,62,0.3,2 LB,Christian Kirksey,25,2014,94,71,73,88,67,86,5.5,5 CB,Denzel Ward,21,2017,94,89,83,86,98,90,1,6 CB,Howard Wilson,22,2017,75,40,75,74,78,55,0.6,4 CB,Jason McCourty,30,2009,50,68,68,90,88,70,2.3,2 CB,Briean Boddy-Calhoun,24,2016,70,58,73,80,85,40,0.3,2 S,Minkah Fitzpatrick,21,2017,98,95,99,92,95,98,0.3,6 S,Derrick Kindred,24,2016,69,40,83,74,83,76,0.5,3 S,Ibraheim Campbell,25,2015,70,50,70,76,81,73,0.5,2 S,Jabrill Peppers,22,2017,97,54,83,81,85,83,2.5,4 K,Austin Seibert,18,2017,99,99,99,99,99,99,0.1,8 K,Zane Gonzalez,22,2017,99,95,95,98,89,99,0.4,7 K,Britton Colquitt,32,2009,92,95,96,85,89,90,1.8,4 END_PLAYERS ###################################################################### STEELERS Pittsburgh Steelers,PIT QB,Landry Jones,28,2013,86,40,83,87,62,37,1.6,2 QB,Ben Roethlisbergr,28,2013,88,85,95,95,95,73,17.1,3 QB,Joshua Dobbs,22,2017,98,50,78,87,61,80,0.6,4 RB,Terrell Watson,24,2015,77,35,78,73,78,68,0.3,1 RB,Le'Veon Bell,25,2013,89,87,98,97,85,102,7.6,1 RB,James Conner,22,2017,69,52,78,78,73,74,0.6,4 RB,Roosevelt Nix,25,2014,74,64,78,58,64,65,0.4,1 WR,Antonio Brown,29,2010,84,100,88,100,88,90,12.6,5 WR,JuJu Smith-Schuste,21,2017,92,84,88,93,81,86,0.8,4 WR,Martavis Bryant,26,2014,67,63,78,68,88,74,0.5,1 WR,Darrius Heyward-Bey,30,2009,68,67,75,64,87,76,0.9,2 WR,Eli Rogers,25,2015,76,63,73,81,81,74,0.3,1 WR,Justin Hunter,26,2013,92,50,67,61,85,71,0.6,1 WR,Xavier Grimble,25,2014,75,45,68,61,60,57,0.3,1 WR,Jesse James,23,2015,83,80,83,87,80,87,0.4,2 WR,Vance McDonald,27,2013,71,63,70,67,70,65,4.2,5 OL,Alejandro Villanueva,29,2014,60,78,78,75,70,70,4.8,4 OL,Jerald Hawkins,24,2016,88,40,83,67,67,61,0.5,3 OL,B.J. Finney,26,2015,86,57,81,71,64,68,0.3,1 OL,Ramon Foster,31,2009,50,93,71,81,78,88,2.6,2 OL,Maurkice Pouncey,28,2010,90,88,73,87,67,78,7.1,3 OL,Kameron Canaday,25,2016,96,40,78,56,35,60,0.3,1 OL,Matt Feiler,25,2014,78,80,83,93,85,89,0.3,1 OL,David DeCastro,27,2012,88,83,88,93,81,83,8.6,5 OL,Marcus Gilbert,29,2011,83,85,75,87,73,87,4.8,3 OL,Chris Hubbard,26,2013,78,54,71,62,60,71,1.1,1 DL,Cameron Heyward,28,2011,83,78,83,85,85,78,7.7,4 DL,Leterrius Walton,25,2015,67,54,70,73,70,66,0.4,2 DL,Tyson Alualu,30,2010,56,67,75,75,75,74,2.3,2 DL,Stephon Tuitt,24,2014,83,75,65,87,83,74,1,1 DL,Javon Hargrave,24,2016,70,56,81,73,71,80,0.6,3 DL,Daniel McCullers,25,2014,74,60,65,81,75,60,0.4,1 LB,Bud Dupree,24,2015,99,58,75,68,64,81,2.2,2 LB,Arthur Moats,29,2010,61,64,71,61,60,74,2,1 LB,Anthony Chickillo,25,2015,78,45,83,61,64,67,0.4,1 LB,Steven Johnson,29,2012,73,59,73,68,60,73,0.6,1 LB,L.J. Fort,27,2012,76,45,75,71,67,71,0.3,1 LB,Ryan Shazier,25,2014,86,98,91,83,85,94,3.1,2 LB,Vince Williams,28,2013,76,60,71,75,67,70,1.6,2 LB,Tyler Matakevich,25,2016,97,40,87,70,68,67,0.4,3 LB,James Harrison,39,2002,57,78,85,75,87,70,1.3,2 LB,T.J. Watt,23,2017,89,95,85,85,90,83,2.2,4 CB,Coty Sensabaugh,29,2012,75,57,78,86,85,37,0.9,2 CB,Cameron Sutton,22,2017,70,45,78,76,81,43,0.6,4 CB,Brian Allen,24,2017,75,40,75,74,87,40,0.4,4 CB,William Gay,32,2007,41,81,85,86,81,70,2,2 CB,Mike Hilton,23,2016,99,35,78,74,78,43,0.3,1 CB,Joe Haden,28,2010,80,67,90,96,83,45,5.6,3 CB,Artie Burns,22,2016,67,60,71,83,87,43,2.3,3 S,J.J. Wilcox,26,2013,60,65,75,83,81,78,2,2 S,Mike Mitchell,30,2009,79,65,87,81,78,68,3.7,2 S,Robert Golden,27,2012,86,59,78,80,78,62,1.3,2 S,Sean Davis,24,2016,87,58,83,81,85,59,0.8,3 K,Chris Boswell,26,2014,77,54,65,88,87,54,0.4,1 K,Jordan Berry,26,2014,70,45,65,87,70,45,0.3,1 END_PLAYERS ###################################################################### BILLS Buffalo Bills,BUF QB,Joe Webb,31,2010,79,54,70,83,54,80,0.6,1 QB,Tyrod Taylor,28,2011,86,90,83,87,97,91,11.7,2 QB,Nathan Peterman,23,2017,73,52,85,87,61,53,0.4,4 RB,Taiwan Jones,29,2011,79,60,71,61,88,80,0.5,1 RB,Joe Banyard,29,2012,72,40,75,63,83,76,0.4,1 RB,LeSean McCoy,29,2009,94,90,93,89,85,86,6.6,3 RB,Mike Tolbert,32,2008,55,73,81,68,62,68,0.7,1 RB,Patrick DiMarco,28,2011,50,73,85,60,60,65,1.6,4 WR,Zay Jones,22,2017,78,54,90,81,85,78,1.5,4 WR,Kaelin Clay,25,2015,79,40,67,60,87,67,0.3,1 WR,Walt Powell,26,2014,77,45,73,64,87,73,0.4,3 WR,Andre Holmes,29,2011,83,63,68,68,78,70,1.4,3 WR,Brandon Tate,30,2009,65,50,71,60,81,83,0.7,1 WR,Jordan Matthews,25,2014,94,85,87,88,85,74,1.1,1 WR,Nick O'Leary,25,2015,93,54,81,71,60,53,0.3,1 WR,Charles Clay,28,2011,69,62,88,75,70,74,6,3 WR,Khari Lee,25,2015,92,50,75,60,61,65,0.4,2 WR,Logan Thomas,26,2014,82,35,83,50,71,71,0.5,1 OL,Dion Dawkins,23,2017,94,85,83,85,93,84,0.8,4 OL,Conor McDermott,25,2017,87,40,75,71,61,60,0.4,4 OL,Cordy Glenn,28,2012,77,83,75,90,64,78,9.5,4 OL,Seantrel Henderson,25,2014,99,60,60,70,63,56,0.5,1 OL,Richie Incognito,34,2005,66,85,88,93,75,81,4,2 OL,Ryan Groy,27,2014,67,60,70,75,63,61,1.6,2 OL,Reid Ferguson,23,2016,99,35,78,35,35,60,0.3,2 OL,Eric Wood,31,2009,76,81,78,81,63,60,6.8,3 OL,Vladimir Ducasse,30,2010,80,63,78,88,61,60,0.8,3 OL,John Miller,24,2015,88,98,81,88,81,81,0.6,2 OL,Jordan Mills,27,2013,74,61,75,71,61,60,1.3,2 DL,Shaq Lawson,23,2016,86,97,80,83,85,83,2.5,3 DL,Eddie Yarbrough,24,2016,76,35,63,68,67,80,0.3,1 DL,Jerry Hughes,29,2010,83,68,87,61,65,83,6.5,3 DL,Ryan Davis,28,2012,89,50,70,60,60,76,0.7,2 DL,Adolphus Washington,25,2016,94,52,71,60,67,80,0.6,3 DL,Jerel Worthy,27,2012,69,54,70,68,73,73,0.4,1 DL,Cedric Thornton,29,2011,73,63,68,81,78,71,3.4,3 DL,Kyle Williams,34,2006,72,93,73,85,87,73,5.6,1 DL,Marcell Dareus,27,2011,83,71,83,93,93,81,13.2,5 LB,Tanner Vallejo,23,2017,91,40,70,71,65,67,0.4,4 LB,Lorenzo Alexander,34,2005,74,73,78,70,73,80,2.2,2 LB,Deon Lacey,27,2013,75,35,70,58,45,65,0.4,2 LB,Preston Brown,25,2014,88,68,90,67,70,80,0.7,1 LB,Ramon Humber,30,2009,68,59,68,63,60,71,0.6,1 LB,Matt Milano,23,2017,87,80,87,90,88,87,0.5,4 CB,E.J. Gaines,25,2014,90,59,75,78,83,53,0.5,1 CB,Leonard Johnson,27,2012,76,54,81,78,75,46,0.6,1 CB,Shareece Wright,30,2011,75,61,78,83,85,47,0.5,1 CB,Tre'Davious White,22,2017,87,54,83,80,85,66,2.4,4 CB,Greg Mabin,23,2017,77,35,78,67,71,44,0.3,1 S,Jordan Poyer,26,2013,63,58,73,76,78,40,2.6,4 S,Colt Anderson,32,2009,80,58,78,74,73,59,0.7,1 S,Trae Elston,23,2016,89,35,70,70,83,68,0.3,2 S,Micah Hyde,27,2013,82,62,75,83,81,70,4.8,5 K,Steven Hauschka,32,2008,66,40,67,97,73,40,2.5,3 K,Colton Schmidt,27,2014,82,40,68,83,61,40,1,2 END_PLAYERS ###################################################################### DOLPHINS Miami Dolphins,MIA QB,Jay Cutler,28,2012,93,91,81,99,82,87,6.3,1 QB,Ryan Tannehill,29,2012,90,67,93,88,67,66,14,4 QB,Matt Moore,33,2007,74,63,87,71,63,37,1.3,1 RB,Jay Ajayi,24,2015,98,83,87,87,81,96,0.4,2 RB,Damien Williams,25,2014,79,60,73,70,87,81,1.1,1 RB,Kenyan Drake,23,2016,79,45,68,60,87,76,0.7,3 RB,Senorise Perry,26,2014,72,40,71,57,88,71,0.4,2 RB,MarQueis Gray,28,2013,64,57,73,60,67,73,0.7,2 WR,Kenny Stills,25,2013,80,71,81,78,88,74,6.1,4 WR,Jarvis Landry,25,2014,90,81,87,97,87,92,0.7,1 WR,Jakeem Grant,25,2016,98,40,71,65,97,67,0.4,3 WR,Leonte Carroo,23,2016,91,45,78,70,83,65,0.6,3 WR,DeVante Parker,24,2015,99,88,88,88,87,84,2.7,2 WR,Julius Thomas,29,2011,76,63,70,71,73,76,3.8,2 WR,Anthony Fasano,33,2006,58,70,81,62,61,59,2.5,1 OL,Sam Young,30,2010,64,59,71,70,68,60,0.7,1 OL,Laremy Tunsil,23,2016,93,85,87,81,92,80,3.1,3 OL,Anthony Steen,27,2014,88,59,71,70,60,60,0.4,1 OL,Jesse Davis,26,2015,99,35,73,73,73,67,0.3,2 OL,Jake Brendel,25,2016,83,35,85,65,61,60,0.3,1 OL,Mike Pouncey,28,2011,82,71,65,81,67,60,6.2,4 OL,John Denney,39,2005,52,78,78,60,40,45,0.6,1 OL,Jermon Bushrod,33,2007,82,67,87,78,60,60,2.3,1 OL,Isaac Asiata,25,2017,96,40,88,88,65,61,0.5,4 OL,Ja'Wuan James,25,2014,70,65,75,71,73,61,2.9,2 OL,Eric Smith,22,2017,99,95,88,90,80,80,0.3,3 DL,Andre Branch,28,2012,64,64,64,58,60,76,6.3,3 DL,Charles Harris,22,2017,82,45,73,61,63,83,2.6,4 DL,Terrence Fede,26,2014,69,40,75,61,64,78,0.4,1 DL,Cameron Wake,35,2009,41,88,81,73,71,83,5.4,2 DL,William Hayes,32,2008,58,73,81,73,83,83,4.2,1 DL,Ndamukong Suh,30,2010,72,73,95,100,99,90,15.1,4 DL,Davon Godchaux,23,2017,81,40,73,73,70,73,0.4,4 DL,Vincent Taylor,23,2017,76,40,78,71,67,66,0.4,4 DL,Jordan Phillips,25,2015,69,63,60,83,75,70,0.9,2 LB,Lawrence Timmons,31,2007,55,83,85,73,68,83,5.5,2 LB,Justin March-Lillard,24,2015,98,89,88,88,85,84,0.3,1 LB,Mike Hull,26,2015,89,40,81,70,73,68,0.4,1 LB,Rey Maualuga,30,2009,66,67,88,75,75,70,0.7,1 LB,Chase Allen,24,2017,87,35,85,65,60,66,0.3,3 LB,Kiko Alonso,27,2013,66,70,73,78,63,76,5.6,4 CB,Bobby McCain,24,2015,72,60,75,86,83,40,0.4,2 CB,Torry McTyer,22,2017,70,35,68,68,73,53,0.3,3 CB,Byron Maxwell,29,2011,62,71,81,88,83,47,6.6,4 CB,Alterraun Verner,29,2010,70,58,75,83,78,70,0.6,1 CB,Cordrea Tankersley,24,2017,69,40,88,71,88,63,0.6,4 CB,Xavien Howard,24,2016,67,45,85,81,87,47,1.4,3 S,Nate Allen,30,2010,53,62,68,81,75,66,3.4,1 S,Maurice Smith,22,2017,75,35,78,65,78,68,0.3,3 S,Walt Aikens,26,2014,88,45,78,78,83,44,0.5,1 S,T.J. McDonald,26,2013,88,62,73,83,75,59,0.2,5 S,Reshad Jones,29,2010,77,87,71,92,75,90,8.2,6 S,Michael Thomas,27,2012,71,60,78,81,75,60,1.1,1 K,Cody Parkey,25,2014,83,40,75,93,67,40,0.4,1 K,Matt Haack,23,2017,69,35,60,35,61,35,0.3,3 END_PLAYERS ###################################################################### PATRIOTS New England Patriots,NE QB,Tom Brady,28,2012,83,105,100,99,99,82,15.6,3 QB,Craig Krenzel,26,2015,70,50,60,62,70,44,0.4,2 RB,Rex Burkhead,27,2013,86,60,85,73,71,80,2.6,1 RB,Dion Lewis,27,2011,72,70,65,67,87,83,1,1 RB,Mike Gillislee,27,2013,80,64,78,78,81,83,2,2 RB,James White,25,2014,62,65,70,73,83,83,2.6,4 RB,James Develin,29,2010,51,71,78,57,57,47,0.9,2 WR,Chris Hogan,29,2011,63,81,73,88,81,73,2.5,2 WR,Phillip Dorsett,24,2015,76,54,63,70,97,71,1.9,2 WR,Malcolm Mitchell,24,2016,66,64,70,78,85,67,0.5,3 WR,Julian Edelman,28,2012,82,97,83,85,85,86,4.6,3 WR,Matthew Slater,32,2008,59,67,75,60,78,67,1.3,1 WR,Danny Amendola,28,2012,82,90,88,88,81,84,2.8,1 WR,Brandin Cooks,24,2014,82,83,81,87,97,81,2.7,2 WR,Jacob Hollister,24,2017,84,40,93,60,57,40,0.3,3 WR,Dwayne Allen,27,2012,77,73,73,75,61,60,5.2,3 WR,Rob Gronkowski,28,2010,97,90,83,95,89,84,6.8,3 OL,Nate Solder,29,2011,84,88,78,85,83,73,8.9,1 OL,LaAdrian Waddle,26,2013,80,59,70,78,61,58,0.8,1 OL,Joe Thuney,25,2016,77,67,85,75,65,62,0.6,3 OL,Ted Karras,24,2016,84,90,85,85,89,90,0.4,3 OL,David Andrews,25,2015,73,81,81,75,65,63,1.8,4 OL,Shaq Mason,24,2015,94,73,73,78,78,75,0.5,2 OL,Cole Croston,24,2017,70,35,83,62,63,62,0.3,3 OL,Marcus Cannon,29,2011,88,81,64,88,88,78,4.9,5 OL,Cameron Fleming,25,2014,79,59,71,73,61,64,1.1,1 DL,Deatrich Wise Jr.,23,2017,96,40,67,73,71,73,0.6,4 DL,Lawrence Guy,27,2011,64,64,81,71,73,71,2.7,4 DL,Cassius Marsh,25,2014,96,56,83,50,57,73,0.5,1 DL,Trey Flowers,24,2015,96,84,83,88,88,90,0.5,2 DL,Alan Branch,33,2007,74,78,67,87,83,67,3.3,2 DL,Vincent Valentine,23,2016,71,45,65,64,65,73,0.6,3 DL,Adam Butler,23,2017,85,35,78,78,81,73,0.3,3 DL,Malcom Brown,23,2015,92,68,68,73,73,70,1.8,2 LB,Shea McClellin,28,2012,84,63,71,68,61,71,2.4,2 LB,Elandon Roberts,23,2016,91,59,75,75,75,73,0.4,3 LB,Kyle Van Noy,26,2014,77,90,91,88,82,86,1.1,1 LB,Marquis Flowers,25,2014,98,85,81,86,90,86,0.4,1 LB,Dont'a Hightower,27,2012,80,87,87,95,87,81,7.1,4 LB,David Harris,33,2007,65,85,88,78,71,74,2,2 LB,Harvey Langi,25,2017,95,35,85,64,67,65,0.4,3 CB,Jonathan Jones,24,2016,84,35,63,70,95,37,0.3,2 CB,Johnson Bademosi,27,2012,66,45,83,83,85,60,2,1 CB,Malcolm Butler,27,2014,62,88,73,94,83,66,2.4,1 CB,Eric Rowe,25,2015,76,56,73,83,87,67,1,2 CB,Stephon Gilmore,27,2012,90,70,83,92,88,45,10.4,5 S,Brandon King,24,2015,91,45,70,76,83,40,0.4,1 S,Devin McCourty,30,2010,50,88,87,96,85,67,7.8,3 S,Duron Harmon,26,2013,70,61,78,83,81,59,3.4,4 S,Patrick Chung,30,2009,76,70,93,83,75,68,2.2,2 S,Jordan Richards,24,2015,80,40,85,76,75,70,0.7,2 S,Nate Ebner,29,2012,74,45,95,74,78,71,0.8,1 K,Stephen Gostkowski,33,2006,78,45,67,93,68,45,3.6,2 K,Ryan Allen,27,2013,78,40,71,87,65,40,1.7,2 END_PLAYERS ###################################################################### JETS New York Jets,NYJ QB,Josh McCown,38,2002,81,87,80,99,99,99,5.6,1 QB,Christian Hackenberg,22,2016,97,95,88,95,87,80,1,3 QB,Bryce Petty,26,2015,86,45,70,87,60,45,0.5,2 RB,Matt Forte,32,2008,44,70,83,87,78,88,3.1,2 RB,Elijah McGuire,23,2017,90,80,88,81,81,90,0.4,4 RB,Bilal Powell,29,2011,81,78,73,73,78,80,2.9,2 RB,Eric Tomlinson,25,2015,87,35,73,45,65,44,0.3,1 WR,Kalif Raymond,23,2016,95,35,71,64,93,67,0.3,1 WR,Jeremy Kerley,29,2011,83,73,75,78,75,74,0,1 WR,Robby Anderson,24,2016,88,60,68,68,93,66,0.3,2 WR,ArDarius Stewart,24,2017,94,82,95,90,83,88,0.7,4 WR,Jermaine Kearse,27,2012,67,73,88,73,85,73,4,2 WR,Charone Peake,25,2016,87,35,68,61,90,78,0.4,3 WR,Chad Hansen,22,2017,92,45,75,71,83,66,0.5,4 WR,Jordan Leggett,22,2017,72,45,71,70,68,66,0.5,4 WR,Austin S-Jenkins,25,2014,91,50,67,65,78,66,1.2,1 WR,Will Tye,26,2015,82,64,75,75,78,63,0.4,1 WR,Neal Sterling,25,2015,91,40,73,60,73,73,0.4,1 OL,Ben Ijalana,28,2011,82,45,73,75,62,60,3.8,2 OL,James Carpenter,28,2011,78,73,78,85,65,83,3.5,2 OL,Dakota Dozier,26,2014,96,88,88,80,84,83,0.4,1 OL,Jonotthan Harrison,26,2014,80,62,75,78,61,58,0.6,1 OL,Wesley Johnson,26,2014,74,60,85,70,61,61,1.7,1 OL,Thomas Hennessy,23,2017,88,80,80,85,85,86,0.3,3 OL,Brian Winters,26,2013,80,70,78,71,68,71,4.5,4 OL,Kelvin Beachum,28,2012,81,73,75,71,61,60,5.9,3 OL,Brent Qvale,26,2014,82,56,78,61,64,60,0.3,1 OL,Brandon Shell,25,2016,81,45,85,68,62,64,0.4,3 DL,Leonard Williams,23,2015,71,73,68,78,81,80,4.8,2 DL,Kony Ealy,26,2014,79,63,73,67,65,83,0.5,1 DL,Muhammad Wilkerson,28,2011,77,70,88,93,95,83,12.6,4 DL,Claude Pelon,25,2016,97,40,63,52,54,71,0.3,2 DL,Steve McLendon,31,2009,62,62,71,75,85,74,2.7,2 DL,Mike Pennel,26,2014,67,58,70,78,70,66,0.6,1 LB,Jordan Jenkins,23,2016,72,45,67,67,71,70,0.6,3 LB,Edmond Robinson,25,2015,95,35,70,61,60,66,0.4,2 LB,Darron Lee,23,2016,93,80,83,95,83,81,2.5,3 LB,Bruce Carter,29,2011,68,59,62,70,67,80,0.5,1 LB,Demario Davis,28,2012,81,67,73,68,73,81,1.5,1 LB,Julian Stanford,27,2012,77,45,65,64,65,78,0.5,1 LB,Lorenzo Mauldin,25,2015,85,56,71,64,64,70,0.6,2 LB,Josh Martin,26,2013,81,45,71,61,64,67,1.3,2 LB,Dylan Donahue,25,2017,81,35,81,61,67,62,0.4,4 CB,Marcus Williams,26,2014,71,64,81,81,78,37,1.7,1 CB,Derrick Jones,23,2017,82,35,73,73,85,40,0.4,4 CB,Darryl Roberts,27,2015,76,40,64,81,88,37,0.4,2 CB,Juston Burris,24,2016,81,85,85,86,81,95,0.5,3 CB,Morris Claiborne,27,2012,69,62,68,88,85,40,4.4,1 CB,Buster Skrine,28,2011,68,64,73,86,87,47,4.7,2 S,Rontez Miles,29,2013,71,52,83,78,73,70,0.3,1 S,Jamal Adams,22,2017,98,89,85,96,85,86,5.7,4 S,Marcus Maye,24,2017,67,50,75,78,87,86,1.5,4 S,Terrence Brooks,25,2014,84,50,70,81,87,47,0.4,1 K,Chandler Catanzaro,26,2014,86,40,68,95,68,40,0.6,1 K,Lachlan Edwards,25,2016,69,40,65,87,60,40,0.4,3 END_PLAYERS ###################################################################### TEXANS Houston Texans,HOU QB,Deshaun Watson,22,2017,96,90,87,81,94,91,3.4,4 QB,Tom Savage,27,2014,95,54,78,90,61,40,0.4,1 RB,Tyler Ervin,24,2016,90,40,71,60,88,71,0.5,3 RB,Jordan Todman,27,2011,70,45,68,63,83,80,0.5,1 RB,D'onta Foreman,21,2017,89,87,88,90,85,81,0.6,4 RB,Lamar Miller,26,2012,90,73,73,81,88,94,4.1,3 RB,Alfred Blue,26,2014,87,63,65,71,78,73,0.4,1 RB,Jay Prosch,25,2014,66,60,88,59,67,55,0.4,1 WR,Bruce Ellington,26,2014,99,45,83,71,87,80,0.4,1 WR,Andy Jones,23,2016,71,40,81,61,81,71,0.3,2 WR,Jaelen Strong,23,2015,96,90,80,85,87,88,0.6,2 WR,Braxton Miller,25,2016,82,45,73,68,87,80,0.6,3 WR,Will Fuller,23,2016,87,63,73,62,95,73,2.5,3 WR,DeAndre Hopkins,25,2013,94,85,90,88,88,86,2.6,5 WR,Ryan Griffin,27,2013,85,58,75,65,60,62,1.9,3 WR,Stephen Anderson,24,2016,86,35,73,60,71,62,0.3,2 WR,C.J. Fiedorowicz,26,2014,84,65,87,71,67,55,0.8,1 OL,Julie'n Davenport,22,2017,88,85,85,83,83,82,0.6,4 OL,Chris Clark,32,2008,53,70,65,75,63,58,2.2,1 OL,Duane Brown,32,2008,70,88,85,85,81,75,7.1,2 OL,Kyle Fuller,23,2017,87,40,81,67,61,60,0.4,4 OL,Xavier Su'a-Filo,26,2014,71,60,81,73,60,60,1.2,1 OL,Greg Mancz,25,2015,70,63,81,78,65,75,0.3,1 OL,Nick Martin,24,2016,84,80,85,83,81,84,1,3 OL,Jeff Allen,27,2012,82,57,67,78,60,70,4.7,3 OL,Derek Newton,30,2011,71,71,71,78,71,59,3,3 OL,Kendall Lamm,25,2015,83,45,81,62,61,61,0.3,1 OL,Breno Giacomini,32,2008,76,56,78,71,62,59,2.2,1 DL,Brandon Dunn,25,2014,85,45,73,63,65,65,0.5,2 DL,J.J. Watt,28,2011,85,99,87,99,99,86,11.7,5 DL,Christian Covington,24,2015,89,60,62,63,63,71,0.4,2 DL,Joel Heath,24,2016,91,45,73,68,67,71,0.3,2 DL,D.J. Reader,23,2016,98,45,75,78,71,68,0.4,3 DL,Carlos Watkins,24,2017,82,40,78,75,70,76,0.5,4 LB,Jadeveon Clowney,24,2014,77,71,65,70,70,88,6.8,2 LB,Brennan Scarlett,24,2016,68,40,64,59,62,67,0.3,2 LB,Ufomba Kamalu,25,2016,96,35,78,65,68,59,0.3,1 LB,Zach Cunningham,23,2017,76,52,85,68,67,76,0.9,4 LB,Brian Cushing,30,2009,70,73,87,68,71,76,6.4,3 LB,Dylan Cole,23,2017,76,35,78,67,71,70,0.3,3 LB,Brian Peters,29,2015,81,45,78,60,59,71,0.3,1 LB,Benardrick McKinney,25,2015,93,73,81,85,67,83,1.2,2 LB,Whitney Mercilus,27,2012,84,78,78,78,70,78,4.9,3 CB,Treston Decoud,24,2017,90,40,71,71,78,60,0.5,4 CB,Kareem Jackson,29,2010,79,70,70,81,83,47,6.7,2 CB,Johnathan Joseph,33,2006,63,78,71,92,83,44,4.2,1 CB,Marcus Burley,27,2013,69,45,78,76,88,40,1.1,1 CB,Kevin Johnson,25,2015,99,63,81,90,81,55,2.4,2 S,Marcus Gilchrist,29,2011,78,60,83,88,78,80,2.4,1 S,Andre Hal,25,2014,82,63,75,86,88,43,0.5,1 S,Corey Moore,24,2015,98,57,81,74,78,53,0.3,1 S,Eddie Pleasant,29,2012,76,60,87,76,78,70,0.7,1 S,Kurtis Drummond,25,2015,68,50,75,78,73,40,0.3,1 K,Ka'lmi Fairbairn,23,2016,94,35,65,81,75,35,0.3,2 K,Shane Lechler,41,2000,64,56,67,81,75,56,1.6,1 END_PLAYERS ###################################################################### COLTS Indianapolis Colts,IND QB,Andrew Luck,28,2012,90,83,95,95,88,87,19.4,5 QB,Scott Tolzien,30,2011,79,45,85,70,62,40,1.3,1 QB,Jacoby Brissett,24,2016,75,45,85,93,61,70,0.6,3 RB,Frank Gore,28,2012,91,99,85,95,88,81,2.5,1 RB,Robert Turbin,28,2012,71,59,78,73,85,80,0.8,2 RB,Matt Jones,24,2015,77,60,65,65,83,80,0.6,2 RB,Marlon Mack,21,2017,79,45,78,60,83,74,0.5,4 RB,Erik Swoope,25,2014,81,40,65,58,65,73,0.3,1 WR,Kamar Aiken,28,2011,76,65,68,75,83,74,2.3,1 WR,T.Y. Hilton,28,2012,86,90,85,83,93,98,9.2,4 WR,Donte Moncrief,24,2014,91,64,78,81,88,74,0.7,1 WR,Quan Bray,24,2015,88,85,80,80,83,86,0.3,1 WR,Matt Hazel,25,2014,74,40,73,62,81,66,0.4,2 WR,Chester Rogers,23,2016,88,45,73,67,83,71,0.3,2 WR,Darrell Daniels,23,2017,70,35,70,60,62,65,0.3,3 WR,Brandon Williams,30,2013,51,40,65,58,75,62,0.6,1 WR,Jack Doyle,27,2013,65,65,71,78,62,53,3.9,3 OL,Anthony Castonzo,29,2011,90,83,73,83,81,70,7.2,3 OL,Le'Raven Clark,24,2016,98,90,83,87,87,89,0.6,3 OL,Jeremy Vujnovich,27,2014,79,35,68,85,60,63,0.3,1 OL,Deyshawn Bond,23,2017,88,85,82,88,93,85,0.3,3 OL,Luke Rhodes,25,2016,67,40,81,70,35,35,0.3,1 OL,Ian Silberman,25,2015,93,45,73,67,65,60,0.3,1 OL,Ryan Kelly,24,2016,89,81,83,85,84,81,2.5,3 OL,Jack Mewhort,26,2014,70,70,81,83,75,71,0.7,1 OL,Joe Haeg,24,2016,69,57,87,70,68,59,0.4,3 OL,Denzelle Good,26,2015,72,60,64,78,63,60,0.4,2 DL,Henry Anderson,26,2015,64,65,67,70,73,74,0.5,2 DL,Margus Hunt,30,2013,63,45,71,73,67,76,1.3,2 DL,Johnathan Hankins,25,2013,97,68,70,90,87,71,5.6,3 DL,Hassan Ridgeway,23,2016,76,40,63,78,75,78,0.5,3 DL,Grover Stewart,24,2017,66,40,83,85,73,67,0.5,4 DL,Al Woods,30,2010,67,59,68,90,85,68,1.3,2 LB,Barkevious Mingo,27,2013,67,59,78,70,63,81,1.6,1 LB,John Simon,27,2013,74,62,81,70,71,73,2.8,3 LB,Jon Bostic,26,2013,92,56,75,63,61,71,0.4,1 LB,Antonio Morrison,23,2016,86,50,70,68,68,70,0.5,3 LB,Jeremiah George,25,2014,89,45,78,71,68,71,0.4,2 LB,Anthony Walker Jr.,22,2017,96,80,90,80,68,66,0.5,4 LB,Tarell Basham,23,2017,76,45,83,63,64,67,0.7,4 LB,Jabaal Sheard,28,2011,85,63,85,81,71,73,5.3,3 CB,Kenny Moore,22,2017,75,35,78,65,78,68,0.3,3 CB,Quincy Wilson,21,2017,76,45,81,74,81,43,1.3,4 CB,Chris Milton,25,2016,79,40,83,73,88,59,0.3,1 CB,Pierre Desir,27,2014,85,45,75,81,81,40,0.5,1 CB,Rashaan Melvin,28,2013,87,58,70,83,85,40,0.5,1 CB,Nate Hairston,23,2017,99,40,75,74,81,53,0.5,4 CB,Vontae Davis,29,2009,68,71,85,96,83,60,6.4,1 S,Malik Hooker,21,2017,93,54,73,81,81,68,3.1,4 S,Darius Butler,31,2009,54,68,85,88,83,43,2.8,1 S,T.J. Green,22,2016,79,45,75,78,90,71,0.8,3 S,Matthias Farley,25,2016,72,40,81,71,83,66,0.3,2 S,Clayton Geathers,25,2015,77,65,78,81,78,78,0.5,2 K,Adam Vinatieri,45,1996,57,60,71,81,90,60,1.9,1 K,Rigoberto Sanchez,23,2017,68,35,75,71,64,35,0.3,3 END_PLAYERS ###################################################################### JAGUARS Jacksonville Jaguars,JAX QB,Blake Bortles,25,2014,99,83,95,90,83,87,7,2 QB,Chad Henne,32,2008,57,60,83,81,60,37,2.5,1 RB,Leonard Fournette,22,2017,92,91,88,90,95,92,7,4 RB,Chris Ivory,29,2010,50,73,64,75,83,83,4.6,4 RB,T.J. Yeldon,24,2015,66,63,70,78,81,86,1.3,2 RB,Corey Grant,26,2015,63,45,62,60,97,71,0.3,1 RB,Tommy Bohanon,27,2013,76,56,73,58,61,57,0.4,1 WR,Rashad Greene,25,2015,74,56,70,63,81,68,0.4,2 WR,Keelan Cole,24,2017,84,90,83,98,81,85,0.3,3 WR,Marqise Lee,26,2014,90,70,78,78,83,78,1.1,1 WR,Dede Westbrook,24,2017,88,90,81,85,90,84,0.6,4 WR,Allen Hurns,26,2014,87,78,83,68,81,76,5.1,4 WR,Arrelious Benn,29,2010,69,58,65,60,71,71,0.6,2 WR,Allen Robinson,24,2014,90,85,88,83,85,86,0.7,1 WR,James O'Shaughnessy,25,2015,77,40,67,64,70,70,0.4,2 WR,Ben Koyack,24,2015,89,45,75,63,64,55,0.3,1 WR,Marcedes Lewis,33,2006,71,73,75,61,60,53,2.5,2 WR,Mychal Rivera,27,2013,73,60,81,67,63,62,1,2 OL,Josh Wells,26,2014,67,45,71,70,70,61,0.5,2 OL,Cam Robinson,22,2017,88,90,90,87,85,87,1.6,4 OL,Earl Watford,27,2013,65,61,85,73,60,57,1.6,2 OL,Patrick Omameh,28,2013,74,64,78,68,63,73,0.6,1 OL,Tyler Shatley,26,2014,99,45,71,95,61,60,0.7,2 OL,Brandon Linder,25,2014,78,83,81,83,83,75,5.6,6 OL,Matt Overton,32,2010,63,45,70,50,40,57,0.5,1 OL,A.J. Cann,26,2015,84,63,78,83,61,67,0.7,2 OL,Jermey Parnell,31,2009,62,67,68,71,63,67,4,3 OL,William Poehls,26,2014,78,35,73,78,63,60,0.3,1 DL,Dawuane Smoot,22,2017,80,40,85,68,64,80,0.8,4 DL,Yannick Ngakoue,22,2016,76,56,78,65,68,86,0.7,3 DL,Dante Fowler Jr.,23,2015,96,56,64,60,64,88,6.1,2 DL,Michael Bennett,24,2015,79,45,67,64,64,71,0.4,2 DL,Calais Campbell,31,2008,74,83,87,78,87,88,10.3,4 DL,Eli Ankou,23,2017,92,35,78,78,81,73,0.3,3 DL,Abry Jones,26,2013,86,70,71,81,73,66,2.4,4 DL,Malik Jackson,27,2012,89,70,78,70,81,78,10,5 DL,Sheldon Day,23,2016,88,85,88,85,80,86,0.6,3 LB,Lerentee McCray,27,2013,84,52,65,60,60,71,1.3,1 LB,Myles Jack,22,2016,76,60,70,68,65,83,1.4,3 LB,Donald Payne,23,2017,77,35,83,64,60,71,0.3,3 LB,Paul Posluszny,33,2007,47,90,88,83,71,80,3.6,1 LB,Blair Brown,23,2017,67,40,85,75,75,71,0.5,4 LB,Telvin Smith,26,2014,95,73,73,68,60,83,0.6,1 CB,Lafayette Pitts,25,2016,86,85,88,81,85,80,0.3,1 CB,Tyler Patmon,26,2014,69,45,70,78,81,40,0.4,1 CB,Jalen Myrick,22,2017,75,40,70,78,97,59,0.4,4 CB,Aaron Colvin,26,2014,81,67,64,88,83,47,0.6,1 CB,A.J. Bouye,26,2013,89,83,88,92,83,97,9.7,5 CB,Jalen Ramsey,23,2016,86,85,88,92,90,88,6,3 S,Peyton Thompson,27,2012,80,45,70,76,81,40,0.4,1 S,Tashaun Gipson,27,2012,80,63,85,81,71,62,5,4 S,Barry Church,29,2010,69,68,93,78,73,83,4.1,4 S,Jarrod Wilson,23,2016,96,40,81,71,78,53,0.3,2 K,Jason Myers,26,2015,69,45,60,97,71,45,0.3,1 K,Brad Nortman,28,2012,71,45,71,85,68,45,1.4,3 END_PLAYERS ###################################################################### TITANS Tennessee Titans,TEN QB,Matt Cassel,35,2005,43,63,78,71,60,37,1.6,2 QB,Marcus Mariota,24,2015,99,85,93,83,87,70,6.3,2 RB,David Fluellen,25,2014,65,35,75,63,68,78,0.4,2 RB,Demarco Murray,29,2011,53,95,75,83,83,96,3.9,3 RB,Derrick Henry,23,2016,92,70,85,83,81,83,1.2,3 RB,Jalston Fowler,27,2015,68,60,60,62,62,63,0.5,2 WR,Eric Decker,30,2010,78,83,85,88,75,74,4.1,1 WR,Eric Weems,32,2007,42,65,70,64,73,73,0.8,2 WR,Corey Davis,22,2017,82,57,87,68,85,80,6.6,4 WR,Taywan Taylor,22,2017,88,85,88,88,87,86,0.7,4 WR,Tajae Sharpe,23,2016,77,62,78,75,78,70,0.5,3 WR,Harry Douglas,33,2008,55,60,75,70,81,73,2,1 WR,Rishard Matthews,28,2012,60,78,83,83,83,73,3.7,2 WR,Jonnu Smith,22,2017,81,40,78,61,73,67,0.6,4 WR,Phillip Supernaw,27,2012,66,57,73,62,67,68,1.1,2 WR,Delanie Walker,33,2006,52,93,73,87,73,74,3.3,2 OL,Taylor Lewan,26,2014,94,83,83,87,93,78,3.6,2 OL,Dennis Kelly,27,2012,81,52,81,75,70,58,0.9,3 OL,Quinton Spain,26,2015,70,68,83,71,71,75,0.3,1 OL,Beau Brinkley,27,2012,86,35,71,56,40,45,0.8,3 OL,Brian Schwenke,26,2013,86,60,85,87,61,70,1,1 OL,Ben Jones,28,2012,63,78,88,81,75,73,2.8,3 OL,Corey Levin,23,2017,96,40,75,73,64,60,0.4,4 OL,Josh Kline,28,2013,74,70,71,70,70,71,1.3,1 OL,Jack Conklin,23,2016,86,83,88,88,88,88,4,3 DL,David King,28,2013,70,45,75,70,67,74,0.4,1 DL,DaQuan Jones,26,2014,67,71,70,78,83,74,0.7,1 DL,Karl Klug,29,2011,61,73,71,67,67,73,1.6,2 DL,Jurrell Casey,28,2011,68,78,81,88,90,78,9.2,6 DL,Austin Johnson,23,2016,78,45,81,67,71,73,1.2,3 DL,Sylvester Williams,29,2013,76,60,71,75,70,70,4.3,3 LB,Erik Walden,32,2008,67,65,78,65,64,70,1.9,1 LB,Aaron Wallace,24,2016,81,35,75,60,65,68,0.4,3 LB,Derrick Morgan,28,2010,73,67,81,62,67,70,5.2,2 LB,Wesley Woodyard,31,2008,50,75,88,83,64,81,2.3,3 LB,Daren Bates,27,2013,77,40,83,64,59,68,1.4,3 LB,Nate Palmer,28,2013,86,50,75,65,67,70,0.8,2 LB,Jayon Brown,22,2017,73,40,78,68,65,68,0.5,4 LB,Avery Williamson,25,2014,71,65,81,88,78,74,0.6,1 LB,Josh Carraway,23,2017,96,40,78,60,63,66,0.4,4 LB,Brian Orakpo,31,2009,72,71,75,73,83,76,5.6,2 LB,Kevin Dodd,25,2016,92,58,73,70,70,71,1.5,3 CB,Kalan Reed,24,2016,84,40,81,74,83,40,0.3,1 CB,Logan Ryan,26,2013,71,73,88,86,81,73,6.7,3 CB,Brice McCain,31,2009,53,63,73,86,85,40,2,1 CB,Tye Smith,24,2015,92,40,78,71,75,37,0.4,2 CB,Adoree' Jackson,22,2017,75,45,78,81,88,59,2.8,4 CB,LeShaun Sims,24,2016,66,45,75,78,81,37,0.4,3 S,Johnathan Cyprien,27,2013,72,81,85,90,83,76,4.4,4 S,Curtis Riley,25,2015,75,35,78,73,83,47,0.3,1 S,Kevin Byard,24,2016,77,58,83,80,83,74,0.7,3 S,Brynden Trawick,28,2013,75,45,81,76,73,71,1.5,2 S,Da'Norris Searcy,29,2011,68,61,81,80,78,68,4.4,2 K,Ryan Succop,31,2009,63,56,73,85,88,56,1.8,1 K,Brett Kern,31,2008,54,45,57,85,70,45,2.2,3 END_PLAYERS ###################################################################### BRONCOS Denver Broncos,DEN QB,Paxton Lynch,23,2016,89,85,88,90,80,86,2.3,3 QB,Brock Osweiler,27,2012,66,60,88,97,62,40,0,1 QB,Trevor Siemian,26,2015,89,67,73,81,64,45,0.4,2 RB,C.J. Anderson,26,2013,67,73,75,90,83,94,2.8,3 RB,Jamaal Charles,31,2008,64,71,68,73,85,86,1.6,1 RB,Devontae Booker,25,2016,64,62,85,67,78,86,0.5,3 RB,De'Angelo Henderson,25,2017,88,80,83,87,85,86,0.4,4 RB,Andy Janovich,24,2016,67,60,73,60,64,63,0.4,3 WR,Jordan Taylor,25,2015,88,45,78,68,81,62,0.3,1 WR,Bennie Fowler,26,2014,93,57,64,65,87,71,0.4,1 WR,Demaryius Thomas,30,2010,61,85,85,70,87,81,10.1,3 WR,Isaiah McKenzie,22,2017,98,80,88,85,88,87,0.4,4 WR,Cody Latimer,25,2014,92,35,73,63,85,70,0.7,1 WR,Emmanuel Sanders,30,2010,63,93,75,99,88,73,8.6,3 WR,Jeff Heuerman,25,2015,87,45,73,64,64,60,0.5,2 WR,Virgil Green,29,2011,76,58,67,62,75,74,2.1,1 WR,Jake Butt,22,2017,79,45,71,70,67,65,0.5,4 WR,A.J. Derby,26,2015,77,40,71,65,68,67,0.4,2 OL,Donald Stephenson,29,2012,85,60,75,71,61,56,3.5,2 OL,Garett Bolles,25,2017,91,45,83,85,67,71,2.7,4 OL,Max Garcia,26,2015,76,64,75,83,63,65,0.5,2 OL,Allen Barbre,33,2007,56,71,73,71,81,67,1,1 OL,Casey Kreiter,27,2014,68,45,78,54,35,59,0.3,1 OL,Connor McGovern,24,2016,88,80,85,88,84,88,0.5,3 OL,Matthew Paradis,28,2014,60,81,73,83,97,75,0.4,1 OL,Ronald Leary,28,2012,70,73,68,78,78,73,6.2,4 OL,Billy Turner,26,2014,88,60,73,73,58,62,0.5,1 OL,Menelik Watson,29,2013,67,61,70,71,62,60,4.6,3 DL,Zach Kerr,27,2014,68,45,62,78,73,68,1.2,2 DL,Shelby Harris,26,2014,78,40,70,71,73,76,0.4,1 DL,Derek Wolfe,27,2012,65,70,83,83,85,78,6.9,3 DL,Jared Crick,28,2012,84,64,67,67,70,71,1.6,1 DL,Adam Gotsis,25,2016,83,45,71,68,70,70,0.8,3 DL,Domata Peko,33,2006,63,68,73,85,70,59,2.7,2 DL,Kyle Peko,24,2017,87,40,78,78,70,70,0.3,1 LB,Kasim Edebali,28,2014,85,40,73,59,60,65,0.9,1 LB,Shaquil Barrett,25,2014,81,73,78,64,62,73,0.4,1 LB,Todd Davis,25,2014,79,64,85,75,71,73,1.7,1 LB,Zaire Anderson,25,2015,74,40,73,67,64,66,0.3,1 LB,Corey Nelson,25,2014,77,45,68,64,64,71,0.4,1 LB,Brandon Marshall,28,2012,80,81,81,85,73,81,5.6,4 LB,Shane Ray,24,2015,84,81,81,81,92,86,2.2,2 LB,Von Miller,28,2011,66,88,88,93,87,88,14.1,5 LB,Demarcus Walker,23,2017,85,45,87,62,64,63,1.1,4 CB,Chris Harris Jr.,28,2011,76,90,87,98,87,45,6.6,3 CB,Brendan Langley,23,2017,82,40,81,74,87,55,0.6,4 CB,Bradley Roby,25,2014,88,60,71,88,90,40,1.6,1 CB,Lorenzo Doss,23,2015,97,45,78,73,83,37,0.4,2 CB,Aqib Talib,31,2008,55,90,81,96,81,47,6.6,3 S,Darian Stewart,29,2010,69,73,83,86,73,63,4.8,4 S,William Parks,23,2016,87,45,78,73,73,71,0.4,3 S,Jamal Carter,23,2017,78,35,83,70,73,68,0.3,3 S,Justin Simmons,24,2016,75,45,75,80,81,71,0.6,3 K,Brandon McManus,26,2014,82,45,73,99,85,45,1.7,1 K,Riley Dixon,24,2016,96,40,75,81,64,40,0.4,3 END_PLAYERS ###################################################################### CHIEFS Kansas City Chiefs,KC QB,Alex Smith,33,2005,64,71,87,75,70,45,10.9,2 QB,Patrick Mahomes,22,2017,86,85,88,99,83,83,4.1,4 QB,Tyler Bray,26,2013,70,40,70,90,57,37,0.6,1 RB,Kareem Hunt,22,2017,82,85,83,85,88,88,0.6,4 RB,Spencer Ware,26,2013,74,73,81,85,78,90,1.2,2 RB,Charcandric West,26,2014,61,60,68,68,87,81,1,2 RB,Anthony Sherman,29,2011,63,61,85,56,64,55,1.4,1 WR,Albert Wilson,25,2014,70,62,73,70,87,71,1.1,1 WR,Chris Conley,25,2015,87,60,73,70,90,71,0.6,2 WR,Jehu Chesson,24,2017,79,45,78,71,85,70,0.5,4 WR,Demarcus Robinson,23,2016,76,40,75,60,81,67,0.5,3 WR,Tyreek Hill,23,2016,87,81,80,88,99,83,0.4,3 WR,De'Anthony Thomas,24,2014,81,56,61,63,88,80,0.5,1 WR,Travis Kelce,28,2013,84,90,81,85,83,80,7.1,5 WR,Demetrius Harris,26,2013,84,56,70,62,78,73,1.1,2 WR,Ross Travis,24,2015,87,35,78,60,71,67,0.3,2 OL,Cameron Erving,25,2015,73,60,75,71,61,60,2.3,2 OL,Eric Fisher,26,2013,91,71,87,81,75,60,9.1,5 OL,Parker Ehinger,25,2016,96,50,70,65,67,60,0.6,3 OL,Bryan Witzmann,27,2014,78,45,73,65,67,60,0.3,1 OL,Mitch Morse,25,2015,75,78,73,88,65,68,1,2 OL,James Winchester,28,2013,70,35,60,52,35,35,0.6,5 OL,Zach Fulton,26,2014,94,62,75,73,61,70,0.5,1 OL,Laurent Duvernay-Tard,26,2014,78,65,83,88,62,73,5.7,6 OL,Mitchell Schwartz,28,2012,62,75,78,75,65,71,5,4 DL,Rakeem Nunez-Roches,24,2015,69,45,65,65,71,70,0.4,1 DL,Chris Jones,23,2016,76,75,75,81,81,81,1.4,3 DL,Allen Bailey,28,2011,61,62,83,81,73,76,5.2,2 DL,Jarvis Jenkins,29,2011,72,62,62,87,75,65,0.5,1 DL,Bennie Logan,28,2013,75,70,71,83,85,71,5.6,1 DL,Roy Miller,30,2009,69,68,75,78,78,67,0.9,1 LB,Frank Zombo,30,2010,62,60,78,63,60,67,0.9,2 LB,Justin Houston,28,2011,86,85,78,88,85,81,13.1,4 LB,Dadi Nicolas,25,2016,77,45,81,61,60,74,0.4,3 LB,Ramik Wilson,25,2015,68,68,81,73,68,81,0.4,1 LB,Reggie Ragland,24,2016,98,58,83,68,68,76,1.3,3 LB,Ukeme Eligwe,23,2017,74,40,71,70,67,67,0.4,4 LB,Kevin Pierre-Louis,26,2014,79,45,68,68,70,76,0.5,1 LB,Terrance Smith,24,2016,80,40,67,63,64,68,0.3,1 LB,Derrick Johnson,35,2005,54,85,78,81,68,80,5.7,2 LB,Tamba Hali,34,2006,44,75,83,67,78,71,5.4,2 LB,Tanoh Kpassagnon,23,2017,82,45,73,62,67,65,0.9,4 LB,Dee Ford,26,2014,84,63,75,61,65,81,2.8,2 CB,D.J. White,24,2016,70,40,83,76,83,45,0.4,3 CB,Terrance Mitchell,25,2014,97,60,83,86,83,40,0.4,1 CB,Kenneth Acker,25,2014,84,45,68,80,83,37,0.4,1 CB,Steven Nelson,24,2015,92,60,87,83,85,55,0.5,2 CB,Marcus Peters,24,2015,82,81,88,94,85,86,2.3,2 CB,Phillip Gaines,26,2014,86,52,71,83,90,37,0.5,1 S,Eric Murray,23,2016,81,45,83,76,83,66,0.6,3 S,Ron Parker,30,2011,65,75,70,90,85,63,3.8,3 S,Eric Berry,29,2010,66,90,85,96,87,80,10.6,6 S,Daniel Sorensen,27,2014,79,61,85,78,71,68,3.1,4 K,Cairo Santos,26,2014,86,45,71,95,81,45,1.1,1 K,Dustin Colquitt,35,2005,42,57,83,83,78,57,2.8,1 END_PLAYERS ###################################################################### RAIDERS Oakland Raiders,OAK QB,Derek Carr,26,2014,95,88,87,95,85,85,14.6,6 QB,E.J. Manuel,27,2013,97,45,83,88,61,63,0.5,1 QB,Connor Cook,24,2016,89,50,87,85,61,40,0.6,3 RB,Marshawn Lynch,27,2013,82,85,83,95,93,94,2.8,2 RB,Jalen Richard,24,2016,89,63,78,78,85,83,0.3,2 RB,DeAndre Washington,24,2016,77,54,85,65,87,83,0.5,3 RB,Jamize Olawale,28,2012,59,64,75,62,78,71,1.2,2 WR,Cordarrelle Patterson,26,2013,85,62,83,75,88,96,2.7,2 WR,Amari Cooper,23,2015,76,81,83,85,88,90,5.8,2 WR,Michael Crabtree,30,2009,80,85,87,83,88,80,5.5,3 WR,Seth Roberts,26,2014,84,65,75,65,87,70,0.2,3 WR,Johnny Holton,26,2016,77,35,78,60,88,74,0.3,2 WR,Jared Cook,30,2009,54,70,71,71,75,68,3.3,2 WR,Lee Smith,30,2011,82,60,71,56,59,55,1.4,1 WR,Clive Walford,26,2015,87,61,75,70,64,65,0.6,2 OL,Donald Penn,34,2006,75,97,75,88,95,75,3.7,1 OL,Jylan Ware,24,2017,94,40,78,73,63,60,0.4,4 OL,David Sharpe,22,2017,84,45,75,78,67,61,0.6,4 OL,Denver Kirkland,23,2016,87,45,73,73,73,60,0.3,1 OL,Kelechi Osemele,28,2012,67,95,73,90,85,88,7.4,4 OL,Jon Condo,36,2005,69,68,71,58,40,45,0.7,1 OL,Jon Feliciano,25,2015,78,45,78,67,62,61,0.5,2 OL,Rodney Hudson,28,2011,81,83,85,81,83,88,5.6,3 OL,Gabe Jackson,26,2014,82,71,75,88,71,81,5.9,6 OL,Vadal Alexander,23,2016,90,45,78,75,61,63,0.4,3 OL,Marshall Newhouse,29,2010,80,60,73,75,60,60,1.1,2 DL,James Cowser,27,2016,80,35,71,67,65,76,0.3,1 DL,Khalil Mack,26,2014,84,93,95,73,85,96,5.9,2 DL,Denico Autry,27,2014,77,54,70,60,64,73,1.1,1 DL,Mario Edwards Jr.,23,2015,71,60,63,81,78,74,1.4,2 DL,Treyvon Hester,25,2017,99,40,73,73,67,66,0.4,4 DL,Eddie Vanderdoes,23,2017,95,45,73,83,73,76,0.6,4 DL,Jihad Ward,23,2016,98,56,83,64,70,81,1.2,3 DL,Justin Ellis,27,2014,68,58,70,71,78,73,0.7,1 DL,Darius Latham,23,2016,80,80,81,88,88,88,0.3,2 LB,Bruce Irvin,30,2012,60,67,87,75,65,81,6.6,3 LB,Xavier Woodson-Luste,22,2017,77,35,73,62,64,60,0.3,3 LB,Marquel Lee,22,2017,86,40,85,70,67,65,0.5,4 LB,Tyrell Adams,25,2015,66,40,78,67,60,67,0.3,1 LB,Nicholas Morrow,22,2017,80,35,73,62,64,60,0.3,3 LB,Cory James,24,2016,76,45,81,68,63,73,0.4,3 CB,Gareon Conley,22,2017,66,52,81,81,85,47,2.5,4 CB,Travis Carrie,27,2014,77,57,71,88,87,59,0.5,1 CB,Dexter McDonald,26,2015,65,35,70,74,87,37,0.4,2 CB,Sean Smith,30,2009,73,71,81,94,78,55,7.1,3 CB,David Amerson,26,2013,89,71,75,90,85,60,4.2,4 CB,Antonio Hamilton,24,2016,69,35,75,73,85,40,0.3,2 S,Obi Melifonwu,23,2017,89,45,83,83,88,73,0.9,4 S,Keith McGill,28,2014,73,45,65,78,83,67,0.5,1 S,Reggie Nelson,34,2007,61,64,90,83,78,70,2.7,1 S,Erik Harris,27,2015,83,40,78,70,73,60,1,1 S,Karl Joseph,24,2016,97,61,73,83,78,76,2.9,3 S,Shalom Luani,23,2017,93,40,81,71,78,55,0.4,4 K,Sebastian Janikowski,39,2000,48,45,68,99,78,45,3.6,1 K,Marquette King,29,2012,64,57,71,100,88,57,2.1,4 END_PLAYERS ###################################################################### CHARGERS Los Angeles Chargers,LAC QB,Kellen Clemens,34,2006,46,59,71,71,61,37,0.7,1 QB,Cardale Jones,25,2016,70,45,85,97,54,65,0.5,3 QB,Philip Rivers,28,2012,88,93,99,83,85,87,15.8,3 RB,Austin Ekeler,22,2017,74,35,61,62,65,68,0.3,3 RB,Melvin Gordon,24,2015,69,81,81,83,88,94,2.6,2 RB,Branden Oliver,26,2014,72,59,75,75,81,86,0.5,1 RB,Derek Watt,25,2016,80,80,85,80,87,85,0.4,3 WR,Tyrell Williams,25,2015,93,70,71,71,87,76,0.3,1 WR,Travis Benjamin,28,2012,87,88,85,85,88,88,4.5,3 WR,Dontrelle Inman,28,2014,71,63,75,81,81,78,1.7,1 WR,Keenan Allen,25,2013,87,85,65,88,83,81,6.8,4 WR,Mike Williams,23,2017,74,60,81,78,83,80,5,4 WR,Sean Culkin,24,2017,93,40,93,60,57,40,0.3,3 WR,Antonio Gates,37,2003,40,85,68,83,62,71,3.8,1 WR,Sean McGrath,30,2012,83,60,75,60,62,55,0.4,1 WR,Hunter Henry,23,2016,86,65,87,75,71,66,1.4,3 OL,Sam Tevi,23,2017,68,40,78,64,64,60,0.4,4 OL,Russell Okung,29,2010,76,65,71,81,68,60,9.8,4 OL,Chris Hairston,28,2011,81,59,75,78,62,60,1.1,1 OL,Matt Slauson,31,2009,67,87,78,83,70,63,1.4,1 OL,Max Tuerk,23,2016,71,45,75,64,68,62,0.7,3 OL,Mike Windt,31,2010,62,59,70,60,40,45,0.8,4 OL,Spencer Pulley,24,2016,87,35,75,70,64,61,0.3,2 OL,Dan Feeney,23,2017,84,52,71,87,73,65,0.7,4 OL,Kenny Wiggins,29,2011,86,60,75,71,64,57,0.6,1 OL,Michael Schofield,27,2014,78,61,71,70,60,67,0.7,1 OL,Joe Barksdale,29,2011,72,60,73,81,61,60,4.1,3 DL,Isaac Rochell,22,2017,78,40,90,81,81,76,0.4,4 DL,Darius Philon,23,2015,90,40,71,64,65,78,0.4,2 DL,Joey Bosa,22,2016,78,68,78,68,65,81,6.7,3 DL,Chris McCain,26,2014,89,52,75,45,52,78,0.4,1 DL,Melvin Ingram,28,2012,71,73,78,70,71,88,11.6,4 DL,Jeremiah Attaochu,24,2014,95,63,71,60,62,83,0.9,1 DL,Tenny Palepoi,27,2014,71,54,68,83,81,73,0.4,1 DL,Damion Square,28,2013,77,54,68,65,67,73,1.6,2 DL,Corey Liuget,27,2011,71,68,83,87,87,80,7.3,4 DL,Brandon Mebane,32,2007,69,78,75,87,85,71,3.4,2 LB,James Onwualu,23,2017,82,40,68,57,57,70,0.3,3 LB,Kyle Emanuel,26,2015,98,57,75,59,64,70,0.4,2 LB,Hayes Pullard,25,2015,98,52,78,62,60,73,0.4,2 LB,Korey Toomer,29,2012,79,63,61,63,62,88,1.1,1 LB,Nigel Harris,23,2017,91,35,73,62,64,60,0.3,3 LB,Jatavis Brown,23,2016,95,64,81,75,78,83,0.4,3 CB,Desmond King,23,2017,69,45,88,76,75,53,0.5,4 CB,Trevor Williams,24,2016,99,40,73,76,87,40,0.3,1 CB,Jeff Richards,26,2017,71,35,59,70,73,57,0.3,3 CB,Jason Verrett,26,2014,68,70,81,96,90,43,2.7,2 CB,Casey Hayward,28,2012,62,81,70,90,83,43,3.7,2 S,Tre Boston,25,2014,89,64,78,83,78,73,0.6,1 S,Dexter McCoil,26,2015,84,45,85,73,75,62,0.3,2 S,Adrian Phillips,25,2014,88,52,78,78,78,63,0.4,1 S,Jahleel Addae,27,2013,71,70,83,83,70,71,3.8,4 S,Rayshawn Jenkins,23,2017,94,45,71,78,83,71,0.6,4 K,Younghoe Koo,23,2017,77,40,68,78,78,40,0.3,3 K,Drew Kaser,24,2016,93,40,60,95,60,40,0.4,3 END_PLAYERS ###################################################################### BEARS Chicago Bears,CHI QB,Mark Sanchez,31,2009,64,57,81,78,60,40,1.7,1 QB,Mitchell Trubisky,23,2017,88,82,90,90,85,78,7.5,4 QB,Mike Glennon,28,2013,89,62,85,90,63,37,10,3 RB,Jordan Howard,23,2016,94,83,73,87,85,92,0.4,3 RB,Taquan Mizzell,24,2017,97,40,73,59,78,74,0.3,3 RB,Benny Cunningham,27,2013,74,61,78,67,78,73,0.6,1 RB,Tarik Cohen,22,2017,84,40,73,63,88,81,0.6,4 RB,Mike Burton,25,2015,73,70,71,56,67,59,0.4,2 WR,Deonte Thompson,28,2012,79,56,65,63,88,70,0.6,1 WR,Josh Bellamy,28,2012,87,60,78,62,83,67,0.5,1 WR,Kevin White,25,2015,86,40,70,68,90,74,4.2,2 WR,Kendall Wright,28,2012,69,63,87,73,85,83,1.4,1 WR,Tre McBride,25,2015,93,35,75,75,87,81,0.3,1 WR,Markus Wheaton,26,2013,70,62,83,70,85,74,3.9,2 WR,Cameron Meredith,25,2015,95,75,78,83,83,78,0.3,1 WR,Zach Miller,33,2009,44,68,65,90,73,70,2,1 WR,Dion Sims,26,2013,72,62,65,70,65,63,4,3 WR,Daniel Brown,25,2015,80,40,75,63,75,68,0.4,1 WR,Adam Shaheen,24,2017,88,85,85,88,87,81,1.3,4 OL,Charles Leno Jr.,26,2014,98,62,73,67,60,67,0.4,5 OL,Bradley Sowell,28,2012,66,59,70,70,60,59,0.5,1 OL,Kyle Long,29,2013,73,73,87,71,62,75,6.3,5 OL,Josh Sitton,31,2008,70,88,71,87,75,88,4.8,2 OL,Hroniss Grasu,26,2015,89,60,75,63,62,60,0.6,2 OL,Cody Whitehair,25,2016,95,81,83,78,75,81,0.9,3 OL,Eric Kush,28,2013,87,56,73,64,62,64,0.8,2 OL,Tom Compton,28,2012,72,58,85,85,65,60,1.7,1 OL,Bobby Massie,28,2012,82,61,81,70,61,61,4.1,2 DL,Akiem Hicks,28,2012,80,73,75,78,81,76,3.4,1 DL,Jonathan Bullard,24,2016,82,40,78,65,70,81,0.7,3 DL,Mitch Unrein,30,2010,59,60,71,71,71,71,0.8,1 DL,John Jenkins,28,2013,89,50,68,88,78,68,0.6,1 DL,Eddie Goldman,23,2015,70,67,71,81,83,67,1.3,2 LB,Roy Robertson-Har,24,2016,74,40,73,65,68,62,0.3,2 LB,Pernell McPhee,29,2011,66,73,78,70,83,70,5.2,3 LB,Willie Young,32,2010,55,67,73,61,64,71,2.9,2 LB,Christian Jones,26,2014,96,60,83,65,62,76,1.3,1 LB,Nick Kwiatkoski,24,2016,77,59,78,73,70,76,0.5,3 LB,Danny Trevathan,27,2012,62,75,78,88,67,78,4.6,3 LB,Jerrell Freeman,31,2012,74,85,81,93,73,78,2.8,2 LB,Sam Acho,29,2011,73,60,75,70,64,68,0.6,1 LB,Leonard Floyd,25,2016,76,60,75,70,64,83,4,3 CB,Cre'von LeBlanc,23,2016,90,54,73,78,78,57,0.3,2 CB,Sherrick McManis,30,2010,80,45,65,78,78,44,0.9,1 CB,Deiondre' Hall,23,2016,68,40,75,76,81,40,0.5,3 CB,Bryce Callahan,26,2015,88,60,75,90,93,37,0.4,1 CB,Marcus Cooper,27,2013,82,60,78,83,85,46,3.6,3 CB,Kyle Fuller,25,2014,74,65,85,92,88,60,2.4,1 CB,Prince Amukamara,28,2011,85,85,88,92,85,80,6.6,1 S,Eddie Jackson,25,2017,76,50,63,76,81,60,0.6,4 S,Adrian Amos,24,2015,99,67,73,86,90,43,0.4,2 S,Quintin Demps,32,2008,73,68,78,81,81,68,3,3 S,Deon Bush,24,2016,92,45,78,76,78,60,0.5,3 K,Connor Barth,31,2008,57,45,63,81,71,45,0.7,1 K,Pat O'Donnell,26,2014,72,50,67,87,73,50,0.4,1 END_PLAYERS ###################################################################### LIONS Detroit Lions,DET QB,Jake Rudock,24,2016,95,40,81,81,60,40,0.3,1 QB,Matthew Stafford,29,2009,87,81,93,100,81,86,16.8,1 RB,Theo Riddick,26,2013,85,75,81,68,78,90,2.4,3 RB,Tion Green,24,2017,85,35,61,62,65,68,0.3,3 RB,Dwayne Washington,23,2016,91,45,65,62,85,71,0.4,3 RB,Zach Zenner,26,2015,63,60,71,71,78,73,0.3,1 RB,Ameer Abdullah,24,2015,68,61,73,65,83,86,0.8,2 RB,Darren Fells,31,2014,43,59,71,59,60,65,0.7,1 WR,T.J. Jones,25,2014,67,45,83,67,85,74,0.4,1 WR,Marvin Jones,27,2012,68,78,83,70,85,76,5,4 WR,Kenny Golladay,24,2017,82,85,81,88,85,86,0.6,4 WR,Golden Tate,29,2010,71,85,87,81,83,94,5.3,2 WR,Jared Abbrederis,27,2014,80,54,81,64,83,62,0.4,1 WR,Eric Ebron,24,2014,93,68,81,68,78,78,3,1 WR,Michael Roberts,23,2017,83,40,81,70,62,62,0.6,4 OL,Greg Robinson,25,2014,99,58,88,93,63,60,5.5,1 OL,Taylor Decker,23,2016,77,75,85,85,73,71,2.7,3 OL,Brian Mihalik,25,2015,70,40,70,68,61,58,0.3,2 OL,Joe Dahl,24,2016,70,40,87,71,64,63,0.4,3 OL,Graham Glasgow,25,2016,80,60,83,71,60,60,0.6,3 OL,Don Muhlbach,36,2004,72,68,71,62,45,40,0.7,1 OL,Travis Swanson,26,2014,95,75,85,78,68,71,0.7,1 OL,T.J. Lang,30,2009,77,88,81,83,67,93,7.6,3 OL,Zac Kerin,26,2014,88,40,73,68,59,62,0.4,1 OL,Corey Robinson,25,2015,76,45,65,83,65,62,0.4,2 OL,Ricky Wagner,28,2013,81,78,73,78,63,81,7.8,5 DL,Jeremiah Valoaga,23,2017,97,35,62,64,65,74,0.3,3 DL,Cornelius Washington,28,2013,64,35,61,81,70,76,2.3,2 DL,Armonty Bryant,27,2013,63,54,71,57,60,80,0.6,1 DL,Alex Barrett,23,2017,88,85,82,84,85,84,0.3,3 DL,Anthony Zettel,25,2016,99,40,85,70,73,83,0.4,3 DL,Ziggy Ansah,28,2013,90,70,81,71,71,86,5.8,1 DL,Akeem Spence,26,2013,70,54,75,87,70,68,2.3,3 DL,A'Shawn Robinson,22,2016,95,58,83,75,81,73,1.1,3 DL,Jeremiah Ledbetter,23,2017,92,40,73,70,68,74,0.4,4 DL,Haloti Ngata,33,2006,47,75,87,93,85,71,5,1 LB,Paul Worrilow,27,2013,70,63,83,67,64,74,2.3,1 LB,Jalen Reeves-Maybin,22,2017,66,45,71,62,60,73,0.6,4 LB,Nick Bellore,28,2011,84,60,70,78,71,65,0.6,1 LB,Jarrad Davis,22,2017,76,56,68,83,81,78,2.7,4 LB,Tahir Whitehead,27,2012,71,62,81,87,70,78,2.6,1 LB,Steve Longa,23,2016,77,35,83,73,70,65,0.3,2 CB,Darius Slay,26,2013,80,75,75,96,93,53,9.3,4 CB,Teez Tabor,22,2017,98,45,81,74,78,53,1,4 CB,Quandre Diggs,24,2015,66,60,83,80,78,43,0.4,2 CB,Jamal Agnew,22,2017,75,40,73,76,90,59,0.5,4 CB,Nevin Lawson,26,2014,90,67,83,86,85,62,0.6,1 CB,D.J. Hayden,27,2013,84,58,68,86,87,62,3,1 S,Don Carey,30,2009,51,52,75,78,75,55,0.5,1 S,Glover Quin,31,2009,73,68,83,86,75,68,4.8,3 S,Charles Washington,24,2016,98,35,70,70,75,37,0.3,2 S,Tavon Wilson,27,2012,64,78,88,86,78,68,1.2,1 S,Miles Killebrew,24,2016,85,40,81,74,78,81,0.5,3 K,Matt Prater,33,2006,79,45,60,100,90,45,2,1 K,Kasey Redfern,26,2014,85,35,60,78,61,35,0.3,1 END_PLAYERS ###################################################################### PACKERS Green Bay Packers,GB QB,Aaron Rodgers,26,2012,82,89,97,98,95,94,18.1,3 QB,Brett Hundley,24,2015,87,40,81,87,58,67,0.4,2 RB,Jamaal Williams,22,2017,81,45,75,73,81,78,0.6,4 RB,Devante Mays,23,2017,80,40,75,68,81,76,0.4,4 RB,Ty Montgomery,24,2015,83,67,70,70,85,88,0.6,2 RB,Aaron Jones,23,2017,74,40,68,68,83,83,0.4,4 RB,Aaron Ripkowski,25,2015,89,71,68,54,68,45,0.4,2 WR,Trevor Davis,24,2016,67,40,73,62,88,63,0.4,3 WR,Jeff Janis,26,2014,81,45,75,64,88,67,0.4,1 WR,Geronimo Allison,23,2016,72,45,71,64,78,70,0.3,1 WR,Randall Cobb,27,2011,86,78,83,97,87,76,8.3,2 WR,Jordy Nelson,26,2012,81,100,83,99,91,90,7.9,2 WR,Davante Adams,25,2014,91,75,78,83,81,76,0.8,1 WR,Richard Rodgers,25,2014,77,70,68,75,63,68,0.7,1 WR,Lance Kendricks,29,2011,64,63,83,61,68,66,1.6,2 WR,Martellus Bennett,30,2008,82,75,78,83,64,67,5.7,3 OL,David Bakhtiari,26,2013,84,100,70,85,70,93,7.9,4 OL,Jason Spriggs,23,2016,85,50,88,70,63,61,1.1,3 OL,Lane Taylor,28,2013,87,68,73,78,60,71,1.6,1 OL,Brett Goode,33,2008,65,60,68,60,60,52,0.6,1 OL,Lucas Patrick,24,2016,86,85,81,85,82,88,0.3,1 OL,Corey Linsley,26,2014,86,81,83,87,88,88,0.6,1 OL,Jahri Evans,34,2006,53,70,78,78,60,85,1.5,1 OL,Justin McCray,25,2014,86,80,85,83,87,88,0.3,1 OL,Bryan Bulaga,28,2010,88,93,75,81,62,88,5.2,3 OL,Kyle Murphy,24,2016,86,80,83,80,85,81,0.4,3 DL,Dean Lowry,23,2016,80,80,83,85,88,88,0.5,3 DL,Ricky Jean-Francois,31,2009,77,63,64,71,73,71,1.4,1 DL,Mike Daniels,28,2012,64,78,78,85,87,81,8.3,3 DL,Montravius Adams,23,2017,76,45,88,75,70,76,0.4,4 DL,Quinton Dial,27,2013,83,68,63,78,75,68,2.8,3 DL,Kenny Clark,22,2016,94,65,83,78,75,70,2.2,3 LB,Chris Odom,23,2017,98,35,73,62,64,60,0.3,3 LB,Clay Matthews,26,2012,95,91,87,90,93,90,10.8,2 LB,Vince Biegel,24,2017,77,45,70,64,65,70,0.6,4 LB,Ahmad Brooks,33,2006,46,67,81,56,63,71,0,1 LB,Blake Martinez,23,2016,87,61,88,73,73,73,0.5,3 LB,Joe Thomas,26,2014,70,62,78,65,64,76,0.4,1 LB,Jake Ryan,25,2015,78,63,71,73,68,74,0.5,2 LB,Kyler Fackrell,26,2016,66,45,71,70,67,71,0.6,3 LB,Nick Perry,27,2012,86,71,81,68,71,81,9.7,5 CB,Davon House,28,2011,68,60,75,76,83,40,2.3,1 CB,Damarious Randall,25,2015,66,60,78,86,85,44,1.9,2 CB,Ladarius Gunter,25,2015,87,58,75,80,81,60,0.3,1 CB,Kevin King,22,2017,98,45,75,78,87,55,1.6,4 CB,Josh Hawkins,24,2016,72,35,71,76,90,35,0.3,2 CB,Lenzy Pipkins,24,2017,70,35,68,68,73,53,0.3,3 CB,Quinten Rollins,25,2015,91,58,85,81,78,63,0.7,2 S,Kentrell Brice,23,2016,76,40,78,80,87,60,0.3,2 S,Ha Ha Clinton-Dix,25,2014,69,70,85,83,78,80,2.4,2 S,Morgan Burnett,28,2010,67,75,75,88,75,80,5.2,1 S,Marwin Evans,24,2016,73,35,78,74,85,55,0.3,2 S,Josh Jones,23,2017,92,45,81,81,88,74,0.8,4 K,Mason Crosby,33,2007,57,40,78,93,71,40,3.3,3 K,Justin Vogel,24,2017,86,40,63,90,67,40,0.3,3 END_PLAYERS ###################################################################### VIKINGS Minnesota Vikings,MIN QB,Sam Bradford,30,2010,85,75,73,85,71,37,11.3,1 QB,Teddy Bridgewater,25,2014,87,62,78,85,73,62,1.6,1 QB,Case Keenum,26,2012,82,81,85,85,83,87,1.4,1 RB,CJ Ham,24,2016,71,35,61,67,68,71,0.3,2 RB,Dalvin Cook,22,2017,67,54,75,78,85,92,1.4,4 RB,Jerick McKinnon,25,2014,81,90,88,93,90,83,0.5,1 RB,Latavius Murray,27,2013,85,71,68,78,88,90,3.5,3 RB,Blake Bell,26,2015,86,35,64,64,64,71,0.5,2 WR,Laquon Treadwell,22,2016,99,57,81,73,78,73,2.4,3 WR,Stacy Coley,23,2017,74,40,67,70,87,68,0.4,4 WR,Rodney Adams,23,2017,79,40,70,64,87,67,0.5,4 WR,Jarius Wright,28,2012,73,60,88,65,87,71,2.8,3 WR,Adam Thielen,27,2013,91,83,85,83,83,90,3.6,4 WR,Michael Floyd,28,2012,63,52,75,71,83,76,0.9,1 WR,Stefon Diggs,24,2015,89,98,95,83,87,89,0.4,2 WR,Kyle Rudolph,28,2011,67,83,83,88,62,67,5.4,3 WR,David Morgan,24,2016,88,40,65,64,59,62,0.4,3 OL,Riley Reiff,29,2012,71,60,93,73,61,60,8.7,5 OL,Rashod Hill,25,2016,86,40,75,63,61,60,0.3,2 OL,Jeremiah Sirles,26,2014,86,50,85,63,64,60,0.4,1 OL,Nick Easton,25,2015,71,40,78,68,60,60,0.3,1 OL,Pat Elflein,23,2017,94,58,87,81,73,63,0.7,4 OL,Kevin McDermott,27,2013,83,45,73,45,40,45,0.6,4 OL,Danny Isidora,23,2017,68,45,71,73,64,60,0.4,4 OL,Joe Berger,35,2005,40,71,75,83,71,81,1.4,1 OL,Mike Remmers,28,2012,81,64,71,71,64,59,4.1,5 OL,Aviante Collins,24,2017,88,35,71,75,61,59,0.3,3 DL,Danielle Hunter,23,2015,90,63,71,64,64,86,0.6,2 DL,Brian Robison,34,2007,98,93,85,97,94,94,2.3,2 DL,Stephen Weatherly,23,2016,80,85,85,83,84,88,0.3,2 DL,Everson Griffen,30,2010,83,75,67,73,75,86,8.2,6 DL,Tashawn Bower,22,2017,76,35,71,62,63,74,0.4,3 DL,Jaleel Johnson,23,2017,86,45,83,64,67,74,0.6,4 DL,Linval Joseph,29,2010,87,78,71,99,95,74,7.4,6 DL,Tom Johnson,33,2011,92,93,95,95,94,93,1.5,1 DL,Shamar Stephen,26,2014,73,45,78,73,71,67,0.6,1 LB,Anthony Barr,25,2014,81,70,71,70,68,86,4.3,2 LB,Eric Wilson,23,2017,93,35,78,67,64,73,0.3,3 LB,Eric Kendricks,25,2015,69,71,70,78,68,83,1.1,2 LB,Kentrell Brothers,24,2016,91,40,85,81,70,65,0.4,3 LB,Ben Gedeon,23,2017,96,45,90,63,64,68,0.6,4 LB,Emmanuel Lamur,28,2012,90,58,70,60,60,73,1.7,1 CB,Tramaine Brock,29,2010,85,73,78,88,81,44,0,1 CB,Trae Waynes,25,2015,82,60,81,86,93,40,3.2,2 CB,Xavier Rhodes,27,2013,83,78,81,96,87,43,9.6,6 CB,Mackensie Alexander,24,2016,88,50,73,81,85,37,0.9,3 CB,Terence Newman,39,2003,91,88,95,90,98,93,2.3,1 CB,Marcus Sherels,30,2010,83,52,67,86,85,37,1.3,1 S,Antone Exum Jr.,26,2014,66,45,68,78,83,53,0.4,1 S,Anthony Harris,26,2015,86,57,70,80,78,43,0.3,1 S,Harrison Smith,28,2012,64,88,83,90,78,80,6.9,4 S,Andrew Sendejo,30,2010,69,67,71,76,70,74,2.5,3 S,Jayron Kearse,23,2016,81,40,83,70,73,63,0.4,3 K,Kai Forbath,30,2011,57,45,70,73,78,45,0.3,1 K,Ryan Quigley,27,2013,89,40,73,90,67,40,0.5,2 END_PLAYERS ###################################################################### COWBOYS Dallas Cowboys,DAL QB,Cooper Rush,24,2017,98,35,85,81,78,53,0.3,3 QB,Dak Prescott,24,2016,97,81,90,90,88,84,0.5,3 QB,Kellen Moore,28,2012,89,57,83,65,65,37,0.5,1 RB,Alfred Morris,29,2012,53,64,90,81,78,78,1.4,1 RB,Rod Smith,25,2015,63,40,78,61,75,74,0.4,2 RB,Darren McFadden,30,2008,55,65,62,68,83,74,0.7,1 RB,Ezekiel Elliott,22,2016,97,85,88,88,88,94,6.5,3 RB,Keith Smith,25,2014,90,63,70,52,62,63,0.4,1 WR,Ryan Switzer,23,2017,69,50,85,73,83,73,0.6,4 WR,Noah Brown,20,2017,77,40,71,73,78,63,0.4,4 WR,Terrance Williams,28,2013,73,68,81,78,85,73,3.4,4 WR,Brice Butler,27,2013,65,62,68,67,88,66,0.9,1 WR,Dez Bryant,29,2010,71,88,83,95,93,92,11.3,3 WR,Cole Beasley,28,2012,88,81,87,78,81,76,2.8,2 WR,James Hanna,28,2012,62,56,64,60,78,66,2.2,2 WR,Rico Gathers,23,2016,88,40,83,64,64,66,0.3,1 WR,Jason Witten,35,2003,45,97,93,90,62,63,4.8,5 WR,Geoff Swaim,24,2015,68,57,64,60,68,60,0.4,2 OL,Tyron Smith,27,2011,72,95,81,88,90,93,9.7,7 OL,Jonathan Cooper,27,2013,88,60,64,81,63,71,1.6,1 OL,Chaz Green,25,2015,72,56,67,61,61,64,0.6,2 OL,Joe Looney,27,2012,90,50,75,68,64,59,0.6,1 OL,L.P. Ladouceur,36,2005,70,73,73,59,40,59,0.8,1 OL,Travis Frederick,26,2013,93,95,97,88,97,83,6.2,7 OL,Zack Martin,27,2014,84,97,93,90,95,85,2.2,1 OL,Byron Bell,28,2011,82,60,71,87,61,60,1.4,1 OL,La'el Collins,24,2015,72,61,81,81,70,62,4.1,3 DL,Benson Mayowa,26,2013,70,60,67,57,60,78,2.4,2 DL,DeMarcus Lawrence,25,2014,97,61,75,61,64,83,1.2,1 DL,Damontre Moore,25,2013,78,50,62,57,60,78,0.6,2 DL,Tyrone Crawford,28,2012,88,63,68,67,70,76,6.9,4 DL,Charles Tapper,24,2016,70,40,85,65,70,80,0.6,3 DL,Taco Charlton,23,2017,80,95,85,84,80,90,2.4,4 DL,Maliek Collins,22,2016,87,60,78,71,73,80,0.7,3 DL,David Irving,24,2015,76,63,71,60,60,81,0.4,1 DL,Stephen Paea,29,2011,80,64,73,97,87,63,1.6,1 LB,Damien Wilson,24,2015,77,60,75,68,65,74,0.5,2 LB,Kyle Wilber,28,2012,83,61,70,65,63,74,1.2,1 LB,Justin Durant,32,2007,80,68,81,73,61,80,0.6,1 LB,Anthony Hitchens,25,2014,89,65,88,67,67,80,0.7,1 LB,Jaylon Smith,22,2016,93,57,68,75,68,78,1.5,3 LB,Sean Lee,31,2010,80,97,73,97,78,81,5.8,3 LB,Jay Elliott,26,2014,68,50,78,60,60,68,1.2,1 CB,Anthony Brown,24,2016,99,60,85,86,95,40,0.4,3 CB,Bene Benwikere,26,2014,89,45,78,83,81,40,0.4,1 CB,Chidobe Awuzie,22,2017,70,56,81,80,87,62,0.9,4 CB,Jourdan Lewis,22,2017,68,56,87,81,85,59,0.6,4 CB,Nolan Carroll,30,2010,63,61,70,86,85,59,2.7,3 CB,Orlando Scandrick,30,2008,79,68,70,92,85,53,2.8,3 S,Xavier Woods,22,2017,66,45,83,74,83,70,0.4,4 S,Byron Jones,25,2015,91,64,83,96,87,63,2.1,2 S,Jeff Heath,26,2013,79,60,78,80,83,60,1.5,3 S,Kavon Frazier,23,2016,70,40,87,74,75,78,0.4,3 K,Dan Bailey,29,2011,64,58,71,88,93,58,2.5,4 K,Chris Jones,28,2011,87,56,67,90,88,56,1,1 END_PLAYERS ###################################################################### GIANTS New York Giants,NYG QB,Geno Smith,27,2013,71,50,78,87,63,55,0.8,1 QB,Eli Manning,28,2012,88,88,99,85,88,81,18.2,3 QB,Davis Webb,22,2017,79,45,73,90,61,47,0.7,4 RB,Shane Vereen,28,2011,66,70,78,70,81,80,3.3,1 RB,Orleans Darkwa,25,2014,76,62,78,73,85,83,0.7,1 RB,Wayne Gallman,23,2017,73,45,81,78,83,80,0.5,4 RB,Paul Perkins,23,2016,81,63,71,70,83,81,0.4,3 RB,Shane Smith,24,2017,75,40,68,45,57,40,0.3,3 RB,Rhett Ellison,29,2012,78,60,64,57,67,57,3.6,4 WR,Odell Beckham Jr.,25,2014,86,93,85,90,93,93,3.3,2 WR,Sterling Shepard,24,2016,92,68,83,75,85,74,1.3,3 WR,Brandon Marshall,33,2006,47,81,90,75,75,80,4.1,2 WR,Roger Lewis,24,2016,89,45,73,61,87,70,0.3,2 WR,Dwayne Harris,30,2011,83,60,85,65,78,83,2.7,3 WR,Tavarres King,27,2013,81,45,73,62,83,76,0.4,1 WR,Jerell Adams,25,2016,81,40,70,62,71,60,0.4,3 WR,Matt LaCosse,25,2015,67,40,73,60,68,60,0.3,1 WR,Evan Engram,23,2017,79,54,73,68,85,86,2.6,4 OL,Ereck Flowers,23,2015,89,62,75,85,67,58,3.6,2 OL,Chad Wheeler,23,2017,86,35,62,75,70,65,0.4,3 OL,Justin Pugh,27,2013,75,81,78,81,75,73,2.8,1 OL,Brett Jones,26,2015,83,40,70,71,63,62,0.3,1 OL,Weston Richburg,26,2014,89,83,85,83,73,83,1.1,1 OL,Zak DeOssie,33,2007,60,63,83,58,40,54,0.7,2 OL,John Jerry,31,2010,53,70,60,81,61,73,2.6,3 OL,D.J. Fluker,26,2013,87,70,78,87,60,60,2.8,1 OL,Bobby Hart,23,2015,94,62,73,71,64,59,0.4,2 DL,Jason Pierre-Paul,28,2010,82,88,88,83,85,92,12.8,4 DL,Kerry Wynn,26,2014,77,45,73,75,71,70,1.1,1 DL,Romeo Okwara,22,2016,71,40,78,64,67,76,0.3,2 DL,Avery Moss,23,2017,77,40,71,62,64,83,0.5,4 DL,Olivier Vernon,27,2012,67,81,87,70,73,81,10.7,4 DL,Corbin Bryant,29,2011,63,52,70,75,70,68,0.5,1 DL,Damon Harrison,29,2012,60,95,73,90,95,74,6.8,4 DL,Jay Bromley,25,2014,93,45,73,73,67,71,0.6,1 DL,Robert Thomas,26,2014,60,40,63,93,75,57,0.3,1 DL,Dalvin Tomlinson,23,2017,91,54,73,73,78,71,0.9,4 LB,Devon Kennard,26,2014,84,71,70,75,68,74,0.6,1 LB,Mark Herzlich,30,2011,72,60,78,63,63,67,0.6,1 LB,J.T. Thomas,29,2011,61,58,73,64,60,71,2.4,1 LB,B.J. Goodson,24,2016,69,40,78,75,78,68,0.6,3 LB,Calvin Munson,23,2017,72,35,85,65,60,66,0.3,3 LB,Jonathan Casillas,30,2009,82,64,61,68,60,80,2.1,1 LB,Keenan Robinson,28,2012,68,62,71,68,67,81,1.9,1 CB,Dominique R-Cromartie,31,2008,70,87,68,98,90,37,5.6,2 CB,Janoris Jenkins,29,2012,82,85,87,96,87,60,8.1,4 CB,Ross Cockrell,26,2014,64,68,83,90,85,43,1.1,1 CB,Michael Hunter,24,2016,98,35,70,73,88,46,0.4,2 CB,Eli Apple,22,2016,94,58,83,83,88,40,3.8,3 S,Andrew Adams,24,2016,81,61,78,80,81,62,0.3,2 S,Darian Thompson,24,2016,90,40,78,73,75,74,0.7,3 S,Nat Berhe,26,2014,63,40,78,73,78,60,0.4,1 S,Landon Collins,23,2015,92,83,81,88,81,92,1.4,2 K,Aldrick Rosas,23,2016,82,40,61,83,64,40,0.3,2 K,Brad Wing,26,2014,85,45,70,87,68,45,1.4,3 END_PLAYERS ###################################################################### EAGLES Philadelphia Eagles,PHI QB,Carson Wentz,25,2016,85,88,88,88,85,92,6.9,3 QB,Nick Foles,28,2012,81,82,84,85,86,90,3.3,2 RB,Darren Sproles,34,2005,56,73,78,65,81,80,2.8,1 RB,Corey Clement,23,2017,95,80,88,84,88,81,0.3,3 RB,LeGarrette Blount,31,2010,47,88,81,87,78,88,0.9,1 RB,Donnel Pumphrey,23,2017,76,45,78,62,87,80,0.6,4 RB,Wendell Smallwood,23,2016,95,45,83,68,87,80,0.4,3 RB,Trey Burton,26,2014,81,61,88,60,75,78,1.7,1 WR,Torrey Smith,28,2011,90,63,87,65,85,73,3.1,3 WR,Shelton Gibson,22,2017,94,40,73,67,90,71,0.5,4 WR,Alshon Jeffery,27,2012,78,78,85,83,83,78,10.8,1 WR,Nelson Agholor,24,2015,95,52,75,60,87,78,2.3,2 WR,Mack Hollins,24,2017,86,54,75,68,85,71,0.6,4 WR,Marcus Johnson,23,2016,68,40,73,50,75,71,0.3,2 WR,Brent Celek,32,2007,55,71,78,73,60,62,3.3,2 WR,Zach Ertz,27,2013,82,81,88,87,85,88,6.3,5 OL,Jason Peters,35,2004,54,88,83,95,73,83,8.1,3 OL,Chance Warmack,26,2013,81,64,87,88,67,61,0.6,2 OL,Isaac Seumalo,24,2016,96,50,73,71,63,60,0.6,3 OL,Rick Lovato,25,2015,90,40,78,59,40,56,0.3,1 OL,Stefen Wisniewski,28,2011,81,61,88,73,64,63,2,3 OL,Jason Kelce,30,2011,70,73,68,73,65,60,4.7,4 OL,Brandon Brooks,28,2012,78,85,63,95,83,83,6.4,4 OL,Lane Johnson,27,2013,72,85,85,81,85,75,8.3,4 OL,Halapouliva Vaitai,24,2016,79,52,83,68,64,60,0.4,3 DL,Brandon Graham,29,2010,82,81,88,85,83,90,4.7,2 DL,Chris Long,32,2008,48,73,83,75,68,76,1.4,2 DL,Alex McCalister,24,2016,76,35,67,58,58,78,0.4,3 DL,Vinny Curry,29,2012,82,62,75,67,64,76,7.2,4 DL,Derek Barnett,21,2017,73,52,73,78,73,76,3.2,4 DL,Steven Means,27,2013,73,40,65,56,60,76,0.6,2 DL,Elijah Qualls,22,2017,93,40,83,90,81,70,0.4,4 DL,Destiny Vaeao,23,2016,71,40,68,71,70,67,0.3,2 DL,Fletcher Cox,27,2012,80,93,91,93,88,98,14.1,6 DL,Beau Allen,26,2014,88,56,78,81,78,63,0.4,1 DL,Timmy Jernigan,25,2014,97,65,71,73,75,78,0.7,1 LB,Nigel Bradham,28,2012,82,78,90,73,65,88,2.8,1 LB,Najee Goode,28,2012,85,45,73,60,60,70,0.6,1 LB,Jordan Hicks,25,2015,79,87,67,81,73,90,0.6,2 LB,Joe Walker,25,2016,94,35,83,71,67,68,0.4,3 LB,Kamu Grugier-Hill,23,2016,79,35,87,63,62,73,0.4,3 LB,Mychal Kendricks,27,2012,83,62,73,68,67,83,5.5,3 CB,Jalen Mills,23,2016,99,85,83,81,85,80,0.4,3 CB,Dexter McDougle,26,2014,73,40,64,76,87,40,0.4,2 CB,Sidney Jones,21,2017,99,45,68,76,81,62,1.4,4 CB,Patrick Robinson,30,2010,82,62,71,83,81,43,0.5,1 CB,Rasul Douglas,24,2017,79,40,81,71,78,60,0.6,4 CB,Ronald Darby,23,2015,96,67,67,94,90,53,1,2 S,Corey Graham,32,2007,77,67,83,83,75,80,1.3,1 S,Rodney McLeod,27,2012,86,67,81,86,73,70,5.4,4 S,Chris Maragos,30,2010,59,57,78,73,75,63,1.4,3 S,Jaylen Watkins,26,2014,60,57,83,78,87,55,0.4,1 S,Malcolm Jenkins,30,2009,54,81,95,92,73,78,6.4,3 K,Caleb Sturgis,28,2013,62,45,73,93,83,45,0.6,1 K,Donnie Jones,37,2004,56,45,67,73,67,45,0.9,2 END_PLAYERS ###################################################################### REDSKINS Washington Redskins,WAS QB,Colt McCoy,31,2010,58,58,88,67,61,47,2.3,2 QB,Kirk Cousins,29,2012,87,83,85,88,83,80,15,1 RB,Rob Kelley,25,2016,86,65,81,83,75,83,0.3,2 RB,Samaje Perine,22,2017,88,54,73,78,78,78,0.6,4 RB,Mack Brown,26,2015,78,40,81,67,78,78,0.3,1 RB,Chris Thompson,27,2013,78,62,58,63,87,74,1.7,1 RB,Niles Paul,28,2011,82,56,71,57,81,68,1.5,1 WR,Ryan Grant,27,2014,88,56,71,65,81,66,0.4,1 WR,Brian Quick,28,2012,72,63,75,73,78,76,0.6,1 WR,Josh Doctson,25,2016,81,56,78,73,83,76,2.4,3 WR,Terrelle Pryor Sr.,28,2011,81,85,81,88,87,84,5.6,1 WR,Jamison Crowder,24,2015,83,78,83,81,87,76,0.5,2 WR,Vernon Davis,33,2006,40,73,78,70,78,71,4,3 WR,Jordan Reed,27,2013,61,97,70,95,75,83,8.3,4 WR,Jeremy Sprinkle,23,2017,67,40,75,61,71,67,0.5,4 OL,Trent Williams,29,2010,81,95,83,95,100,95,9.6,4 OL,Ty Nsekhe,32,2012,83,62,65,71,70,62,0.4,1 OL,Shawn Lauvao,30,2010,77,64,78,75,63,59,3.3,1 OL,Tyler Catalina,24,2017,75,35,62,59,81,71,0.3,3 OL,Chase Roullier,24,2017,86,40,83,73,63,60,0.4,4 OL,Spencer Long,27,2014,75,71,64,81,62,75,0.7,1 OL,Brandon Scherff,26,2015,92,85,81,88,75,70,5.5,2 OL,Morgan Moses,26,2014,77,78,71,83,75,73,5.4,6 OL,T.J. Clemmings,26,2015,88,59,81,73,60,58,0.5,2 DL,Stacy McGee,27,2013,66,64,65,75,71,66,3.6,5 DL,Anthony Lanier,24,2016,91,35,75,59,60,73,0.3,2 DL,Jonathan Allen,22,2017,85,84,81,83,83,86,2.8,4 DL,Matt Ioannidis,23,2016,97,80,83,85,85,83,0.3,2 DL,Terrell McClain,29,2011,76,67,62,83,78,67,4.1,4 DL,Phil Taylor,29,2011,90,54,62,81,78,71,0.5,1 DL,Ziggy Hood,30,2009,69,60,68,81,70,70,0.9,2 LB,Preston Smith,25,2015,75,60,73,64,68,74,1.3,2 LB,Ryan Anderson,23,2017,88,45,81,70,71,66,1.1,4 LB,Trent Murphy,27,2014,76,65,81,64,70,74,0.9,1 LB,Chris Carter,28,2011,80,56,73,61,58,66,0.6,1 LB,Junior Galette,29,2010,73,61,65,63,63,70,0.5,1 LB,Martrell Spaight,24,2015,75,40,71,73,70,68,0.4,2 LB,Josh Harvey-Clemon,23,2017,72,45,73,64,60,70,0.4,4 LB,Will Compton,28,2013,74,70,81,68,64,81,1.1,1 LB,Zach Brown,28,2012,69,81,70,78,63,90,1.8,1 LB,Mason Foster,28,2011,73,78,81,71,65,73,0.9,1 LB,Ryan Kerrigan,29,2011,73,83,88,70,75,73,9.2,4 CB,Bashaud Breeland,25,2014,92,64,73,86,78,53,0.7,1 CB,Quinton Dunbar,25,2015,71,50,75,80,87,40,0.3,1 CB,Fabian Moreau,23,2017,75,40,73,81,93,55,0.7,4 CB,Joshua Holsey,24,2017,70,40,70,73,85,44,0.4,4 CB,Josh Norman,30,2012,73,95,93,94,81,59,11.3,4 CB,Kendall Fuller,22,2016,94,52,71,80,85,60,0.6,3 S,Montae Nicholson,22,2017,84,45,70,76,88,62,0.6,4 S,D.J. Swearinger,26,2013,65,75,87,86,70,57,3.6,3 S,DeAngelo Hall,34,2004,59,70,71,88,81,62,3.6,1 S,Deshazor Everett,25,2015,91,45,73,78,78,47,0.3,1 S,Stefan McClure,24,2016,98,35,71,67,71,76,0.3,2 K,Dustin Hopkins,27,2013,86,40,68,93,67,40,0.4,1 K,Tress Way,27,2014,77,45,70,100,71,45,1.1,4 END_PLAYERS ###################################################################### FALCONS Atlanta Falcons,ATL QB,Matt Schaub,36,2004,69,71,73,68,61,37,3.6,2 QB,Matt Ryan,28,2012,88,97,97,93,93,81,16.5,2 RB,Terron Ward,25,2015,78,50,78,70,78,83,0.4,1 RB,Brian Hill,22,2017,83,40,85,75,81,81,0.5,4 RB,Tevin Coleman,24,2015,76,67,73,81,93,92,0.6,2 RB,Devonta Freeman,25,2014,89,81,87,87,88,96,6.4,6 RB,Derrick Coleman,27,2012,90,80,85,85,81,88,0.4,1 WR,Devin Fuller,23,2016,72,40,75,60,90,63,0.4,3 WR,Julio Jones,28,2011,97,105,88,100,95,96,10.4,4 WR,Andre Roberts,29,2010,83,64,81,64,83,78,1.4,1 WR,Taylor Gabriel,26,2014,94,68,64,75,90,70,1.7,1 WR,Mohamed Sanu,28,2012,68,73,87,90,81,80,4.9,4 WR,Justin Hardy,26,2015,93,56,83,71,78,80,0.5,2 WR,Nick Williams,27,2013,71,60,78,67,75,67,0.4,1 WR,Eric Saubert,23,2017,80,40,81,60,70,70,0.4,4 WR,Austin Hooper,23,2016,93,60,83,64,68,68,0.6,3 WR,Levine Toilolo,26,2013,82,64,65,62,61,55,3.1,3 OL,Jake Matthews,25,2014,92,70,93,75,60,68,5.2,2 OL,Ty Sambrailo,25,2015,97,59,73,64,64,58,0.8,2 OL,Andy Levitre,31,2009,62,81,88,81,73,81,4.9,2 OL,Sean Harlow,22,2017,76,45,75,75,67,61,0.5,4 OL,Alex Mack,32,2009,79,99,93,87,97,71,7.1,4 OL,Josh Harris,28,2012,83,45,83,45,45,50,0.6,2 OL,Ben Garland,29,2010,80,45,83,68,67,61,0.4,1 OL,Wes Schweitzer,24,2016,99,40,81,67,67,60,0.4,3 OL,Ryan Schraeder,29,2013,80,81,81,78,85,75,4.8,5 OL,Austin Pasztor,27,2012,77,68,73,70,63,71,0,1 DL,Brooks Reed,30,2011,83,62,81,61,68,86,3.3,3 DL,Adrian Clayborn,29,2011,86,61,71,71,70,78,3.4,1 DL,Takkarist McKinley,22,2017,83,45,73,67,65,86,2.5,4 DL,Derrick Shelby,28,2012,82,59,71,68,67,76,3.6,3 DL,Courtney Upshaw,28,2012,78,58,90,67,70,78,0.8,1 DL,Jack Crawford,29,2012,67,58,71,62,64,73,2.4,3 DL,Grady Jarrett,24,2015,77,71,65,83,78,74,0.4,2 DL,Dontari Poe,27,2012,89,85,88,95,88,81,5.3,1 LB,Vic Beasley Jr.,25,2015,74,70,71,63,70,90,3.6,2 LB,Jermaine Grace,24,2017,93,35,67,56,40,74,0.3,3 LB,Deion Jones,23,2016,82,70,71,68,64,86,0.9,3 LB,Jordan Tripp,26,2014,82,45,81,60,60,76,0.4,1 LB,De'vondre Campbell,24,2016,83,59,81,70,63,78,0.5,3 LB,Duke Riley,23,2017,95,45,78,78,68,71,0.7,4 CB,Robert Alford,29,2013,77,63,70,94,90,40,7.2,4 CB,Deji Olatoye,26,2014,61,40,71,74,85,40,0.4,1 CB,Damontae Kazee,24,2017,72,40,83,74,81,60,0.5,4 CB,Blidi Wreh-Wilson,28,2013,82,52,70,81,81,43,0.5,1 CB,Desmond Trufant,27,2013,78,75,78,96,88,71,9.9,6 CB,C.J. Goodwin,27,2014,83,45,71,80,87,37,0.3,1 CB,Brian Poole,25,2016,83,61,73,76,83,62,0.3,2 CB,Jalen Collins,24,2015,71,61,68,88,85,46,1.2,2 S,Ricardo Allen,26,2014,68,65,87,90,83,62,0.4,1 S,Sharrod Neasman,26,2016,85,40,75,70,70,67,0.3,1 S,Keanu Neal,22,2016,75,64,87,86,78,73,2.6,3 S,Kemal Ishmael,26,2013,62,62,73,80,73,76,1.6,1 K,Matt Bryant,42,2002,47,56,60,97,97,56,2,1 K,Matt Bosher,30,2011,64,56,81,88,81,56,1.9,3 END_PLAYERS ###################################################################### PANTHERS Carolina Panthers,CAR QB,Cam Newton,28,2011,82,85,99,99,85,90,15.8,4 QB,Derek Anderson,34,2005,66,60,87,87,60,37,1.9,1 QB,Brad Kaaya,22,2017,97,40,87,73,60,37,0.4,4 RB,Jonathan Stewart,30,2008,65,78,73,87,75,94,2.5,2 RB,Christian McCaffrey,21,2017,82,84,88,80,87,83,4.4,4 RB,Cameron Artis-Payne,27,2015,79,35,78,73,81,78,0.4,2 RB,Fozzy Whittaker,28,2012,77,59,68,60,81,73,0.8,2 RB,Chris Manhertz,25,2014,87,40,73,45,63,65,0.3,1 WR,Russell Shepard,27,2013,76,58,78,65,85,74,2.5,3 WR,Damiere Byrd,24,2015,87,35,68,59,97,70,0.3,1 WR,Curtis Samuel,21,2017,91,56,75,65,95,70,1.5,4 WR,Devin Funchess,23,2015,66,59,75,68,83,80,1.2,2 WR,Kelvin Benjamin,26,2014,94,78,75,83,75,78,2.6,2 WR,Greg Olsen,32,2007,48,100,88,99,73,71,7.2,2 WR,Ed Dickson,30,2010,67,64,78,60,70,65,1.7,1 OL,Amini Silatolu,29,2012,62,56,78,78,68,63,0.6,1 OL,Matt Kalil,28,2012,71,63,85,83,73,65,8.4,5 OL,Andrew Norwell,26,2014,80,83,81,78,81,75,1.7,1 OL,Greg Van Roten,27,2012,80,54,75,71,67,61,0.4,1 OL,Gino Gradkowski,29,2012,69,61,71,73,63,60,0.8,2 OL,J.J. Jansen,31,2008,64,61,73,58,40,50,0.8,4 OL,Ryan Kalil,32,2007,57,85,85,83,63,70,7.1,1 OL,Tyler Larsen,26,2014,91,45,81,90,61,60,0.3,1 OL,Trai Turner,24,2014,88,87,88,81,88,82,7.7,5 OL,Taylor Moton,23,2017,90,45,93,78,71,65,0.8,4 OL,Daryl Williams,25,2015,88,60,73,78,62,60,0.5,2 DL,Julius Peppers,37,2002,91,98,93,98,90,93,3.2,1 DL,Charles Johnson,31,2007,52,75,75,68,67,76,2.5,2 DL,Mario Addison,30,2011,72,75,73,61,64,78,6.4,3 DL,Daeshon Hall,22,2017,76,40,81,61,63,80,0.6,4 DL,Wes Horton,27,2013,78,59,65,61,60,73,0.8,2 DL,Star Lotulelei,28,2013,64,64,81,97,90,74,2.9,1 DL,Kawann Short,28,2013,84,83,71,78,81,78,12.6,5 DL,Vernon Butler,23,2016,84,59,78,70,73,83,2,3 DL,Kyle Love,31,2010,58,61,65,73,71,65,0.8,2 LB,Jared Norris,24,2016,82,35,81,63,64,65,0.3,2 LB,Shaq Thompson,23,2015,95,71,83,75,68,83,2.1,2 LB,Ben Jacobs,29,2011,72,54,83,63,60,67,0.5,1 LB,Luke Kuechly,26,2012,73,97,97,100,87,94,10.4,5 LB,David Mayo,24,2015,90,45,67,73,68,67,0.4,2 LB,Thomas Davis,34,2005,95,97,95,97,90,96,8.4,2 LB,Jeremy Cash,25,2016,85,40,71,63,62,71,0.3,2 CB,Kevon Seymour,24,2016,70,40,65,76,90,40,0.4,3 CB,Corn Elder,23,2017,90,40,83,74,85,59,0.5,4 CB,James Bradberry,24,2016,83,64,81,86,87,53,0.8,3 CB,Captain Munnerlyn,29,2009,64,65,75,86,83,57,3.7,4 CB,Cole Luke,22,2017,99,35,68,68,73,53,0.3,3 CB,Daryl Worley,22,2016,83,60,83,80,75,46,0.6,3 S,Colin Jones,30,2011,70,45,68,78,85,62,0.8,2 S,Kurt Coleman,29,2010,73,78,78,83,73,63,3.7,2 S,Demetrious Cox,23,2017,90,45,83,70,65,68,0.3,3 S,Mike Adams,36,2004,41,81,71,81,68,67,1.5,2 K,Graham Gano,30,2009,73,40,65,99,71,40,2.4,1 K,Harrison Butker,22,2017,67,40,65,87,68,40,0.4,4 K,Michael Palardy,25,2014,87,40,63,87,63,40,0.3,1 END_PLAYERS ###################################################################### SAINTS New Orleans Saints,NO QB,Taysom Hill,27,2017,93,35,71,81,54,71,0.3,3 QB,Chase Daniel,31,2009,75,57,90,73,61,40,0.6,1 QB,Drew Brees,28,2011,84,105,97,85,88,83,7.6,3 RB,Trey Edmunds,23,2017,95,35,61,62,65,68,0.3,3 RB,Adrian Peterson,32,2007,42,83,85,81,85,96,3,2 RB,Daniel Lasco,25,2016,75,40,68,61,85,70,0.4,3 RB,Mark Ingram,28,2011,59,81,83,83,78,90,3.1,2 RB,Alvin Kamara,21,2017,90,90,91,95,91,90,0.8,4 RB,John Kuhn,35,2005,50,61,83,62,60,62,0.7,1 WR,Tommylee Lewis,25,2016,80,40,71,63,87,68,0.3,2 WR,Willie Snead,25,2014,75,73,75,75,83,66,0.4,1 WR,Ted Ginn Jr.,32,2007,98,95,97,94,90,96,2.9,3 WR,Michael Thomas,23,2016,70,78,81,87,83,73,1.1,3 WR,Austin Carr,24,2017,85,35,67,60,81,63,0.3,3 WR,Brandon Coleman,25,2014,69,60,70,70,78,70,0.3,1 WR,Coby Fleener,29,2012,86,64,71,71,78,73,4.8,4 WR,Michael Hoomanawanui,29,2010,61,63,68,64,62,46,1.2,2 WR,Josh Hill,27,2013,84,60,68,67,70,66,2,2 OL,Ryan Ramczyk,23,2017,82,59,87,81,70,68,2.1,4 OL,Terron Armstead,26,2013,87,83,70,81,64,83,9.5,5 OL,Andrus Peat,24,2015,92,63,67,75,64,60,2.8,2 OL,Josh LeRibeus,28,2012,61,56,78,81,60,62,0.5,1 OL,Senio Kelemete,27,2012,61,60,73,75,64,60,0.9,1 OL,Max Unger,31,2009,53,93,85,78,65,78,5.5,3 OL,Larry Warford,26,2013,85,71,88,83,75,71,6.6,4 OL,Zach Strief,34,2006,56,83,83,83,75,78,3.2,2 DL,Trey Hendrickson,23,2017,75,40,81,64,67,83,0.6,4 DL,Mitchell Loewen,24,2016,88,35,78,35,50,76,0.3,2 DL,Alex Okafor,26,2013,82,60,88,61,60,70,1.9,1 DL,Al-Quadin Muhammad,22,2017,85,40,75,63,63,78,0.4,4 DL,Cameron Jordan,28,2011,77,85,88,87,88,88,8.9,4 DL,Tyeler Davison,25,2015,72,59,67,87,71,66,0.4,2 DL,Nick Fairley,29,2011,61,64,81,81,78,76,5.6,4 DL,Sheldon Rankins,23,2016,92,98,83,95,98,81,3.2,3 DL,David Onyemata,25,2016,77,45,75,83,75,76,0.5,3 LB,Hau'oli Kikaha,25,2015,67,60,64,60,62,73,1.1,2 LB,Nathan Stupar,29,2012,78,60,75,62,64,73,1.3,2 LB,Stephone Anthony,25,2015,94,60,75,73,68,80,1.8,2 LB,Craig Robertson,29,2011,76,68,75,78,64,73,1.3,2 LB,Manti Te'o,26,2013,96,70,81,75,64,76,1.8,2 LB,A.J. Klein,26,2013,79,59,87,71,62,70,4.4,4 LB,Alex Anzalone,23,2017,91,45,64,68,65,68,0.7,4 CB,Delvin Breaux,28,2015,73,62,68,86,85,57,0.3,1 CB,P.J. Williams,24,2015,97,45,81,78,85,66,0.6,2 CB,Marshon Lattimore,21,2017,98,45,64,83,93,62,3.9,4 CB,Ken Crawley,24,2016,85,50,81,80,87,40,0.3,2 CB,De'vante Harris,24,2016,76,35,73,74,81,40,0.3,2 CB,Sterling Moore,27,2011,66,61,78,81,75,45,0.6,1 S,Marcus Williams,21,2017,82,45,83,81,78,74,1.4,4 S,Rafael Bush,30,2010,60,62,70,81,78,59,0.6,1 S,Vonn Bell,23,2016,86,63,78,81,81,74,0.8,3 S,Kenny Vaccaro,26,2013,75,68,90,88,73,74,2.7,1 S,Chris Banjo,27,2013,77,45,71,80,81,53,1,2 K,Wil Lutz,23,2016,90,45,63,97,81,45,0.3,2 K,Thomas Morstead,31,2009,74,54,83,93,93,54,2.7,2 END_PLAYERS ###################################################################### BUCCANEERS Tampa Bay Buccaneers,TB QB,Ryan Fitzpatrick,35,2005,74,56,75,78,61,43,1.9,1 QB,Ryan Griffin,28,2013,83,40,73,71,61,37,0.6,2 QB,Jameis Winston,23,2015,94,64,97,95,67,71,6.6,2 RB,Jacquizz Rodgers,27,2011,67,62,78,81,78,90,1,2 RB,Charles Sims III,27,2014,83,71,75,73,83,81,0.6,1 RB,Peyton Barber,23,2016,74,40,75,64,75,74,0.3,2 RB,Doug Martin,28,2012,74,70,83,88,81,96,4.5,4 RB,Alan Cross,24,2016,98,40,71,52,63,47,0.3,1 WR,Chris Godwin,21,2017,96,45,93,68,87,83,0.6,4 WR,Mike Evans,24,2014,82,97,87,81,81,80,4.9,2 WR,Bernard Reedy,26,2014,85,45,71,65,81,67,0.3,1 WR,Adam Humphries,24,2015,84,67,68,78,81,66,0.4,1 WR,DeSean Jackson,31,2008,75,88,71,85,93,83,7,3 WR,Antony Auclair,24,2017,69,40,93,60,57,40,0.3,3 WR,O.J. Howard,23,2017,69,56,93,68,78,74,2.7,4 WR,Luke Stocker,29,2011,72,59,81,60,67,59,1,1 WR,Cameron Brate,26,2014,78,75,73,81,65,60,0.4,1 OL,Donovan Smith,24,2015,69,63,68,81,63,59,1.4,2 OL,Leonard Wester,24,2016,99,35,71,64,60,61,0.3,2 OL,Kevin Pamphile,27,2014,66,56,71,68,60,65,0.6,1 OL,Garrison Sanborn,32,2009,83,45,71,62,54,45,0.6,1 OL,Ali Marpet,24,2015,87,78,75,81,75,78,0.7,2 OL,Joe Hawley,29,2010,65,71,81,83,63,61,1.8,2 OL,Evan Smith,31,2009,60,63,71,73,63,62,2.2,1 OL,J.R. Sweezy,28,2012,90,63,70,71,71,62,3.8,4 OL,Caleb Benenoch,23,2016,85,45,70,63,64,59,0.4,3 OL,Demar Dotson,32,2009,72,70,78,75,75,62,2.6,3 DL,Ryan Russell,25,2015,79,40,62,62,60,76,0.4,1 DL,Noah Spence,23,2016,98,84,83,85,85,83,1.3,3 DL,Robert Ayers,32,2009,66,68,68,63,65,76,4.1,2 DL,Jacquies Smith,27,2012,66,60,63,59,59,73,1.1,1 DL,William Gholston,26,2013,86,82,88,82,87,86,3.4,5 DL,Will Clarke,26,2014,84,52,73,61,63,76,1.8,1 DL,Sealver Siliga,27,2011,83,59,68,81,83,67,0.8,1 DL,Clinton McDonald,30,2009,75,61,71,81,75,73,1.9,1 DL,Chris Baker,30,2009,78,73,67,85,78,73,3.3,3 DL,Gerald McCoy,29,2010,78,81,75,88,88,83,10.2,5 LB,Devante Bond,24,2016,86,40,71,59,60,70,0.4,3 LB,Kwon Alexander,23,2015,73,71,73,67,68,83,0.5,2 LB,Adarius Glanton,27,2014,83,80,83,84,85,80,0.4,1 LB,Lavonte David,27,2012,64,75,95,83,68,88,6.3,4 LB,Kendell Beckwith,23,2017,80,85,80,81,83,88,0.6,4 LB,Cameron Lynch,24,2015,73,40,81,61,65,67,0.4,1 CB,Robert McClain,29,2010,77,45,71,78,78,43,0.5,1 CB,Ryan Smith,24,2016,81,40,73,74,85,40,0.6,3 CB,Brent Grimes,34,2006,73,85,73,94,78,44,4.2,1 CB,Vernon Hargreaves,22,2016,72,54,81,86,85,63,3.5,3 CB,Javien Elliott,24,2016,86,45,73,74,75,55,0.3,1 S,Josh Robinson,26,2012,84,86,81,86,88,80,1.6,2 S,Keith Tandy,28,2012,61,60,87,83,78,63,0.6,1 S,T.J. Ward,31,2010,81,67,90,81,78,73,4.3,1 S,Chris Conte,28,2011,79,64,78,78,75,46,1.6,2 S,Justin Evans,22,2017,66,45,83,81,75,76,1.1,4 K,Nick Folk,33,2007,54,45,62,90,78,45,1.6,1 K,Bryan Anger,29,2012,80,57,85,95,93,57,2.1,5 END_PLAYERS ###################################################################### CARDINALS Arizona Cardinals,ARZ QB,Drew Stanton,33,2007,57,56,75,83,60,37,2.7,1 QB,Blaine Gabbert,28,2011,66,60,83,81,62,45,0.6,1 QB,Carson Palmer,38,2003,68,83,88,87,71,37,15.8,2 RB,T.J. Logan,23,2017,66,40,75,63,90,81,0.4,4 RB,David Johnson,26,2015,85,85,87,88,98,100,0.6,2 RB,Kerwynn Williams,26,2013,81,45,75,67,83,80,0.3,1 RB,Andre Ellington,28,2013,58,62,68,62,85,74,0.6,1 RB,Elijhaa Penny,24,2016,76,35,61,67,68,71,0.3,1 RB,Ifeanyi Momah,28,2013,76,40,68,56,70,68,0.3,2 WR,Chad Williams,23,2017,73,45,78,73,85,76,0.6,4 WR,J.J. Nelson,25,2015,99,60,62,71,97,68,0.4,2 WR,Jaron Brown,27,2013,77,58,71,68,87,76,0.8,1 WR,Larry Fitzgerald,34,2004,63,99,97,95,71,73,11.5,1 WR,John Brown,27,2014,77,78,68,81,93,81,0.7,1 WR,Brittan Golden,29,2012,60,45,71,62,81,68,0.4,1 WR,Jermaine Gresham,29,2010,90,67,81,73,67,74,5.5,4 WR,Troy Niklas,25,2014,72,40,73,63,62,65,0.8,1 OL,John Wetzel,26,2013,91,52,70,75,60,60,0.3,1 OL,D.J. Humphries,24,2015,90,54,75,81,68,60,2.1,2 OL,Mike Iupati,30,2010,68,67,83,88,70,61,5.8,3 OL,Will Holden,24,2017,87,40,75,73,63,62,0.5,4 OL,Aaron Brewer,27,2012,80,52,71,54,40,52,0.5,1 OL,Daniel Munyer,25,2015,94,35,81,63,65,60,0.3,1 OL,A.Q. Shipley,31,2009,61,75,81,78,70,70,1.3,2 OL,Alex Boone,30,2009,60,70,71,85,62,71,4.3,3 OL,Evan Boehm,24,2016,82,45,85,68,67,64,0.5,3 OL,Ulrick John,25,2014,95,58,71,62,62,58,0.4,1 OL,Jared Veldheer,30,2010,90,78,81,99,67,67,5.3,2 DL,Josh Mauro,26,2014,71,58,85,73,70,65,2.1,2 DL,Xavier Williams,25,2015,99,40,75,70,65,66,0.3,1 DL,Olsen Pierre,26,2015,73,40,68,60,64,70,0.3,1 DL,Frostee Rucker,34,2006,47,64,71,65,73,74,0.7,1 DL,Robert Nkemdiche,23,2016,68,57,75,67,68,86,2,3 DL,Rodney Gunter,25,2015,68,45,67,60,65,73,0.5,2 DL,Corey Peters,29,2010,68,65,68,63,70,74,2.3,1 LB,Kareem Martin,25,2014,74,40,71,67,68,67,0.5,1 LB,Chandler Jones,27,2012,73,85,78,71,71,83,12.2,5 LB,Josh Bynes,28,2011,64,64,71,73,68,67,0.5,1 LB,Deone Bucannon,25,2014,80,70,85,71,67,86,2.7,2 LB,Karlos Dansby,36,2004,64,67,81,83,81,68,1.7,1 LB,Haason Reddick,23,2017,98,54,81,64,67,80,3.3,4 LB,Markus Golden,26,2015,67,73,75,64,60,73,0.8,2 LB,Philip Wheeler,33,2008,71,57,83,70,65,68,0.7,1 CB,Patrick Peterson,27,2011,62,81,90,100,88,47,10.7,4 CB,Justin Bethel,27,2012,84,56,78,88,78,55,2.3,1 CB,Brandon Williams,25,2016,83,45,85,78,90,40,0.6,3 CB,Ronald Zamort,26,2016,67,35,87,70,78,45,0.3,1 CB,Tramon Williams,34,2006,40,70,85,88,73,37,0,1 S,Tyrann Mathieu,25,2013,83,81,73,92,85,68,9.8,5 S,Johnathan Ford,23,2017,72,40,78,74,88,71,0.4,4 S,Tyvon Branch,31,2008,62,60,78,78,87,70,2.2,1 S,Budda Baker,21,2017,79,45,83,83,85,66,1.6,4 S,Antoine Bethea,33,2006,45,61,75,80,75,71,3.1,3 K,Phil Dawson,42,1998,73,45,63,88,83,45,2.2,2 K,Andy Lee,35,2004,57,45,67,97,71,45,2.4,2 END_PLAYERS ###################################################################### RAMS Los Angeles Rams,LAR QB,Brandon Allen,25,2016,92,40,70,81,60,37,0.4,3 QB,Jared Goff,23,2016,95,90,87,88,84,80,7.3,3 QB,Sean Mannion,25,2015,97,40,78,81,60,37,0.6,2 RB,Malcolm Brown,24,2015,69,40,73,65,83,71,0.3,1 RB,Justin Davis,22,2017,71,40,73,61,81,81,0.3,3 RB,Todd Gurley,23,2015,85,91,85,88,88,94,3.5,2 RB,Tyler Higbee,24,2016,67,40,81,61,65,71,0.6,3 WR,Cooper Kupp,24,2017,69,45,83,73,75,78,0.7,4 WR,Tavon Austin,26,2013,81,81,87,68,95,90,6.4,5 WR,Pharoh Cooper,22,2016,85,45,75,63,78,63,0.5,3 WR,Josh Reynolds,22,2017,90,45,75,73,81,67,0.6,4 WR,Mike Thomas,23,2016,71,40,83,61,81,63,0.4,3 WR,Sammy Watkins,24,2014,98,81,83,88,88,90,5.1,1 WR,Robert Woods,25,2013,94,70,85,71,87,73,4.3,5 WR,Gerald Everett,23,2017,67,40,75,68,73,74,1.3,4 WR,Derek Carrier,27,2012,80,54,70,62,78,71,0.6,1 OL,Andrew Whitworth,36,2006,51,88,85,93,73,90,8.1,3 OL,Rodger Saffold,29,2010,67,70,65,71,71,70,4.5,2 OL,Aaron Neary,25,2016,80,35,81,35,62,58,0.3,2 OL,John Sullivan,32,2008,52,73,88,75,65,63,0.7,1 OL,J.J. Dielman,24,2017,92,45,71,73,63,60,0.4,4 OL,Jake McQuaide,30,2011,80,45,68,59,40,45,0.6,1 OL,Austin Blythe,25,2016,87,40,93,68,67,60,0.4,3 OL,Jamon Brown,24,2015,70,56,68,78,61,60,0.6,2 OL,Andrew Donnal,25,2015,83,52,71,62,62,60,0.5,2 OL,Darrell Williams,24,2015,73,40,70,60,63,63,0.3,1 OL,Rob Havenstein,25,2015,94,73,73,71,64,63,0.8,2 DL,Ethan Westbrooks,27,2014,66,58,68,68,64,70,1.1,1 DL,Morgan Fox,23,2016,66,40,83,71,71,78,0.3,1 DL,Aaron Donald,26,2014,70,85,88,93,93,94,3,2 DL,Tanzel Smart,23,2017,75,40,70,67,64,67,0.4,4 DL,Quinton Jefferson,24,2016,66,40,71,64,65,76,0.4,3 DL,Tyrunn Walker,27,2012,89,59,65,68,65,68,0.5,1 DL,Michael Brockers,27,2012,68,70,81,78,83,80,7.2,3 LB,Matt Longacre,26,2015,84,40,75,60,60,66,0.4,1 LB,Connor Barwin,31,2009,61,65,87,64,67,81,2.2,1 LB,Cory Littleton,24,2016,77,40,70,56,58,66,0.3,2 LB,Bryce Hager,25,2015,74,45,70,70,68,71,0.4,2 LB,Mark Barron,28,2012,69,67,75,65,63,81,6.3,4 LB,Alec Ogletree,26,2013,98,68,78,78,65,83,2.5,1 LB,Robert Quinn,27,2011,70,73,78,65,73,81,7.7,3 LB,Samson Ebukam,22,2017,93,40,83,67,71,73,0.6,4 LB,Ejuan Price,24,2017,74,45,65,63,64,67,0.4,4 CB,Trumaine Johnson,27,2012,89,70,70,88,81,66,10.5,1 CB,Nickell Robey,25,2013,74,64,78,92,83,37,0.6,1 CB,Dominique Hatfield,23,2017,94,35,68,68,73,53,0.3,3 CB,Kayvon Webster,26,2013,87,50,87,80,85,67,2.4,2 S,Lamarcus Joyner,27,2014,69,64,81,86,81,63,1.1,1 S,Cody Davis,28,2013,60,40,71,80,85,67,0.9,1 S,Marqui Christian,23,2016,93,40,78,73,81,71,0.4,3 S,Blake Countess,24,2016,91,35,71,73,81,43,0.3,2 S,Mo Alexander,26,2014,61,68,75,88,87,73,0.7,1 S,John Johnson,22,2017,81,45,85,80,73,71,0.6,4 K,Greg Zuerlein,30,2012,78,45,70,95,81,45,1.6,3 K,Johnny Hekker,27,2012,83,57,73,99,97,57,2,4 END_PLAYERS ###################################################################### SEAHAWKS Seattle Seahawks,SEA QB,Russell Wilson,29,2012,84,85,99,90,81,83,14.9,3 QB,Austin Davis,28,2012,85,50,78,73,62,45,0.6,1 RB,JD McKissic,24,2016,84,40,75,56,81,71,0.3,1 RB,C.J. Prosise,23,2016,89,54,71,67,85,83,0.6,3 RB,Tre Madden,24,2016,86,35,65,60,71,68,0.3,2 RB,Christopher Carson,23,2017,70,40,68,75,75,76,0.4,4 RB,Thomas Rawls,24,2015,95,75,73,85,85,90,0.3,1 RB,Eddie Lacy,27,2013,87,68,85,81,75,90,3.6,1 RB,Nick Vannett,24,2016,83,35,71,60,61,67,0.6,3 WR,Doug Baldwin,29,2011,72,99,81,93,85,73,6.6,4 WR,Paul Richardson,25,2014,79,61,70,73,93,66,1,1 WR,Tanner McEvoy,24,2016,75,45,78,64,78,74,0.3,2 WR,Amara Darboh,23,2017,72,52,81,68,87,74,0.6,4 WR,Tyler Lockett,25,2015,71,68,70,78,90,78,0.6,2 WR,Jimmy Graham,31,2010,53,85,75,78,73,73,6.3,1 WR,Luke Willson,27,2013,80,61,68,65,78,68,1.6,1 OL,George Fant,25,2016,68,59,75,68,62,60,0.3,2 OL,Rees Odhiambo,25,2016,85,45,64,70,62,60,0.6,3 OL,Matt Tobin,27,2013,76,60,73,64,64,63,0.5,1 OL,Jordan Roos,24,2017,78,40,71,93,63,57,0.3,3 OL,Luke Joeckel,26,2013,86,59,75,78,73,60,7.2,1 OL,Justin Britt,26,2014,82,81,71,78,78,73,5.2,4 OL,Ethan Pocic,22,2017,93,56,81,73,71,61,0.9,4 OL,Tyler Ott,25,2014,67,35,71,58,40,40,0.3,1 OL,Mark Glowinski,25,2015,96,60,83,87,63,58,0.5,2 OL,Oday Aboushi,26,2013,88,60,85,63,63,70,0.7,1 OL,Isaiah Battle,24,2015,74,40,83,62,60,64,0.4,1 OL,Germain Ifedi,23,2016,93,63,75,68,64,59,1.9,3 DL,David Bass,27,2013,71,45,75,60,59,73,0.5,1 DL,Michael Bennett,32,2009,53,71,81,85,88,88,7.1,4 DL,Cliff Avril,31,2008,83,78,83,61,61,80,4.7,2 DL,Frank Clark,24,2015,83,63,65,81,63,73,0.7,2 DL,Jarran Reed,25,2016,72,54,78,85,85,74,1,3 DL,Sheldon Richardson,27,2013,84,71,75,81,88,88,3.2,1 DL,Nazair Jones,23,2017,68,45,70,78,71,70,0.6,4 LB,Terence Garvin,26,2013,90,45,75,63,60,67,0.6,1 LB,Marcus Smith II,25,2014,67,56,73,61,62,71,0.4,1 LB,Michael Wilhoite,31,2011,61,60,78,70,64,76,1.3,1 LB,Bobby Wagner,27,2012,81,88,85,99,78,94,8,3 LB,Dewey McDonald,27,2014,64,40,71,45,56,73,0.4,1 LB,K.J. Wright,28,2011,71,85,85,90,70,76,5,2 LB,D.J. Alexander,26,2015,89,45,64,63,60,74,0.4,2 CB,Shaquill Griffin,22,2017,73,40,81,80,88,62,0.6,4 CB,Neiko Thorpe,27,2012,72,40,78,76,85,43,1.3,2 CB,DeShawn Shead,29,2012,82,68,73,86,78,68,0.8,1 CB,Justin Coleman,24,2015,78,56,75,83,81,43,0.4,1 CB,Jeremy Lane,27,2012,86,61,73,88,81,47,4.4,3 CB,Richard Sherman,29,2011,64,87,97,100,81,62,10.5,2 S,Brad McDougald,27,2013,63,67,75,83,81,68,1.6,1 S,Earl Thomas III,28,2010,90,87,87,96,87,74,6.9,2 S,Delano Hill,22,2017,98,45,81,71,75,74,0.6,4 S,Tedric Thompson,22,2017,97,45,73,76,75,67,0.6,4 S,Kam Chancellor,29,2010,79,87,93,92,78,88,8.4,4 K,Blair Walsh,27,2012,89,40,75,93,64,40,0.7,1 K,Jon Ryan,36,2006,49,45,68,83,68,45,1.9,3 END_PLAYERS ###################################################################### 49ERS San Francisco 49ers,SF QB,Jimmy Garropolo,24,2016,86,92,84,85,88,81,5,2 QB,C.J. Beathard,24,2017,77,45,75,87,62,55,0.7,4 RB,Matt Breida,22,2017,95,35,61,62,65,68,0.3,3 RB,Raheem Mostert,25,2015,64,40,75,57,90,71,0.4,1 RB,Carlos Hyde,26,2014,88,71,78,78,81,94,0.7,1 RB,Kyle Juszczyk,26,2013,75,73,87,65,68,73,4.1,4 WR,Aldrick Robinson,29,2011,64,63,70,64,88,71,1.3,2 WR,Marquise Goodwin,27,2013,64,61,68,64,95,67,2.7,2 WR,Kendrick Bourne,22,2017,67,40,63,59,81,65,0.3,3 WR,Pierre Garcon,31,2008,64,88,78,90,83,78,7.4,5 WR,Victor Bolden Jr.,22,2017,66,40,78,63,81,68,0.3,3 WR,Trent Taylor,23,2017,74,40,81,75,75,80,0.4,4 WR,Logan Paulsen,30,2010,83,60,78,56,60,46,0.7,1 WR,George Kittle,24,2017,93,40,73,60,78,65,0.5,4 WR,Garrett Celek,29,2012,90,60,65,63,65,63,2,3 OL,John Theus,23,2016,93,95,85,90,91,80,0.4,3 OL,Joe Staley,33,2007,64,88,85,88,75,63,5,3 OL,Laken Tomlinson,25,2015,66,60,75,78,60,62,2,2 OL,Zane Beadles,31,2010,63,68,85,70,60,59,2.6,2 OL,Daniel Kilgore,30,2011,61,67,75,83,62,59,1.1,1 OL,Kyle Nelson,31,2011,61,50,71,54,40,45,0.7,2 OL,Joshua Garnett,23,2016,68,60,81,71,60,59,2.2,3 OL,Erik Magnuson,23,2017,69,40,75,81,81,75,0.3,3 OL,Brandon Fusco,29,2011,74,60,65,83,61,60,0.9,1 OL,Trent Brown,24,2015,76,62,65,87,60,67,0.4,2 OL,Garry Gilliam,27,2014,83,60,67,71,60,60,1.7,1 DL,Aaron Lynch,24,2014,94,60,67,61,64,80,0.6,1 DL,Elvis Dumervil,33,2006,60,87,73,63,64,76,2.8,2 DL,Arik Armstead,24,2015,90,60,68,73,78,78,2.4,2 DL,Tank Carradine,27,2013,88,60,68,70,71,83,2.4,1 DL,Xavier Cooper,26,2015,85,54,78,70,65,73,0.5,2 DL,Solomon Thomas,22,2017,77,50,88,87,81,83,7.3,4 DL,D.J. Jones,22,2017,92,35,83,83,71,74,0.4,4 DL,Earl Mitchell,30,2010,60,60,70,65,67,78,3,4 DL,DeForest Buckner,23,2016,97,62,87,67,73,86,4.6,3 LB,Dekoda Watson,29,2010,60,45,65,60,57,74,1.3,3 LB,Eli Harold,23,2015,92,45,75,62,64,74,0.6,2 LB,Pita Taumoepenu,23,2017,94,40,83,58,61,67,0.4,4 LB,Navorro Bowman,29,2010,64,85,73,88,81,80,6.7,6 LB,Brock Coyle,27,2014,85,56,85,64,65,76,1.2,1 LB,Ray-Ray Armstrong,26,2013,94,59,71,64,60,74,1.1,2 LB,Reuben Foster,23,2017,82,58,68,73,75,74,2.1,4 LB,Malcolm Smith,28,2011,73,67,70,68,64,81,4.2,5 CB,K'Waun Williams,26,2014,63,57,78,83,81,43,0.4,1 CB,Dontae Johnson,26,2014,87,45,78,81,87,40,0.5,1 CB,Ahkello Witherspoon,22,2017,66,45,71,83,87,37,0.8,4 CB,Rashard Robinson,22,2016,91,60,85,86,90,37,0.5,3 CB,Keith Reaser,26,2014,69,45,62,78,85,40,0.4,1 S,Adrian Colbert,24,2017,71,40,75,71,83,45,0.4,4 S,Lorenzo Jerome,23,2017,95,40,83,68,73,66,0.3,3 S,Jimmie Ward,26,2014,70,62,85,86,85,67,2.5,2 S,Jaquiski Tartt,25,2015,77,58,83,76,83,60,1.1,2 S,Eric Reid,26,2013,69,63,78,88,81,60,2.5,1 K,Robbie Gould,36,2005,41,40,65,93,73,40,1.4,2 K,Bradley Pinion,23,2015,97,40,67,87,61,40,0.4,2 END_PLAYERS
lxchinesszz / Smile GateWay Api基于springboot定义接口网关
GuilhermeSAlves / Nh## Antdroid/Minotauri NFL Roster for 2017-18 Season ## version 1.4 (09-13-2017) ##Changelog ##v1.0 Initial Release ##v1.11 Fixed extra comma bug affecting iOS and players with initials for first name ##v1.20: Randomized Potential based on Age ##v1.30 Fixed Player Salaries; New Coverage Formula; Using PFC-Converter v1.2 ##v1.40 Normalizing Salaries to avoid salary cap issues ## http://www.AntDroid.net ###################################################################### RAVENS Baltimore Ravens,BAL OL,Morgan Cox,31,2010,69,73,83,64,51,66,0.7,4 WR,Benjamin Watson,37,2004,68,82,86,85,80,73,2.2,1 K,Justin Tucker,28,2012,68,70,84,98,98,70,3.4,3 QB,Ryan Mallett,29,2011,76,62,87,94,74,42,1.8,1 S,Eric Weddle,32,2007,74,93,92,87,85,81,4.9,3 CB,Brandon Carr,31,2008,74,80,90,86,87,77,4.1,4 CB,Jimmy Smith,29,2011,78,88,89,89,89,84,9.1,3 OL,Austin Howard,30,2010,76,77,84,87,91,77,3.2,3 WR,Jeremy Maclin,29,2009,71,82,84,91,92,83,4.8,2 RB,Danny Woodhead,32,2008,68,83,82,80,88,81,2.2,3 S,Lardarius Webb,32,2009,65,77,87,87,90,63,1.5,3 LB,Terrell Suggs,35,2003,44,84,92,91,94,79,5.1,2 K,Sam Koch,35,2006,67,72,80,91,93,72,2.4,4 OL,Marshal Yanda,33,2007,79,98,93,93,94,87,5.7,2 QB,Joe Flacco,32,2008,79,78,95,97,80,59,19,2 WR,Mike Wallace,31,2009,77,86,89,85,92,80,5.4,1 DL,Brandon Williams,28,2013,71,90,80,96,95,81,7.8,5 S,Anthony Levine Sr.,30,2010,72,77,83,85,86,66,0.9,3 LB,Steven Johnson,29,2012,59,66,85,82,77,77,0.5,1 OL,Ryan Jensen,26,2013,81,77,88,90,92,74,1.1,1 S,Tony Jefferson,25,2013,81,91,84,85,84,80,6.6,4 OL,Luke Bowanko,26,2014,69,65,82,86,83,74,0.4,1 LB,CJ Mosley,25,2014,83,85,89,93,84,86,2.8,2 DL,Brent Urban,26,2014,80,74,77,79,81,81,0.4,1 RB,Terrance West,26,2014,83,86,90,85,88,86,1.1,1 WR,Michael Campanaro,26,2014,77,73,83,82,90,77,0.9,1 OL,James Hurst,26,2014,73,79,81,78,73,73,0.9,1 RB,Javorius Allen,26,2015,71,73,85,83,88,81,0.5,2 WR,Breshad Perriman,24,2015,81,68,78,78,95,83,2,2 WR,Vince Mayle,26,2015,66,51,85,78,83,81,0.3,1 RB,Maxx Williams,23,2015,75,65,83,75,80,78,0.8,2 WR,Nick Boyle,24,2015,81,75,89,82,72,66,0.4,2 LB,Za'Darius Smith,25,2015,73,74,87,80,82,76,0.5,2 DL,Carl Davis,25,2015,73,77,78,88,87,77,0.5,2 RB,Alex Collins,23,2016,78,75,89,74,88,83,0.4,3 RB,Kenneth Dixon,23,2016,86,73,87,85,87,88,0.5,3 OL,Ronnie Stanley,23,2016,92,85,88,87,89,77,5,3 LB,Matt Judon,25,2016,73,63,83,80,86,76,0.4,3 DL,Bronson Kaufusi,26,2016,69,62,89,81,82,83,0.6,3 DL,Willie Henry,23,2016,74,68,84,86,87,86,0.5,3 LB,Kamalei Correa,23,2016,76,69,87,82,82,81,1.2,3 CB,Maurice Canady,23,2016,67,55,86,81,89,79,0.4,3 CB,Tavon Young,23,2016,82,76,89,85,90,71,0.5,3 WR,Chris Moore,24,2016,78,58,86,77,90,73,0.5,3 DL,Michael Pierce,25,2016,82,85,84,94,92,84,0.3,2 OL,Matt Skura,24,2016,74,68,87,86,74,73,0.3,2 LB,Patrick Onwuasor,25,2016,69,71,88,79,80,81,0.3,1 DL,Chris Wormley,24,2017,69,63,86,83,83,86,0.7,4 LB,Tim Williams,24,2017,71,64,84,76,80,79,0.6,4 LB,Tyus Bowser,22,2017,67,63,87,79,80,80,1.2,4 CB,Marlon Humphrey,21,2017,70,70,88,84,92,82,2.8,4 OL,Jermaine Eluemunor,23,2017,77,56,91,92,74,74,0.4,4 S,Chuck Clark,22,2017,66,55,89,78,88,70,0.4,4 CB,Jaylen Hill,23,2017,78,57,80,79,84,68,0.3,3 DL,Patrick Ricard,23,2017,75,63,82,90,88,82,0.3,3 END_PLAYERS ###################################################################### BENGALS0 Cincinnati Bengals,CIN DL,Carlos Dunlap,28,2010,69,84,82,79,84,89,4.9,2 DL,Geno Atkins,29,2010,79,93,85,90,90,84,8.2,2 OL,Andre Smith,30,2009,79,67,86,95,75,73,2.9,1 DL,Michael Johnson,30,2009,67,76,83,73,80,88,3.7,2 K,Kevin Huber,32,2009,63,57,83,88,75,57,1.9,1 CB,Adam Jones,34,2005,61,79,87,87,87,68,4.8,2 OL,Clark Harris,33,2007,42,68,84,74,54,62,0.6,1 DL,Pat Sims,32,2008,65,76,84,89,88,79,0.7,1 QB,Andy Dalton,30,2011,80,82,94,92,83,56,11,4 WR,AJ Green,29,2011,78,98,93,95,91,89,9,3 OL,Clint Boling,28,2011,73,78,92,87,74,82,3.4,3 WR,Brandon LaFell,31,2010,67,84,89,88,86,80,2.7,2 WR,Tyler Eifert,27,2013,84,88,85,89,84,78,2.9,1 RB,Giovani Bernard,26,2013,84,81,82,82,91,85,2.9,3 LB,Kevin Minter,27,2013,84,86,86,84,84,82,3.8,1 S,Shawn Williams,26,2013,80,76,90,85,90,81,2.7,4 OL,Eric Winston,34,2006,66,75,88,82,75,73,0.6,1 LB,Vincent Rey,30,2010,69,81,89,90,84,80,2.1,2 CB,Dre Kirkpatrick,28,2012,69,81,85,86,88,64,7.1,5 K,Randy Bullock,28,2012,65,55,77,94,82,55,0.5,2 S,George Iloka,27,2012,86,82,88,85,85,65,4,4 LB,Vontaze Burfict,27,2012,88,90,95,90,88,81,3.3,1 OL,TJ Johnson,27,2013,66,64,84,86,73,76,1.1,2 QB,AJ McCarron,27,2014,70,76,92,86,80,53,0.4,1 DL,Chris Smith,25,2014,64,52,84,85,85,86,0.4,1 CB,Darqueze Dennard,26,2014,81,75,89,85,92,82,1.8,1 RB,Jeremy Hill,25,2014,84,82,89,86,88,85,0.7,1 OL,Russell Bodine,25,2014,86,82,89,97,73,72,0.6,1 RB,Ryan Hewitt,26,2014,77,71,88,69,77,69,1.4,3 WR,Tyler Kroft,25,2015,74,69,79,81,81,74,0.5,2 WR,CJ Uzomah,24,2015,76,64,86,77,85,75,0.4,2 OL,Cedric Ogbuehi,25,2015,76,76,77,82,73,73,2.1,2 OL,Jake Fisher,24,2015,84,77,83,83,73,73,0.8,2 CB,Josh Shaw,25,2015,77,65,80,82,90,79,0.5,2 OL,Trey Hopkins,25,2014,76,69,83,87,73,72,0.3,2 WR,Tyler Boyd,23,2016,78,76,85,86,88,69,0.8,3 OL,Christian Westerman,24,2016,67,58,87,88,77,74,0.4,3 OL,Alex Redmond,22,2016,71,54,78,86,72,71,0.3,2 LB,Nick Vigil,24,2016,67,63,89,87,80,77,0.6,3 CB,William Jackson III,25,2016,71,65,86,85,92,61,2.2,3 S,KeiVarae Russell,24,2016,66,59,86,83,89,69,0.5,3 DL,Andrew Billings,22,2016,65,57,83,91,87,80,0.5,3 WR,Cody Core,23,2016,81,64,85,80,90,73,0.4,3 S,Clayton Fejedelem,24,2016,77,64,91,81,87,70,0.4,3 WR,Alex Erickson,25,2016,64,50,86,80,88,74,0.3,2 RB,Joe Mixon,21,2017,81,68,91,85,91,87,1.1,4 WR,John Ross,22,2017,75,71,86,83,98,77,4.1,4 DL,Jordan Willis,22,2017,74,63,91,85,87,89,0.6,4 LB,Carl Lawson,22,2017,82,70,81,80,87,76,0.6,4 DL,Ryan Glasgow,24,2017,73,68,83,88,87,76,0.5,4 WR,Josh Malone,21,2017,80,64,86,83,92,69,0.5,4 K,Marshall Koehn,25,2016,67,50,68,50,88,50,0.3,2 LB,Hardy Nickerson,23,2017,66,53,88,86,82,74,0.3,3 LB,Jordan Evans,22,2017,78,59,88,77,79,81,0.4,4 RB,Cethan Carter,24,2017,59,46,82,71,83,71,0.3,3 END_PLAYERS ###################################################################### BROWNS Cleveland Browns,CLE K,Britton Colquitt,32,2009,70,62,82,88,81,62,1.7,4 OL,Joe Thomas,33,2007,64,98,97,93,86,95,6.9,2 LB,Jamie Collins,28,2013,71,79,90,87,83,86,8.2,4 CB,Jamar Taylor,27,2013,73,75,89,86,92,70,2.9,3 WR,Kenny Britt,29,2009,73,79,89,85,86,83,5.8,4 CB,Jason McCourty,30,2009,70,85,82,88,92,84,2.2,2 OL,JC Tretter,26,2013,76,78,86,89,74,74,4.2,3 OL,Kevin Zeitler,27,2012,74,84,92,91,75,81,8.6,5 LB,Tank Carder,28,2012,59,64,90,83,77,79,0.8,1 OL,Charley Hughlett,27,2014,77,65,82,75,70,67,0.6,6 OL,Marcus Martin,24,2014,76,77,84,82,73,72,1.1,1 OL,Joel Bitonio,26,2014,85,86,91,86,77,89,5.2,6 LB,Christian Kirksey,25,2014,78,84,85,92,82,86,5.3,5 RB,Isaiah Crowell,24,2014,78,78,87,87,89,85,1.6,1 DL,Jamie Meder,26,2014,75,76,90,87,83,79,0.3,1 RB,Duke Johnson,24,2015,77,80,83,80,90,85,0.6,2 WR,Sammie Coates,24,2015,67,64,88,77,91,81,0.5,2 WR,Randall Telfer,25,2015,66,66,79,76,78,75,0.4,2 OL,Austin Reiter,26,2015,62,56,85,77,79,72,0.3,1 DL,Nate Orchard,24,2015,84,69,88,76,73,81,0.9,2 DL,Danny Shelton,24,2015,83,84,85,95,95,79,2.8,2 S,Derron Smith,25,2015,77,65,82,80,85,54,0.4,2 LB,Josh Keyes,24,2015,65,52,87,73,77,75,0.3,1 DL,TY McGill,25,2015,79,68,87,85,85,81,0.3,1 WR,Kasen Williams,25,2015,65,62,77,80,85,72,0.3,1 QB,Kevin Hogan,25,2016,68,73,93,86,77,69,0.3,1 QB,Cody Kessler,24,2016,76,66,89,89,76,50,0.6,3 RB,Dan Vitale,24,2016,72,61,88,73,85,78,0.3,2 WR,Corey Coleman,23,2016,77,76,87,83,93,78,2.7,3 WR,Rashard Higgins,23,2016,71,63,89,82,85,73,0.4,3 OL,Spencer Drango,25,2016,74,75,90,83,79,76,0.4,3 OL,Shon Coleman,26,2016,65,66,83,86,84,74,0.6,3 DL,Emmanuel Ogbah,24,2016,79,65,88,77,82,88,1.4,3 DL,Carl Nassib,24,2016,73,66,86,75,76,83,0.7,3 LB,Joe Schobert,24,2016,82,72,90,72,77,79,0.5,3 CB,Briean Boddy-Calhoun,24,2016,81,83,85,87,90,68,0.3,2 WR,Ricardo Louis,23,2016,76,70,88,81,91,74,0.5,3 S,Derrick Kindred,24,2016,89,79,89,85,89,77,0.5,3 WR,Seth DeValve,24,2016,75,70,86,82,83,76,0.5,3 RB,Darius Jackson,24,2016,62,48,88,82,92,79,0.4,3 CB,Darius Hillary,24,2016,70,46,82,76,87,62,0.3,2 CB,Michael Jordan,25,2016,73,60,84,81,85,66,0.3,2 LB,James Burgess,23,2016,65,60,85,81,83,75,0.3,2 QB,DeShone Kizer,21,2017,79,64,94,95,75,76,1,4 RB,Matt Dayes,22,2017,66,54,84,71,84,73,0.4,4 WR,David Njoku,21,2017,73,65,86,82,85,79,2.2,4 OL,Zach Banner,24,2017,78,62,81,90,81,74,0.5,4 K,Zane Gonzalez,22,2017,75,51,79,96,78,51,0.4,4 DL,Myles Garrett,22,2017,78,70,84,96,89,88,7.6,4 DL,Caleb Brantley,23,2017,76,56,84,89,88,80,0.4,4 DL,Larry Ogunjobi,23,2017,77,70,87,88,86,84,0.7,4 S,Kai Nacua,22,2017,70,53,88,82,88,66,0.3,1 S,Jabrill Peppers,22,2017,73,68,89,84,90,79,2.4,4 CB,Howard Wilson,22,2017,64,57,86,80,87,74,0.5,4 DL,Trevon Coley,23,2016,72,65,84,85,86,87,0.3,2 END_PLAYERS ###################################################################### STEELERS Pittsburgh Steelers,PIT LB,Arthur Moats,29,2010,69,67,84,76,75,77,1.9,1 CB,Joe Haden,28,2010,71,80,93,90,89,68,6.5,3 OL,Marcus Gilbert,29,2011,82,90,86,91,74,86,4.6,3 DL,Cameron Heyward,28,2011,75,90,89,90,92,84,7.3,4 DL,Tyson Alualu,30,2010,75,81,86,86,87,82,2.2,2 WR,Darrius Heyward-Bey,30,2009,73,81,86,79,91,81,0.8,2 S,Mike Mitchell,30,2009,70,78,91,84,87,70,3.6,2 WR,Justin Hunter,26,2013,74,66,81,76,90,78,0.6,1 WR,Vance McDonald,27,2013,69,66,83,79,83,73,4,5 S,JJ Wilcox,26,2013,79,75,86,84,88,78,1.9,2 OL,Maurkice Pouncey,28,2010,86,92,85,91,77,75,6.8,3 QB,Ben Roethlisbergr,35,2004,72,85,95,95,85,72,16.4,3 LB,James Harrison,39,2002,60,83,90,85,95,76,1.2,2 CB,William Gay,32,2007,73,86,90,86,88,84,1.9,2 OL,Ramon Foster,31,2009,73,94,84,88,72,85,2.5,2 QB,Landry Jones,28,2013,74,58,89,91,77,43,1.5,2 OL,David DeCastro,27,2012,92,94,92,94,96,84,8.2,5 CB,Coty Sensabaugh,29,2012,70,70,87,86,90,47,0.9,2 S,Robert Golden,27,2012,76,70,87,83,87,68,1.2,2 LB,LJ Fort,27,2012,69,65,86,84,82,78,0.3,1 LB,Vince Williams,28,2013,70,79,84,86,83,79,1.5,2 DL,Stephon Tuitt,24,2014,83,86,80,91,91,82,0.9,1 DL,Daniel McCullers,25,2014,81,73,80,88,88,72,0.4,1 LB,Ryan Shazier,25,2014,81,85,84,86,88,90,3,2 WR,Martavis Bryant,26,2014,81,81,87,83,93,79,0.5,1 OL,Chris Hubbard,26,2013,71,68,84,77,75,72,1.1,1 WR,Jesse James,23,2015,75,79,85,84,83,68,0.4,2 LB,Anthony Chickillo,25,2015,70,66,89,76,81,76,0.4,1 LB,Bud Dupree,24,2015,83,68,86,82,80,83,2.1,2 DL,Leterrius Walton,25,2015,74,73,83,85,84,78,0.4,2 OL,BJ Finney,26,2015,72,70,88,84,75,83,0.3,1 RB,Terrell Watson,24,2015,72,67,86,81,87,85,0.3,1 WR,Eli Rogers,25,2015,79,78,85,88,88,79,0.3,1 WR,Xavier Grimble,25,2014,78,67,82,76,75,68,0.3,1 K,Chris Boswell,26,2014,66,68,80,92,91,68,0.4,1 K,Jordan Berry,26,2014,66,64,80,91,83,64,0.3,1 RB,Roosevelt Nix,25,2014,71,75,87,71,79,73,0.4,1 OL,Alejandro Villanueva,29,2014,88,87,87,86,81,77,4.6,4 OL,Matt Feiler,25,2014,68,52,85,94,79,72,0.3,1 OL,Jerald Hawkins,24,2016,65,58,89,81,80,76,0.5,3 DL,Javon Hargrave,24,2016,84,77,88,85,85,86,0.6,3 CB,Mike Hilton,23,2016,83,78,84,85,87,76,0.3,1 LB,Tyler Matakevich,25,2016,72,58,91,83,84,76,0.4,3 CB,Artie Burns,22,2016,88,81,84,87,91,67,2.2,3 S,Sean Davis,24,2016,80,73,89,85,90,67,0.8,3 OL,Kameron Canaday,25,2016,68,52,87,69,48,75,0.3,1 QB,Joshua Dobbs,22,2017,68,66,87,91,76,83,0.5,4 RB,James Conner,22,2017,79,67,87,86,85,79,0.6,4 WR,JuJu Smith-Schuste,21,2017,81,73,92,85,88,81,0.8,4 CB,Brian Allen,24,2017,61,51,86,80,91,58,0.4,4 LB,TJ Watt,23,2017,82,68,86,86,84,81,2.1,4 CB,Cameron Sutton,22,2017,79,62,87,81,88,67,0.6,4 LB,Keion Adams,22,2017,71,51,88,76,83,76,0.4,4 END_PLAYERS ###################################################################### BILLS Buffalo Bills,BUF OL,Eric Wood,31,2009,82,88,87,88,75,72,6.5,3 DL,Kyle Williams,34,2006,60,87,85,90,92,81,5.3,1 WR,Charles Clay,28,2011,77,83,92,87,83,80,5.7,3 QB,Tyrod Taylor,28,2011,81,84,89,91,81,78,11.2,2 RB,Mike Tolbert,32,2008,76,85,88,83,77,77,0.6,1 DL,Jerry Hughes,29,2010,72,83,91,76,81,88,6.2,3 OL,Richie Incognito,34,2005,72,92,92,94,86,86,3.8,2 CB,Shareece Wright,30,2011,66,71,87,84,90,71,0.5,1 RB,LeSean McCoy,29,2009,74,88,85,81,90,86,6.4,3 S,Colt Anderson,32,2009,61,71,87,80,85,66,0.6,1 CB,Leonard Johnson,27,2012,74,70,88,83,86,70,0.6,1 OL,Vladimir Ducasse,30,2010,72,78,87,92,74,76,0.7,3 RB,Travaris Cadet,28,2012,69,68,85,76,87,83,0.5,1 DL,Cedric Thornton,29,2011,63,72,82,88,89,81,3.3,3 RB,Patrick DiMarco,28,2011,69,81,90,73,74,73,1.6,4 WR,Brandon Tate,30,2009,61,66,84,75,88,84,0.6,1 WR,Deonte Thompson,28,2012,61,71,80,79,92,77,0.6,1 LB,Lorenzo Alexander,34,2005,48,85,87,83,86,83,2.1,2 S,Shamarko Thomas,26,2013,66,63,86,84,90,70,0.5,1 QB,Joe Webb,31,2010,61,68,83,89,68,83,0.6,1 LB,Ramon Humber,30,2009,67,74,82,82,76,78,0.6,1 K,Steven Hauschka,32,2008,59,55,81,96,86,55,2.4,3 WR,Andre Holmes,29,2011,70,76,82,82,87,77,1.4,3 S,Micah Hyde,27,2013,75,83,86,86,88,73,4.6,5 OL,Jordan Mills,27,2013,68,76,86,84,72,75,1.3,2 OL,Cordy Glenn,28,2012,90,89,86,93,72,76,9.1,4 DL,Jerel Worthy,27,2012,71,68,83,82,86,82,0.4,1 DL,Ryan Davis,28,2012,59,66,83,74,75,83,0.7,2 S,Jordan Poyer,26,2013,86,86,85,85,87,56,2.5,4 CB,EJ Gaines,25,2014,85,83,86,85,89,75,0.5,1 WR,Jordan Matthews,25,2014,88,86,91,82,90,80,1,1 WR,Logan Thomas,26,2014,68,58,89,73,84,78,0.5,1 LB,Preston Brown,25,2014,83,82,93,81,84,83,0.7,1 WR,Kelvin Benjamin,26,2014,82,88,86,89,86,81,2.5,2 OL,Seantrel Henderson,25,2014,77,75,75,83,77,69,0.5,1 K,Colton Schmidt,27,2014,70,58,82,89,76,58,1,2 OL,Ryan Groy,27,2014,78,73,83,86,77,76,1.5,2 WR,Nick O'Leary,25,2015,69,68,88,84,75,66,0.3,1 OL,John Miller,24,2015,90,82,84,86,73,82,0.5,2 WR,Khari Lee,25,2015,75,61,86,74,76,73,0.4,2 WR,Jeremy Butler,26,2014,62,57,86,79,86,73,0.4,1 DL,Eddie Yarbrough,24,2016,80,65,78,82,83,86,0.3,1 DL,Shaq Lawson,23,2016,70,70,83,85,88,88,2.4,3 DL,Adolphus Washington,25,2016,71,67,84,75,82,86,0.6,3 CB,Lafayette Pitts,25,2016,74,58,87,80,90,62,0.3,1 QB,Nathan Peterman,23,2017,79,67,90,91,76,66,0.4,4 WR,Zay Jones,22,2017,73,70,93,88,90,81,1.5,4 OL,Dion Dawkins,23,2017,82,68,89,90,78,73,0.8,4 OL,Conor McDermott,25,2017,69,59,86,84,74,75,0.4,4 CB,Tre'Davious White,22,2017,88,77,89,85,90,81,2.3,4 LB,Matt Milano,23,2017,78,58,91,83,83,75,0.4,4 S,Trae Elston,23,2016,67,50,83,77,89,72,0.3,2 OL,Reid Ferguson,23,2016,73,50,87,50,46,75,0.3,2 LB,Deon Lacey,27,2013,69,63,84,75,77,77,0.4,2 LB,Tanner Vallejo,23,2017,72,55,83,84,82,75,0.4,4 END_PLAYERS ###################################################################### DOLPHINS Miami Dolphins,MIA QB,Jay Cutler,34,2006,59,75,80,95,77,50,6,1 LB,Rey Maualuga,30,2009,64,73,92,85,87,75,0.6,1 OL,John Denney,39,2005,76,87,87,74,52,65,0.6,1 OL,Ted Larsen,30,2010,80,72,88,79,80,73,1.4,3 OL,Mike Pouncey,28,2011,86,81,80,88,74,74,6,4 OL,Sam Young,30,2010,80,72,84,83,81,75,0.6,1 S,Reshad Jones,29,2010,79,93,84,89,86,84,7.9,6 WR,Anthony Fasano,33,2006,49,79,88,77,76,69,2.4,1 DL,Cameron Wake,35,2009,56,91,88,85,85,88,5.1,2 WR,Julius Thomas,29,2011,71,77,83,84,85,81,3.7,2 S,Nate Allen,30,2010,69,76,82,84,86,70,3.2,1 DL,Ndamukong Suh,30,2010,76,85,95,98,99,91,14.5,4 QB,Matt Moore,33,2007,73,78,91,84,78,50,1.3,1 LB,Kiko Alonso,27,2013,76,81,85,87,80,81,5.4,4 OL,Jermon Bushrod,33,2007,72,81,91,87,72,72,2.2,1 S,TJ McDonald,26,2013,78,77,85,85,86,66,0.2,5 LB,Lawrence Timmons,31,2007,75,86,90,86,84,84,5.2,2 CB,Alterraun Verner,29,2010,62,67,86,84,86,84,0.5,1 DL,William Hayes,32,2008,73,85,88,85,91,88,4,1 WR,Kenny Stills,25,2013,84,85,88,86,92,80,5.8,4 QB,Ryan Tannehill,29,2012,75,81,94,91,81,74,13.5,4 DL,Andre Branch,28,2012,73,77,79,71,75,84,6,3 S,Michael Thomas,27,2012,78,75,87,84,86,67,1.1,1 RB,MarQueis Gray,28,2013,66,70,85,74,81,78,0.7,2 CB,Walt Aikens,26,2014,69,65,87,82,89,68,0.5,1 DL,Terrence Fede,26,2014,69,57,86,76,80,85,0.3,1 OL,Ja'Wuan James,25,2014,84,84,86,84,73,80,2.8,2 QB,David Fales,27,2014,63,55,90,83,79,55,0.4,1 WR,Jarvis Landry,25,2014,89,87,91,96,91,88,0.6,1 K,Cody Parkey,25,2014,67,55,86,94,81,55,0.4,1 RB,Senorise Perry,26,2014,65,51,84,70,92,78,0.4,2 RB,Damien Williams,25,2014,79,73,85,82,91,83,1.1,1 WR,DeVante Parker,24,2015,90,87,87,89,91,80,2.5,2 DL,Jordan Phillips,25,2015,68,70,74,89,87,79,0.9,2 LB,Stephone Anthony,25,2015,75,69,83,84,83,82,1.7,2 CB,Bobby McCain,24,2015,85,78,86,86,89,66,0.4,2 LB,Mike Hull,26,2015,73,69,88,83,87,79,0.4,1 OL,Jesse Davis,26,2015,69,59,88,84,74,72,0.3,2 RB,Kenyan Drake,23,2016,76,65,82,73,91,81,0.6,3 WR,Leonte Carroo,23,2016,69,61,87,83,89,73,0.6,3 OL,Laremy Tunsil,23,2016,74,77,91,88,80,73,3,3 OL,Jake Brendel,25,2016,66,50,90,80,74,75,0.3,1 CB,Xavien Howard,24,2016,79,65,90,84,91,72,1.3,3 S,Jordan Lucas,24,2016,64,48,85,79,91,68,0.4,3 WR,Jakeem Grant,25,2016,58,51,84,80,96,75,0.4,3 OL,Isaac Asiata,25,2017,74,57,92,92,79,76,0.4,4 DL,Charles Harris,22,2017,74,68,85,76,79,88,2.5,4 DL,Vincent Taylor,23,2017,69,63,87,84,82,77,0.4,4 DL,Davon Godchaux,23,2017,82,67,85,85,84,81,0.4,4 CB,Cordrea Tankersley,24,2017,74,62,92,79,92,79,0.6,4 OL,Zach Sterup,25,2016,64,54,85,86,79,73,0.3,1 K,Matt Haack,23,2017,65,54,80,96,77,54,0.3,3 CB,Torry McTyer,22,2017,67,52,84,79,92,61,0.3,3 LB,Chase Allen,24,2017,70,65,88,83,82,79,0.3,3 S,Maurice Smith,22,2017,77,56,84,76,85,64,0.3,3 END_PLAYERS ###################################################################### PATRIOTS New England Patriots,NE DL,Alan Branch,33,2007,48,73,81,91,90,77,3.1,2 RB,Dion Lewis,27,2011,83,83,80,81,91,85,1,1 OL,Marcus Cannon,29,2011,88,87,79,92,85,73,4.7,5 OL,Nate Solder,29,2011,89,88,87,90,74,73,8.5,1 DL,Lawrence Guy,27,2011,80,81,88,84,86,81,2.6,4 WR,Martellus Bennett,30,2008,75,84,87,86,79,75,5.4,3 DL,Ricky Jean-Francois,31,2009,65,73,79,84,86,81,0.5,1 RB,James Develin,29,2010,75,84,87,69,70,65,0.8,2 LB,David Harris,33,2007,67,76,92,87,85,76,1.9,2 RB,Brandon Bolden,27,2012,72,71,86,80,88,80,0.5,1 S,Devin McCourty,30,2010,79,92,91,92,90,72,7.5,3 S,Patrick Chung,30,2009,69,83,94,85,86,72,2.1,2 QB,Tom Brady,40,2000,69,99,98,95,98,53,15,3 K,Stephen Gostkowski,33,2006,63,60,81,94,82,60,3.5,2 WR,Matthew Slater,32,2008,70,81,86,74,87,75,1.3,1 QB,Brian Hoyer,32,2009,70,77,82,90,78,47,4.8,2 WR,Julian Edelman,31,2009,75,96,89,90,86,86,4.4,3 WR,Danny Amendola,32,2008,71,85,87,89,84,80,2.7,1 S,Duron Harmon,26,2013,81,79,87,85,88,64,3.3,4 WR,Chris Hogan,29,2011,79,90,85,93,88,79,2.4,2 RB,Mike Gillislee,27,2013,81,81,87,86,88,85,1.9,2 CB,Stephon Gilmore,27,2012,80,81,89,88,92,69,9.9,5 LB,Shea McClellin,28,2012,64,78,84,82,77,78,2.3,2 LB,Dont'a Hightower,27,2012,80,90,91,94,93,83,6.8,4 WR,Dwayne Allen,27,2012,85,82,85,84,76,70,5,3 S,Nate Ebner,29,2012,64,62,95,80,87,74,0.7,1 RB,Rex Burkhead,27,2013,77,79,90,85,84,84,2.5,1 CB,Johnson Bademosi,27,2012,77,64,89,85,90,77,1.9,1 K,Ryan Allen,27,2013,74,59,84,91,80,59,1.6,2 OL,LaAdrian Waddle,26,2013,81,72,83,87,73,73,0.8,1 LB,Kyle Van Noy,26,2014,78,74,84,83,79,81,1.1,1 OL,Cameron Fleming,25,2014,78,72,84,85,74,79,1.1,1 DL,Cassius Marsh,25,2014,81,72,89,66,71,82,0.5,1 RB,James White,25,2014,79,78,83,82,89,83,2.5,4 LB,Marquis Flowers,25,2014,64,63,84,71,76,81,0.4,1 LB,Trevor Reilly,29,2014,64,64,86,76,80,75,0.4,1 WR,Brandin Cooks,24,2014,91,87,88,90,96,83,2.5,2 CB,Malcolm Butler,27,2014,88,90,85,90,89,81,2.3,1 WR,Phillip Dorsett,24,2015,84,72,78,84,96,78,1.8,2 OL,Shaq Mason,24,2015,84,86,85,87,92,75,0.5,2 OL,Joe Cardona,25,2015,61,48,86,82,46,67,0.4,2 DL,Trey Flowers,24,2015,75,80,89,87,89,86,0.5,2 DL,Malcom Brown,23,2015,86,82,82,85,87,81,1.7,2 CB,Eric Rowe,25,2015,69,66,85,85,91,77,1,2 S,Jordan Richards,24,2015,76,59,90,81,86,73,0.7,2 S,Brandon King,24,2015,74,61,83,81,89,54,0.4,1 OL,David Andrews,25,2015,84,88,88,86,85,73,1.7,4 OL,Ted Karras,24,2016,69,54,90,86,80,75,0.4,3 CB,Jonathan Jones,24,2016,81,62,78,82,95,61,0.3,2 OL,Joe Thuney,25,2016,83,83,90,86,74,78,0.6,3 LB,Elandon Roberts,23,2016,86,73,86,86,87,79,0.4,3 DL,Deatrich Wise Jr.,23,2017,71,69,81,85,86,83,0.5,4 OL,Cole Croston,24,2017,69,53,85,82,78,72,0.3,3 WR,Jacob Hollister,24,2017,71,58,88,78,84,78,0.3,3 END_PLAYERS ###################################################################### JETS New York Jets,NYJ RB,Matt Forte,32,2008,69,79,89,88,87,84,3,2 CB,Buster Skrine,28,2011,71,77,85,86,91,72,4.5,2 OL,Ben Ijalana,28,2011,70,64,85,86,75,73,3.7,2 OL,James Carpenter,28,2011,75,78,87,90,73,79,3.4,2 WR,Jeremy Kerley,29,2011,73,78,86,86,86,80,0.5,1 DL,Muhammad Wilkerson,28,2011,70,82,92,94,97,88,12.1,4 LB,Bruce Carter,29,2011,69,72,77,83,82,83,0.5,1 RB,Bilal Powell,29,2011,78,88,85,86,88,84,2.8,2 QB,Josh McCown,38,2002,46,84,83,85,79,50,5.4,1 OL,Brian Winters,26,2013,84,84,87,84,73,74,4.3,4 DL,Steve McLendon,31,2009,67,77,84,86,91,82,2.5,2 CB,Morris Claiborne,27,2012,72,74,82,86,90,61,4.2,1 LB,Demario Davis,28,2012,68,80,85,86,89,84,1.4,1 OL,Kelvin Beachum,28,2012,84,82,86,84,74,78,5.7,3 LB,Julian Stanford,27,2012,74,66,80,79,82,84,0.4,1 WR,Jermaine Kearse,27,2012,78,86,92,86,90,79,3.8,2 DL,David Bass,27,2013,78,67,86,75,74,82,0.5,1 LB,Josh Martin,26,2013,70,62,84,76,80,75,1.3,2 S,Rontez Miles,29,2013,60,67,89,82,85,73,0.3,1 DL,Ed Stinson,27,2014,67,63,80,88,85,74,0.4,1 OL,Wesley Johnson,26,2014,75,77,90,83,73,71,1.6,1 WR,Austin S-Jenkins,25,2014,72,71,81,83,87,73,1.1,1 S,Terrence Brooks,25,2014,73,69,83,84,91,62,0.4,1 OL,Dakota Dozier,26,2014,67,71,87,83,79,73,0.4,1 DL,Kony Ealy,26,2014,84,78,85,81,82,88,0.5,1 K,Chandler Catanzaro,26,2014,63,57,82,95,82,57,0.5,1 CB,Robert Nelson,27,2014,73,62,86,82,90,71,0.3,1 DL,Mike Pennel,26,2014,70,67,83,87,85,77,0.6,1 OL,Jonotthan Harrison,26,2014,76,74,86,87,72,72,0.5,1 OL,Brent Qvale,26,2014,71,67,87,76,77,73,0.3,1 QB,Bryce Petty,26,2015,65,61,83,91,75,63,0.5,2 WR,Neal Sterling,25,2015,66,55,85,75,85,79,0.4,1 DL,Obum Gwacham,26,2015,66,58,81,74,74,84,0.4,2 DL,Leonard Williams,23,2015,89,84,82,87,90,86,4.6,2 DL,Xavier Cooper,26,2015,69,67,87,83,81,82,0.5,2 LB,Lorenzo Mauldin,25,2015,67,69,84,79,81,77,0.6,2 CB,Darryl Roberts,27,2015,75,65,79,86,92,55,0.4,2 WR,Eric Tomlinson,25,2015,73,64,85,77,80,62,0.3,1 QB,Christian Hackenberg,22,2016,72,66,87,95,70,55,0.9,3 OL,Brandon Shell,25,2016,79,70,90,82,73,73,0.4,3 LB,Darron Lee,23,2016,73,74,89,80,79,84,2.4,3 LB,Jordan Jenkins,23,2016,77,72,81,82,86,78,0.6,3 CB,Juston Burris,24,2016,70,63,90,82,88,74,0.5,3 CB,Rashard Robinson,22,2016,74,76,90,86,93,55,0.5,3 K,Lachlan Edwards,25,2016,60,54,80,91,75,54,0.4,3 RB,Lawrence Thomas,24,2016,70,65,85,59,73,63,0.3,2 WR,Robby Anderson,24,2016,85,76,82,83,94,74,0.3,2 LB,Freddie Bishop,27,2013,69,54,89,77,83,74,0.3,1 WR,ArDarius Stewart,24,2017,72,67,86,83,89,81,0.6,4 S,Marcus Maye,24,2017,76,68,86,82,90,77,1.4,4 S,Jamal Adams,22,2017,82,74,90,83,91,81,5.5,4 WR,Chad Hansen,22,2017,67,61,86,84,89,73,0.5,4 RB,Elijah McGuire,23,2017,74,57,87,86,89,88,0.4,4 CB,Derrick Jones,23,2017,71,50,85,79,90,62,0.4,4 OL,Thomas Hennessy,23,2017,66,57,83,64,46,69,0.3,3 END_PLAYERS ###################################################################### TEXANS Houston Texans,HOU CB,Johnathan Joseph,33,2006,74,87,84,89,89,68,4,1 OL,Jon Weeks,31,2010,67,74,85,69,48,65,0.6,3 OL,Chris Clark,32,2008,76,77,80,86,77,73,2.1,1 QB,Josh Johnson,31,2008,67,62,86,87,72,66,0.5,1 OL,Derek Newton,30,2011,77,84,84,87,83,72,2.9,3 RB,Jordan Todman,27,2011,69,60,82,77,89,83,0.5,1 S,Marcus Gilchrist,29,2011,75,79,89,88,88,79,2.3,1 S,Eddie Pleasant,29,2012,71,75,91,81,87,73,0.6,1 LB,Lamarr Houston,30,2010,69,82,82,82,87,76,0.5,1 K,Shane Lechler,41,2000,47,69,81,88,86,69,1.5,1 WR,DeAndre Hopkins,25,2013,91,93,93,93,92,81,2.4,5 CB,Kareem Jackson,29,2010,65,79,83,83,89,72,6.4,2 LB,Brian Cushing,30,2009,75,85,91,82,85,81,6.1,3 LB,Jelani Jenkins,25,2013,82,75,87,79,79,83,0.5,1 OL,Breno Giacomini,32,2008,75,72,87,84,86,70,2.1,1 LB,Whitney Mercilus,27,2012,86,84,87,87,84,81,4.7,3 OL,Jeff Allen,27,2012,72,74,81,87,73,72,4.5,3 RB,Lamar Miller,26,2012,89,87,85,87,92,90,4,3 WR,Ryan Griffin,27,2013,76,72,86,82,75,72,1.8,3 LB,Jadeveon Clowney,24,2014,82,79,80,84,85,86,6.5,2 WR,CJ Fiedorowicz,26,2014,85,80,91,85,81,67,0.7,1 OL,Xavier Su'a-Filo,26,2014,79,73,88,85,74,72,1.2,1 S,Andre Hal,25,2014,78,82,86,87,92,58,0.5,1 QB,Tom Savage,27,2014,66,66,87,93,74,55,0.4,1 RB,Alfred Blue,26,2014,76,76,80,83,87,79,0.4,1 RB,Jay Prosch,25,2014,79,75,92,72,81,67,0.4,1 WR,Bruce Ellington,26,2014,78,76,89,84,91,83,0.4,1 DL,Brandon Dunn,25,2014,80,72,85,78,81,75,0.4,2 CB,Marcus Williams,26,2014,67,68,88,81,87,53,1.6,1 DL,Christian Covington,24,2015,77,73,77,78,80,80,0.4,2 LB,Benardrick McKinney,25,2015,81,81,88,87,81,84,1.1,2 CB,Kevin Johnson,25,2015,76,78,86,88,88,74,2.3,2 S,Kurtis Drummond,25,2015,74,66,86,82,85,54,0.3,1 OL,Greg Mancz,25,2015,72,68,88,87,72,77,0.3,1 OL,Kendall Lamm,25,2015,74,69,88,77,82,72,0.3,1 S,Corey Moore,24,2015,87,79,88,82,87,63,0.3,1 LB,Brian Peters,29,2015,61,63,87,74,73,78,0.3,1 WR,Will Fuller,23,2016,78,80,85,79,95,79,2.4,3 WR,Braxton Miller,25,2016,68,63,85,82,91,83,0.6,3 OL,Nick Martin,24,2016,76,78,86,85,75,76,1,3 K,Ka'lmi Fairbairn,23,2016,61,48,80,88,87,48,0.3,2 DL,DJ Reader,23,2016,83,81,86,87,86,79,0.4,3 DL,Joel Heath,24,2016,80,71,85,82,82,81,0.3,2 LB,Brennan Scarlett,24,2016,69,65,79,72,79,77,0.3,2 WR,Stephen Anderson,24,2016,71,55,85,75,84,71,0.3,2 LB,Ufomba Kamalu,25,2016,68,57,87,80,84,71,0.3,1 QB,Deshaun Watson,22,2017,82,79,91,88,79,78,3.3,4 RB,D'onta Foreman,21,2017,85,78,87,84,90,85,0.6,4 OL,Julie'n Davenport,22,2017,79,63,86,85,77,77,0.5,4 OL,Kyle Fuller,23,2017,64,55,88,81,74,74,0.4,4 DL,Carlos Watkins,24,2017,76,56,87,86,84,83,0.5,4 LB,Zach Cunningham,23,2017,82,75,90,84,84,83,0.9,4 LB,Dylan Cole,23,2017,64,58,87,81,86,80,0.3,3 CB,Treston Decoud,24,2017,72,56,84,78,87,77,0.4,4 END_PLAYERS ###################################################################### COLTS Indianapolis Colts,IND DL,Al Woods,30,2010,70,75,82,93,92,78,1.2,2 OL,Anthony Castonzo,29,2011,81,89,85,89,93,73,6.9,3 LB,Jabaal Sheard,28,2011,79,87,90,88,86,81,5.1,3 K,Adam Vinatieri,45,1996,55,72,84,88,94,72,1.8,1 OL,Mike Person,29,2011,67,69,81,79,75,78,0.5,1 RB,Frank Gore,34,2005,71,94,90,84,82,82,2.4,1 S,Darius Butler,31,2009,65,79,90,86,89,60,2.7,1 LB,Barkevious Mingo,27,2013,79,72,87,83,79,84,1.5,1 DL,Johnathan Hankins,25,2013,80,86,83,93,93,81,5.4,3 LB,Jon Bostic,26,2013,76,72,86,82,80,78,0.4,1 DL,Margus Hunt,30,2013,62,70,84,85,82,83,1.2,2 QB,Scott Tolzien,30,2011,68,65,90,83,77,52,1.2,1 WR,Kamar Aiken,28,2011,66,78,82,86,89,80,2.2,1 LB,John Simon,27,2013,84,78,88,83,86,80,2.7,3 QB,Andrew Luck,28,2012,87,85,90,95,87,75,18.6,5 WR,TY Hilton,28,2012,78,95,88,92,94,82,8.8,4 RB,Robert Turbin,28,2012,66,72,87,84,90,83,0.8,2 CB,Rashaan Melvin,28,2013,71,84,83,89,90,64,0.4,1 WR,Jack Doyle,27,2013,76,83,84,88,77,66,3.8,3 WR,Brandon Williams,30,2013,67,66,80,73,86,71,0.5,1 CB,Pierre Desir,27,2014,74,62,86,83,88,62,0.5,1 WR,Donte Moncrief,24,2014,77,78,87,88,92,80,0.7,1 LB,Jeremiah George,25,2014,72,66,87,84,83,79,0.4,2 OL,Jack Mewhort,26,2014,82,81,88,89,72,79,0.7,1 RB,Matt Jones,24,2015,76,73,80,79,89,83,0.5,2 OL,Denzelle Good,26,2015,74,77,79,87,79,82,0.4,2 DL,Henry Anderson,26,2015,80,83,81,83,86,83,0.5,2 S,Clayton Geathers,25,2015,83,80,87,84,87,78,0.5,2 OL,Tyreek Burwell,25,2015,61,53,83,82,77,71,0.4,1 WR,Erik Swoope,25,2014,68,59,80,75,80,79,0.3,1 OL,Jeremy Vujnovich,27,2014,72,54,82,90,73,73,0.3,1 QB,Jacoby Brissett,24,2016,74,72,90,94,78,77,0.6,3 OL,Le'Raven Clark,24,2016,72,59,89,81,80,72,0.6,3 OL,Joe Haeg,24,2016,74,73,91,83,75,73,0.4,3 OL,Ryan Kelly,24,2016,86,84,89,86,77,79,2.4,3 DL,Hassan Ridgeway,23,2016,71,56,78,87,88,85,0.5,3 LB,Joshua Perry,23,2016,75,58,90,85,84,75,0.5,3 LB,Antonio Morrison,23,2016,75,67,83,82,83,77,0.5,3 CB,DJ White,24,2016,66,54,89,81,89,69,0.4,3 S,TJ Green,22,2016,71,63,86,83,93,74,0.8,3 WR,Chester Rogers,23,2016,81,70,85,83,89,78,0.3,2 CB,Chris Milton,25,2016,72,55,89,79,92,76,0.3,1 S,Matthias Farley,25,2016,73,74,88,83,89,72,0.3,2 RB,Marlon Mack,21,2017,71,69,87,73,89,80,0.5,4 S,Malik Hooker,21,2017,76,74,85,86,88,71,3,4 OL,Kyle Kalis,24,2017,69,56,84,88,73,74,0.3,3 LB,Tarell Basham,23,2017,81,64,89,78,80,76,0.6,4 LB,Anthony Walker Jr.,22,2017,74,58,93,83,84,74,0.4,4 CB,Quincy Wilson,21,2017,74,62,88,79,88,67,1.2,4 OL,Luke Rhodes,25,2016,71,54,88,83,46,45,0.3,1 RB,Darrell Daniels,23,2017,73,57,86,71,86,78,0.3,3 DL,Grover Stewart,24,2017,69,55,89,90,86,77,0.5,4 CB,Nate Hairston,23,2017,74,63,86,83,88,72,0.4,4 K,Rigoberto Sanchez,23,2017,63,55,88,92,83,55,0.3,3 CB,Kenny Moore,22,2017,69,56,85,82,87,63,0.3,3 END_PLAYERS ###################################################################### JAGUARS Jacksonville Jaguars,JAX LB,Paul Posluszny,33,2007,52,88,92,86,84,82,3.5,1 WR,Arrelious Benn,29,2010,71,71,80,75,84,78,0.6,2 DL,Calais Campbell,31,2008,73,91,91,87,93,90,9.9,4 DL,Marcell Dareus,27,2011,84,82,89,94,96,87,9.6,5 S,Barry Church,29,2010,70,74,94,80,85,79,3.9,4 OL,Jermey Parnell,31,2009,75,81,82,84,73,76,3.8,3 QB,Chad Henne,32,2008,72,76,89,88,74,42,2.4,1 WR,Marcedes Lewis,33,2006,72,82,86,78,74,65,2.4,2 RB,Chris Ivory,29,2010,73,85,79,85,89,85,4.4,4 DL,Malik Jackson,27,2012,74,79,87,83,88,84,9.5,5 K,Brad Nortman,28,2012,67,62,84,90,82,62,1.3,3 OL,Matt Overton,32,2010,56,60,83,66,57,70,0.5,1 S,Tashaun Gipson,27,2012,85,83,90,85,84,67,4.8,4 S,Peyton Thompson,27,2012,75,62,83,81,88,50,0.4,1 RB,Tommy Bohanon,27,2013,72,70,85,71,76,68,0.4,1 CB,AJ Bouye,26,2013,86,87,82,89,89,71,9.3,5 DL,Abry Jones,26,2013,86,81,84,88,87,77,2.3,4 LB,Lerentee McCray,27,2013,75,67,80,74,75,78,1.2,1 OL,Patrick Omameh,28,2013,75,79,87,82,73,82,0.6,1 WR,Marqise Lee,26,2014,78,83,87,86,89,81,1.1,1 WR,Allen Robinson,24,2014,94,90,87,89,90,81,0.7,1 OL,Brandon Linder,25,2014,76,89,88,89,80,74,5.3,6 LB,Telvin Smith,26,2014,85,89,85,87,79,86,0.6,1 QB,Blake Bortles,25,2014,83,77,95,93,78,75,6.8,2 S,Calvin Pryor,25,2014,76,74,91,83,87,71,0.9,1 CB,Aaron Colvin,26,2014,83,79,79,86,89,72,0.6,1 CB,Tyler Patmon,26,2014,71,65,83,82,88,59,0.4,1 OL,Josh Wells,26,2014,62,63,84,83,79,74,0.5,2 WR,Allen Hurns,26,2014,86,86,89,86,88,81,4.9,4 OL,Tyler Shatley,26,2014,64,64,84,95,77,74,0.6,2 RB,TJ Yeldon,24,2015,85,78,83,86,88,86,1.3,2 WR,Jaelen Strong,23,2015,69,58,83,86,91,76,0.6,2 WR,Ben Koyack,24,2015,84,69,86,78,79,67,0.3,1 WR,James O'Shaughnessy,25,2015,63,54,81,79,83,77,0.4,2 OL,AJ Cann,26,2015,77,80,87,89,73,74,0.6,2 DL,Dante Fowler Jr.,23,2015,74,76,79,73,81,90,5.8,2 OL,Chris Reed,25,2015,68,61,82,85,75,76,0.3,1 K,Josh Lambo,27,2015,62,58,81,93,84,58,0.4,1 RB,Corey Grant,26,2015,78,68,77,73,96,78,0.3,1 OL,Josh Walker,26,2014,68,53,87,76,79,75,0.4,1 OL,William Poehls,26,2014,76,65,86,80,77,74,0.3,1 DL,Sheldon Day,23,2016,68,66,87,80,85,89,0.5,3 LB,Myles Jack,22,2016,88,81,83,84,82,87,1.4,3 DL,Yannick Ngakoue,22,2016,84,80,87,80,84,89,0.6,3 S,Jarrod Wilson,23,2016,75,55,88,78,87,63,0.3,2 RB,Leonard Fournette,22,2017,86,82,85,92,91,89,6.7,4 OL,Cam Robinson,22,2017,76,73,93,91,77,76,1.5,4 WR,Dede Westbrook,24,2017,69,59,84,86,93,80,0.6,4 DL,Dawuane Smoot,22,2017,75,64,90,82,81,86,0.7,4 LB,Blair Brown,23,2017,68,59,90,86,87,78,0.4,4 CB,Jalen Myrick,22,2017,74,51,83,81,96,76,0.4,4 LB,Donald Payne,23,2017,70,54,89,81,77,80,0.3,3 DL,Eli Ankou,23,2017,75,68,84,82,84,82,0.3,3 WR,Keelan Cole,24,2017,70,63,87,81,87,83,0.3,3 END_PLAYERS ###################################################################### TITANS Tennessee Titans,TEN OL,Beau Brinkley,27,2012,56,45,84,69,50,62,0.8,3 WR,Eric Decker,30,2010,69,85,90,91,86,80,0.5,1 LB,Wesley Woodyard,31,2008,74,88,92,88,80,85,0.5,3 RB,Demarco Murray,29,2011,77,89,86,85,89,88,0.5,7 K,Ryan Succop,31,2009,65,70,85,90,93,70,0.5,5 DL,Jurrell Casey,28,2011,74,88,88,92,94,85,8.8,6 S,Da'Norris Searcy,29,2011,66,74,88,83,87,72,0.5,8 WR,Harry Douglas,33,2008,62,75,86,83,88,79,0.5,5 WR,Eric Weems,32,2007,74,80,83,79,85,79,0.8,2 WR,Delanie Walker,33,2006,64,94,85,91,85,80,0.5,2 LB,Erik Walden,32,2008,72,76,87,80,80,77,0.5,2 DL,Karl Klug,29,2011,73,79,84,81,83,82,0.5,4 DL,Sylvester Williams,29,2013,66,73,84,86,84,80,0.5,7 S,Johnathan Cyprien,27,2013,84,84,90,87,89,77,0.5,8 LB,Brian Orakpo,31,2009,77,83,86,85,91,81,0.5,6 CB,Logan Ryan,20,2015,85,83,92,86,88,86,0.5,9 CB,Brice McCain,31,2009,63,70,85,84,90,58,1.9,1 OL,Brian Schwenke,26,2013,77,74,90,91,74,83,1,1 LB,Derrick Morgan,22,2013,72,77,88,77,83,76,0.5,6 K,Brett Kern,31,2008,70,64,70,90,83,64,2.1,3 OL,Ben Jones,28,2012,79,87,92,88,78,75,0.5,3 WR,Rishard Matthews,25,2012,78,89,89,89,89,80,0.5,8 L,David King,28,2013,65,60,86,83,82,83,0.4,4 S, OL,Josh Kline,28,2013,84,87,84,83,82,85,1.2,1 OL,Taylor Lewan,16,2014,85,91,89,91,85,83,0.5,8 LB,Avery Williamson,15,2014,72,77,88,87,86,79,0.6,1 DL,DaQuan Jones,26,2014,85,87,83,88,91,82,0.6,5 QB,Marcus Mariota,24,2015,77,78,94,89,79,77,0.5,8 RB,Jalston Fowler,27,2015,77,74,75,75,77,72,0.5,2 CB, S,Curtis Riley,25,2015,66,63,87,82,89,62,0.3,1 OL,Quinton Spain,26,2015,84,83,89,84,77,82,0.3,4 RB,Derrick Henry,23,2016,89,86,90,88,88,85,0.5,8 WR,Tajae Sharpe,23,2016,76,77,87,86,87,77,0.4,3 OL,Jack Conklin,23,2016,83,86,92,87,78,73,0.5,6 LB, DL,Austin Johnson,23,2016,78,68,88,81,85,82,1.2,3 S,Kevin Byard,24,2016,81,78,89,85,89,76,0.7,8 RB,David Fluellen,25,2014,73,59,86,77,82,82,0.4,2 WR,Corey Davis,20,2017,83,72,88,83,90,83,0.5,6 WR,Taywan Taylor,22,2017,74,65,92,82,92,80,0.7,4 CB,Adoree' Jackson,22,2017,80,66,87,86,92,76,0.1,9 OL,Corey Levin,23,2017,70,58,86,85,78,74,0.4,4 RB,Le'Veon Bell ,16,2017,87,87,87,94,90,94,0.5,9 WR,AntonioBrown,18,2017,94,98,92,98,92,93,0.5,8 WR,Rob Gronkowski,20,2017,86,94,85,96,83,80,0.5,9 CB,Jalen Ramsey, 15,2017,88,90,87,90,93,90,0.5,9 LB,Von Miller, 18,2017,89,92,92,94,93,87,0.5,8 WR,Odell Beckham Jr.,16,2017,81,94,90,89,94,85,0.5,6 OL,Alex Mack, 18,2017,79,97,94,91,98,88,0.5,7 QB,Cam Newton, 12,2017,91,95,99,99,90,98,0.5,9 LB,Luke Kuechly, 16,2017,90,96,96,97,93,90,0.5,8 CB,Marshon Lattimore,17,2017,72,73,79,88,94,78,0.5,7 CB,Patrick Peterson, 15,2017,80,88,93,94,92,71,0.5,8 DL,Aaron Donald, 16,2017,80,90,92,95,96,93,0.5,8 CB,Richard Sherman,17,2017,88,91,96,94,98,88,0.5,8 S,Kam Chancellor,18,2017,88,95,99,99,96,93,0.5,9 END_PLAYERS ###################################################################### BRONCOS Denver Broncos,DEN DL,Domata Peko,33,2006,60,86,85,90,84,72,2.5,2 WR,Demaryius Thomas,30,2010,73,90,90,83,91,84,9.7,3 CB,Aqib Talib,31,2008,79,93,88,92,88,71,6.3,3 WR,Virgil Green,29,2011,71,75,81,78,86,79,2,1 RB,Jamaal Charles,31,2008,74,84,82,83,90,85,1.5,1 CB,Chris Harris Jr.,28,2011,77,93,91,93,91,69,6.3,3 S,Darian Stewart,29,2010,72,82,89,85,85,69,4.6,4 OL,Menelik Watson,29,2013,79,76,83,84,72,71,4.4,3 WR,Emmanuel Sanders,30,2010,78,94,86,97,92,79,8.3,3 OL,Allen Barbre,33,2007,60,76,85,84,77,73,1,1 DL,Derek Wolfe,27,2012,75,83,89,89,92,85,6.6,3 QB,Brock Osweiler,27,2012,80,69,92,96,75,58,0.5,1 OL,Donald Stephenson,29,2012,80,73,86,84,74,69,3.4,2 DL,Jared Crick,28,2012,66,79,81,81,84,81,1.5,1 LB,Brandon Marshall,28,2012,71,83,88,89,86,83,5.3,4 DL,Billy Winn,28,2012,67,65,84,82,85,84,0.5,1 OL,Ronald Leary,28,2012,80,86,82,87,78,89,5.9,4 RB,CJ Anderson,26,2013,82,88,86,93,89,90,2.7,3 OL,Matthew Paradis,28,2014,85,88,85,90,80,86,0.4,1 OL,Cyrus Kouandjio,24,2014,79,74,77,86,77,78,0.4,1 DL,Shelby Harris,26,2014,68,71,83,84,86,83,0.4,1 CB,Bradley Roby,25,2014,83,76,84,88,93,60,1.5,1 OL,Billy Turner,26,2014,78,73,85,85,69,77,0.5,1 WR,Cody Latimer,25,2014,68,48,85,78,90,77,0.7,1 DL,Zach Kerr,27,2014,67,63,77,87,87,78,1.1,2 LB,Kasim Edebali,28,2014,60,60,85,72,76,74,0.8,1 K,Brandon McManus,26,2014,74,60,85,97,90,60,1.6,1 LB,Todd Davis,25,2014,87,85,90,88,86,81,1.6,1 QB,Trevor Siemian,26,2015,73,83,85,88,81,63,0.4,2 WR,Jeff Heuerman,25,2015,72,67,85,79,79,69,0.5,2 WR,AJ Derby,26,2015,64,62,84,82,82,75,0.4,2 OL,Max Garcia,26,2015,76,79,86,89,75,72,0.4,2 LB,Shane Ray,24,2015,85,76,84,76,79,81,2.1,2 CB,Lorenzo Doss,23,2015,66,60,87,79,89,45,0.4,2 LB,Zaire Anderson,25,2015,67,52,85,81,81,74,0.3,1 WR,Jordan Taylor,25,2015,79,69,87,82,88,71,0.3,1 LB,Shaquil Barrett,25,2014,88,87,87,79,79,79,0.4,1 WR,Bennie Fowler,26,2014,71,73,79,81,91,78,0.4,1 OL,Casey Kreiter,27,2014,61,60,87,68,48,72,0.3,1 QB,Paxton Lynch,23,2016,78,64,92,93,74,74,2.2,3 RB,Devontae Booker,25,2016,82,77,90,80,87,85,0.5,3 OL,Connor McGovern,24,2016,65,58,90,87,78,71,0.4,3 DL,Adam Gotsis,25,2016,75,77,84,82,85,80,0.8,3 S,Justin Simmons,24,2016,74,72,86,85,88,75,0.6,3 RB,Andy Janovich,24,2016,77,72,85,74,79,72,0.4,3 S,William Parks,23,2016,76,71,87,80,85,74,0.4,3 K,Riley Dixon,24,2016,78,59,86,88,79,59,0.4,3 CB,Brendan Langley,23,2017,77,59,88,81,91,74,0.6,4 OL,Garett Bolles,25,2017,78,73,89,90,87,77,2.6,4 LB,Demarcus Walker,23,2017,70,62,91,77,81,72,1,4 RB,De'Angelo Henderson,25,2017,62,56,85,81,90,81,0.4,4 WR,Isaiah McKenzie,22,2017,74,61,82,80,92,75,0.4,4 S,Jamal Carter,23,2017,72,50,89,77,85,72,0.3,3 OL,Elijah Wilkinson,22,2017,70,63,83,80,72,73,0.3,1 END_PLAYERS ###################################################################### CHIEFS Kansas City Chiefs,KC DL,Roy Miller,30,2009,64,74,85,87,89,78,0.8,1 RB,Anthony Sherman,29,2011,73,79,90,68,79,67,1.3,1 S,Eric Berry,29,2010,77,93,90,92,91,79,10.2,6 LB,Derrick Johnson,35,2005,66,93,87,89,84,83,5.5,2 K,Dustin Colquitt,35,2005,42,70,89,89,87,70,2.7,1 LB,Tamba Hali,34,2006,59,86,89,81,88,78,5.1,2 DL,Allen Bailey,28,2011,62,74,89,90,88,84,4.9,2 DL,Jarvis Jenkins,29,2011,64,77,77,91,87,76,0.5,1 LB,Justin Houston,28,2011,75,91,87,92,92,84,12.5,4 QB,Alex Smith,33,2005,74,90,91,87,86,63,10.4,2 S,Ron Parker,30,2011,75,82,83,87,90,69,3.6,3 LB,Frank Zombo,30,2010,72,73,87,78,76,75,0.8,2 OL,Eric Fisher,26,2013,85,84,91,88,74,85,8.7,5 WR,Travis Kelce,28,2013,73,95,84,91,85,83,6.8,5 DL,Bennie Logan,28,2013,70,78,84,89,92,81,5.4,1 OL,Mitchell Schwartz,28,2012,80,85,87,86,85,73,4.8,4 QB,Tyler Bray,26,2013,63,52,83,93,70,45,0.6,1 CB,Terrance Mitchell,25,2014,73,74,89,85,89,64,0.4,1 CB,Phillip Gaines,26,2014,75,66,84,85,93,49,0.5,1 CB,Kenneth Acker,25,2014,73,64,82,83,89,53,0.4,1 OL,Zach Fulton,26,2014,79,78,86,85,80,75,0.5,1 LB,Dee Ford,26,2014,76,74,86,76,82,83,2.7,2 WR,De'Anthony Thomas,24,2014,78,70,76,78,92,83,0.5,1 LB,Kevin Pierre-Louis,26,2014,72,69,82,82,84,84,0.4,1 OL,Laurent Duvernay-Tard,26,2014,81,80,89,92,73,83,5.5,6 WR,Demetrius Harris,26,2013,72,75,83,78,87,78,1,2 WR,Albert Wilson,25,2014,79,79,85,84,91,78,1.1,1 S,Daniel Sorensen,27,2014,75,77,90,82,84,70,3,4 OL,Jordan Devey,29,2014,72,65,87,82,80,69,0.4,1 S,Steven Terrell,27,2013,74,66,85,84,92,58,0.4,1 RB,Charcandric West,26,2014,75,73,82,81,91,83,0.9,2 WR,Chris Conley,25,2015,78,73,85,83,93,78,0.6,2 OL,Mitch Morse,25,2015,78,87,85,92,81,74,0.9,2 OL,Cameron Erving,25,2015,74,70,86,84,73,74,2.2,2 DL,Rakeem Nunez-Roches,24,2015,71,65,80,80,85,79,0.3,1 LB,Ramik Wilson,25,2015,83,81,88,85,84,84,0.3,1 CB,Marcus Peters,24,2015,80,90,87,90,90,70,2.2,2 CB,Steven Nelson,24,2015,73,74,91,85,90,74,0.5,2 RB,Akeem Hunt,24,2015,70,68,85,71,92,76,0.3,1 OL,James Winchester,28,2013,61,50,75,67,48,50,0.5,5 OL,Bryan Witzmann,27,2014,68,72,85,80,77,73,0.3,1 WR,Demarcus Robinson,23,2016,78,57,86,75,88,75,0.5,3 OL,Parker Ehinger,25,2016,78,66,83,80,79,74,0.5,3 DL,Chris Jones,23,2016,84,86,86,88,90,87,1.3,3 LB,Reggie Ragland,24,2016,74,68,89,82,84,80,1.2,3 LB,Terrance Smith,24,2016,73,56,81,78,81,76,0.3,1 S,Eric Murray,23,2016,81,65,89,82,89,70,0.5,3 WR,Tyreek Hill,23,2016,79,87,83,88,97,80,0.4,3 WR,Ross Travis,24,2015,64,57,87,76,84,74,0.3,2 QB,Patrick Mahomes,22,2017,68,61,92,97,78,78,4,4 RB,Kareem Hunt,22,2017,83,86,86,90,90,86,0.6,4 WR,Jehu Chesson,24,2017,69,61,87,84,90,77,0.5,4 LB,Tanoh Kpassagnon,23,2017,72,60,85,77,83,73,0.8,4 K,Harrison Butker,22,2017,76,53,80,91,83,53,0.4,4 LB,Ukeme Eligwe,23,2017,76,56,84,83,83,76,0.4,4 END_PLAYERS ###################################################################### RAIDERS Oakland Raiders,OAK S,Reggie Nelson,34,2007,42,81,93,86,87,73,2.5,1 OL,Donald Penn,34,2006,59,96,86,92,89,84,3.6,1 OL,Rodney Hudson,28,2011,87,92,90,88,89,87,5.3,3 WR,Lee Smith,30,2011,65,73,84,69,72,66,1.3,1 CB,Sean Smith,30,2009,69,78,88,89,87,74,6.8,3 LB,Navorro Bowman,29,2010,74,85,85,89,88,82,1.6,1 WR,Michael Crabtree,30,2009,82,95,91,88,87,83,5.3,3 K,Marquette King,29,2012,78,70,84,98,92,70,2,4 RB,Jamize Olawale,28,2012,72,76,86,75,87,77,1.1,2 OL,Marshall Newhouse,29,2010,75,73,85,86,81,76,1,2 K,Sebastian Janikowski,39,2000,65,63,82,97,87,63,3.5,1 OL,Jon Condo,36,2005,56,82,84,71,51,65,0.7,1 QB,EJ Manuel,27,2013,65,66,89,92,76,72,0.5,1 WR,Cordarrelle Patterson,26,2013,74,73,89,84,92,89,2.5,2 CB,David Amerson,26,2013,83,84,86,88,90,77,4.1,4 RB,Marshawn Lynch,31,2007,68,84,89,94,89,90,2.7,2 WR,Jared Cook,30,2009,72,83,84,84,86,76,3.2,2 LB,Bruce Irvin,30,2012,70,77,91,84,80,83,6.3,3 OL,Kelechi Osemele,28,2012,89,95,85,93,88,79,7.1,4 K,Giorgio Tavecchio,27,2012,63,54,81,91,84,54,0.3,1 OL,Gabe Jackson,26,2014,76,86,86,92,72,75,5.7,6 CB,Travis Carrie,27,2014,82,77,84,89,91,76,0.5,1 S,Keith McGill,28,2014,60,56,80,81,89,71,0.5,1 QB,Derek Carr,26,2014,78,84,91,95,82,67,14,6 DL,Justin Ellis,27,2014,74,76,83,84,89,81,0.6,1 DL,Khalil Mack,26,2014,86,94,95,87,93,95,5.7,2 DL,Denico Autry,27,2014,78,75,83,75,81,81,1.1,1 WR,Amari Cooper,23,2015,88,85,85,83,92,88,5.6,2 WR,Clive Walford,26,2015,74,74,86,83,79,73,0.6,2 OL,Jon Feliciano,25,2015,68,65,87,81,79,77,0.5,2 DL,Mario Edwards Jr.,23,2015,80,78,78,88,88,83,1.3,2 CB,Dexter McDonald,26,2015,62,51,83,81,91,52,0.4,2 WR,Seth Roberts,26,2014,75,81,86,83,91,77,0.2,3 QB,Connor Cook,24,2016,69,64,91,90,76,52,0.5,3 RB,DeAndre Washington,24,2016,73,68,90,79,91,85,0.4,3 OL,Vadal Alexander,23,2016,70,64,87,86,74,78,0.4,3 LB,Jihad Ward,23,2016,77,64,89,82,84,73,1.2,3 LB,Shilique Calhoun,25,2016,66,62,89,79,82,77,0.6,3 DL,James Cowser,27,2016,68,57,84,81,82,84,0.3,1 S,Karl Joseph,24,2016,86,84,85,87,87,77,2.8,3 LB,Cory James,24,2016,82,72,88,82,79,81,0.4,3 DL,Darius Latham,23,2016,71,59,84,82,84,78,0.3,2 S,Erik Harris,27,2015,62,57,87,77,85,67,0.3,1 WR,Johnny Holton,26,2016,67,48,87,76,92,79,0.3,2 RB,Jalen Richard,24,2016,83,78,87,86,90,85,0.3,2 OL,David Sharpe,22,2017,70,63,86,87,80,76,0.5,4 DL,Treyvon Hester,25,2017,79,67,85,85,83,77,0.4,4 DL,Eddie Vanderdoes,23,2017,80,67,85,89,86,84,0.6,4 LB,Marquel Lee,22,2017,79,73,90,83,83,77,0.4,4 CB,Gareon Conley,22,2017,78,73,88,85,91,71,2.4,4 S,Obi Melifonwu,23,2017,71,62,89,85,92,75,0.9,4 OL,Jylan Ware,24,2017,65,53,87,85,77,73,0.4,4 S,Shalom Luani,23,2017,67,59,88,79,87,64,0.4,4 LB,Xavier Woodson-Luste,22,2017,70,61,85,77,77,77,0.3,3 LB,Nicholas Morrow,22,2017,74,69,84,77,80,83,0.3,3 END_PLAYERS ###################################################################### CHARGERS Los Angeles Chargers,LAC OL,Mike Windt,31,2010,76,72,83,73,55,65,0.8,4 QB,Philip Rivers,36,2004,55,90,97,89,84,43,15.2,3 WR,Antonio Gates,37,2003,71,95,82,89,77,78,3.6,1 OL,Joe Barksdale,29,2011,80,77,85,88,72,73,3.9,3 DL,Corey Liuget,27,2011,75,83,89,91,93,86,7,4 WR,Jeff Cumberland,30,2010,75,82,83,73,86,65,0.5,1 OL,Matt Slauson,31,2009,74,91,87,89,74,73,1.4,1 QB,Kellen Clemens,34,2006,58,72,84,84,76,44,0.7,1 WR,Keenan Allen,25,2013,82,93,80,92,87,84,6.5,4 OL,Russell Okung,29,2010,75,81,84,88,73,87,9.4,4 DL,Brandon Mebane,32,2007,74,87,86,91,92,80,3.3,2 OL,Kenny Wiggins,29,2011,82,75,86,84,72,73,0.6,1 K,Nick Novak,36,2005,42,64,79,90,88,64,0.5,1 DL,Melvin Ingram,28,2012,75,85,87,83,85,90,11.2,4 CB,Casey Hayward,28,2012,70,89,83,88,89,67,3.6,2 WR,Travis Benjamin,28,2012,71,85,80,86,92,81,4.3,3 LB,Korey Toomer,29,2012,66,80,76,78,79,88,1.1,1 WR,Sean McGrath,30,2012,64,74,86,75,77,67,0.4,1 S,Jahleel Addae,27,2013,79,83,89,85,83,74,3.7,4 DL,Damion Square,28,2013,64,70,82,80,82,82,1.6,2 RB,Andre Williams,25,2014,71,72,84,84,87,80,0.4,1 DL,Jeremiah Attaochu,24,2014,83,74,84,73,79,88,0.8,1 CB,Jason Verrett,26,2014,85,83,88,91,93,67,2.6,2 S,Tre Boston,25,2014,78,77,87,85,87,75,0.6,1 OL,Michael Schofield,27,2014,79,76,84,83,74,72,0.7,1 DL,Chris McCain,26,2014,71,68,86,61,69,85,0.4,1 OL,Michael Ola,29,2014,71,63,84,84,77,77,0.4,1 DL,Tenny Palepoi,27,2014,71,68,82,89,89,82,0.4,1 RB,Branden Oliver,26,2014,74,72,86,85,88,86,0.5,1 S,Adrian Phillips,25,2014,70,68,87,82,87,69,0.4,1 RB,Melvin Gordon,24,2015,80,87,88,87,92,89,2.5,2 WR,Geremy Davis,25,2015,62,48,81,84,89,80,0.4,1 DL,Darius Philon,23,2015,79,68,84,79,82,85,0.4,2 LB,Kyle Emanuel,26,2015,68,70,86,72,80,77,0.4,2 LB,Denzel Perryman,24,2015,88,79,90,84,88,81,1,2 LB,Hayes Pullard,25,2015,66,67,87,77,76,79,0.3,2 LB,Nick Dzubnar,26,2015,78,66,89,85,82,73,0.3,1 WR,Tyrell Williams,25,2015,76,85,84,86,91,82,0.3,1 QB,Cardale Jones,25,2016,64,62,90,96,68,73,0.5,3 RB,Derek Watt,25,2016,62,54,90,73,81,72,0.4,3 WR,Hunter Henry,23,2016,84,77,91,86,84,74,1.4,3 DL,Joey Bosa,22,2016,91,82,87,87,84,87,6.4,3 LB,Jatavis Brown,23,2016,83,76,88,86,88,84,0.4,3 K,Drew Kaser,24,2016,67,51,73,95,75,51,0.4,3 OL,Spencer Pulley,24,2016,75,75,86,83,78,74,0.3,2 CB,Trevor Williams,24,2016,79,78,85,87,91,68,0.3,1 WR,Mike Williams,23,2017,82,74,88,87,89,83,4.8,4 CB,Michael Davis,22,2017,68,57,89,78,92,72,0.3,1 OL,Dan Feeney,23,2017,73,64,84,91,77,75,0.7,4 CB,Desmond King,23,2017,84,72,92,84,86,72,0.4,4 LB,James Onwualu,23,2017,73,59,87,78,80,78,0.3,3 S,Rayshawn Jenkins,23,2017,70,62,84,81,89,74,0.6,4 OL,Sam Tevi,23,2017,63,55,87,79,78,74,0.4,4 RB,Austin Ekeler,22,2017,79,58,85,75,92,83,0.3,3 WR,Sean Culkin,24,2017,67,55,89,74,82,71,0.3,3 END_PLAYERS ###################################################################### BEARS Chicago Bears,CHI DL,Mitch Unrein,30,2010,75,84,84,84,85,81,0.8,1 K,Connor Barth,31,2008,57,60,78,88,84,60,0.6,1 LB,Pernell McPhee,29,2011,75,83,87,83,91,77,4.9,3 LB,Sam Acho,29,2011,67,74,86,83,80,76,0.6,1 CB,Prince Amukamara,28,2011,75,81,87,89,90,84,6.3,1 WR,Zach Miller,33,2009,47,79,80,89,85,77,1.9,1 QB,Mark Sanchez,31,2009,75,70,88,87,74,55,1.6,1 LB,Willie Young,32,2010,74,81,85,76,80,78,2.7,2 OL,Josh Sitton,31,2008,76,92,84,91,77,83,4.6,2 OL,Bradley Sowell,28,2012,75,72,83,83,78,73,0.5,1 WR,Josh Bellamy,28,2012,65,77,87,79,89,75,0.5,1 OL,Kyle Long,29,2013,73,85,91,84,85,80,6,5 QB,Mike Glennon,28,2013,70,77,90,93,77,42,9.6,3 WR,Markus Wheaton,26,2013,79,75,89,83,90,80,3.7,2 DL,John Jenkins,28,2013,68,66,82,92,89,79,0.6,1 CB,Sherrick McManis,30,2010,60,63,80,82,87,68,0.9,1 WR,Dion Sims,26,2013,76,77,80,82,80,72,3.8,3 S,Quintin Demps,32,2008,69,77,87,83,88,72,2.9,3 WR,Kendall Wright,28,2012,68,78,91,86,90,85,1.3,1 DL,Akiem Hicks,28,2012,72,87,86,87,90,83,3.3,1 OL,Bobby Massie,28,2012,77,78,88,83,73,74,3.9,2 LB,Danny Trevathan,27,2012,80,86,87,92,83,82,4.4,3 OL,Tom Compton,28,2012,76,71,90,90,74,74,1.6,1 LB,Jerrell Freeman,31,2012,70,89,88,94,86,82,2.7,2 CB,Marcus Cooper,27,2013,74,76,87,85,90,70,3.5,3 OL,Andrew Depaola,30,2012,69,65,83,76,73,71,0.4,1 RB,Benny Cunningham,27,2013,78,75,87,80,87,79,0.6,1 CB,Kyle Fuller,25,2014,76,76,90,88,92,77,2.3,1 OL,Charles Leno Jr.,26,2014,76,81,85,81,85,75,0.4,5 K,Pat O'Donnell,26,2014,71,66,81,91,85,66,0.4,1 LB,Christian Jones,26,2014,78,75,89,80,79,81,1.2,1 WR,Dontrelle Inman,28,2014,73,78,86,88,88,82,1.6,1 RB,Mike Burton,25,2015,73,77,84,64,81,65,0.4,2 WR,Tre McBride,25,2015,61,41,86,86,91,83,0.3,1 OL,Hroniss Grasu,26,2015,81,74,86,78,74,73,0.6,2 DL,Eddie Goldman,23,2015,77,78,84,88,90,78,1.2,2 S,Adrian Amos,24,2015,82,77,85,85,93,61,0.4,2 CB,Bryce Callahan,26,2015,85,80,86,90,94,56,0.4,1 WR,Cameron Meredith,25,2015,85,86,87,89,89,82,0.3,1 WR,Daniel Brown,25,2015,73,57,86,78,86,74,0.4,1 RB,Jordan Howard,23,2016,80,87,85,89,90,89,0.4,3 OL,Cody Whitehair,25,2016,86,88,89,87,77,70,0.8,3 DL,Jonathan Bullard,24,2016,68,59,87,80,84,87,0.6,3 LB,Nick Kwiatkoski,24,2016,76,74,87,85,85,82,0.5,3 LB,Leonard Floyd,25,2016,74,74,86,83,82,85,3.8,3 CB,Deiondre' Hall,23,2016,63,51,86,81,88,64,0.5,3 S,Deon Bush,24,2016,78,62,87,81,87,67,0.5,3 S,DeAndre Houston-Carso,24,2016,65,52,89,79,88,77,0.4,3 CB,Cre'von LeBlanc,23,2016,74,68,85,82,87,75,0.3,2 QB,Mitchell Trubisky,23,2017,78,68,93,93,79,75,7.2,4 WR,Adam Shaheen,24,2017,66,60,86,82,81,78,1.3,4 S,Eddie Jackson,25,2017,71,71,78,83,88,67,0.6,4 LB,Roy Robertson-Har,24,2016,71,62,85,80,83,73,0.3,2 RB,Tarik Cohen,22,2017,82,77,85,81,92,88,0.5,4 RB,Taquan Mizzell,24,2017,74,51,85,71,87,80,0.3,3 END_PLAYERS ###################################################################### LIONS Detroit Lions,DET K,Matt Prater,33,2006,47,69,74,95,95,69,1.9,1 OL,Don Muhlbach,36,2004,63,82,84,77,62,52,0.7,1 S,Don Carey,30,2009,66,63,86,81,86,64,0.5,1 OL,Don Barclay,28,2012,81,75,87,82,73,69,0.7,1 QB,Matthew Stafford,29,2009,77,86,94,98,82,64,16.1,1 OL,TJ Lang,30,2009,88,92,88,89,87,86,7.3,3 DL,Ziggy Ansah,28,2013,70,79,88,84,86,89,5.5,1 CB,DJ Hayden,27,2013,77,71,82,86,91,78,2.8,1 LB,Nick Bellore,28,2011,70,76,83,87,85,73,0.5,1 CB,Darius Slay,26,2013,84,86,86,91,94,72,8.9,4 DL,Haloti Ngata,33,2006,55,84,91,94,92,81,4.8,1 WR,Golden Tate,29,2010,70,89,91,88,89,90,5,2 S,Glover Quin,31,2009,78,90,89,88,86,73,4.6,3 DL,Akeem Spence,26,2013,77,67,86,91,84,78,2.2,3 K,Sam Martin,27,2013,64,66,84,96,86,66,2,4 OL,Ricky Wagner,28,2013,82,87,85,87,84,80,7.4,5 DL,Cornelius Washington,28,2013,66,68,76,88,84,84,2.2,2 S,Tavon Wilson,27,2012,86,83,92,85,87,73,1.1,1 LB,Tahir Whitehead,27,2012,85,87,88,91,84,85,2.5,1 WR,Marvin Jones,27,2012,79,87,89,83,90,80,4.8,4 DL,Jacquies Smith,27,2012,69,73,78,72,73,82,1.1,1 RB,Theo Riddick,26,2013,77,85,88,78,87,85,2.3,3 LB,Paul Worrilow,27,2013,77,72,89,81,81,78,2.2,1 OL,Travis Swanson,26,2014,82,86,90,87,73,73,0.7,1 CB,Nevin Lawson,26,2014,78,78,89,86,90,78,0.6,1 DL,Khyri Thornton,28,2014,60,58,82,86,83,78,1.1,2 WR,Eric Ebron,24,2014,87,82,88,83,87,82,2.9,1 WR,TJ Jones,25,2014,70,66,89,82,90,79,0.4,1 WR,Jared Abbrederis,27,2014,68,68,88,79,89,71,0.4,1 RB,Darren Fells,31,2014,71,76,84,71,73,72,0.7,1 RB,Ameer Abdullah,24,2015,89,79,85,84,89,87,0.8,2 OL,Corey Robinson,25,2015,74,62,80,89,79,77,0.4,2 OL,Brian Mihalik,25,2015,62,59,83,82,74,71,0.3,2 CB,Quandre Diggs,24,2015,78,80,89,84,87,67,0.4,2 RB,Zach Zenner,26,2015,71,76,84,83,87,79,0.3,1 OL,Emmett Cleary,27,2013,61,52,87,81,78,75,0.4,1 OL,Graham Glasgow,25,2016,73,74,89,84,74,74,0.5,3 OL,Taylor Decker,23,2016,89,86,90,90,84,84,2.6,3 DL,Anthony Zettel,25,2016,76,79,90,83,86,88,0.4,3 DL,A'Shawn Robinson,22,2016,78,71,89,86,89,81,1.1,3 LB,Steve Longa,23,2016,62,50,89,85,85,73,0.3,2 S,Miles Killebrew,24,2016,86,76,88,85,87,81,0.5,3 QB,Jake Rudock,24,2016,71,56,88,88,73,56,0.3,1 RB,Dwayne Washington,23,2016,77,65,80,76,90,78,0.4,3 S,Charles Washington,24,2016,76,59,84,83,90,65,0.3,2 WR,Jace Billingsley,24,2016,70,54,87,77,90,82,0.3,2 WR,Michael Roberts,23,2017,80,65,88,81,77,70,0.5,4 DL,Jeremiah Ledbetter,23,2017,77,63,85,83,84,83,0.4,4 LB,Jarrad Davis,22,2017,77,76,82,89,89,84,2.6,4 LB,Jalen Reeves-Maybin,22,2017,78,62,84,77,76,79,0.5,4 CB,Teez Tabor,22,2017,70,63,88,80,87,72,1,4 WR,Kenny Golladay,24,2017,70,66,88,86,90,81,0.6,4 CB,Jamal Agnew,22,2017,72,51,85,81,93,76,0.4,4 DL,Jeremiah Valoaga,23,2017,69,62,85,68,73,81,0.3,3 RB,Tion Green,24,2017,72,54,83,80,81,81,0.3,3 END_PLAYERS ###################################################################### PACKERS Green Bay Packers,GB WR,Randall Cobb,27,2011,78,87,89,96,91,81,7.9,2 WR,Lance Kendricks,29,2011,71,79,89,78,82,74,1.6,2 CB,Davon House,28,2011,67,74,86,83,89,60,2.2,1 LB,Ahmad Brooks,33,2006,70,76,88,69,79,76,3.1,1 OL,Bryan Bulaga,28,2010,90,94,86,88,74,87,5,3 S,Morgan Burnett,28,2010,76,84,86,87,86,78,4.9,1 LB,Clay Matthews,31,2009,70,85,91,83,87,83,10.4,2 QB,Aaron Rodgers,34,2005,74,97,96,97,92,67,17.4,3 K,Mason Crosby,33,2007,64,59,87,94,84,59,3.2,3 WR,Jordy Nelson,32,2008,84,98,89,97,89,77,7.6,2 OL,Jahri Evans,34,2006,66,84,87,87,80,77,1.5,1 OL,David Bakhtiari,26,2013,89,98,83,90,82,94,7.5,4 DL,Quinton Dial,27,2013,83,77,78,87,87,78,2.7,3 LB,Nick Perry,27,2012,79,83,88,82,85,84,9.3,5 DL,Mike Daniels,28,2012,76,92,87,94,95,87,7.9,3 OL,Lane Taylor,28,2013,72,83,85,87,79,75,1.5,1 OL,Corey Linsley,26,2014,76,88,85,91,79,75,0.6,1 CB,Demetri Goodson,28,2014,55,59,78,83,91,53,0.4,1 S,Ha Ha Clinton-Dix,25,2014,77,84,90,86,87,80,2.3,2 OL,Ulrick John,25,2014,71,71,84,77,75,71,0.3,1 WR,Davante Adams,25,2014,86,92,87,90,89,81,0.8,1 WR,Richard Rodgers,25,2014,79,76,82,83,78,75,0.7,1 WR,Jeff Janis,26,2014,72,66,86,79,92,74,0.3,1 QB,Brett Hundley,24,2015,77,58,88,91,74,75,0.4,2 RB,Aaron Ripkowski,25,2015,85,84,82,67,82,63,0.4,2 RB,Ty Montgomery,24,2015,83,81,83,82,90,86,0.5,2 LB,Jake Ryan,25,2015,74,78,84,85,84,80,0.5,2 CB,Quinten Rollins,25,2015,71,71,90,84,87,79,0.7,2 CB,Damarious Randall,25,2015,79,72,87,86,90,70,1.8,2 S,Jermaine Whitehead,24,2015,68,51,86,79,89,53,0.3,1 LB,Joe Thomas,26,2014,82,77,87,80,80,81,0.4,1 OL,Justin McCray,25,2014,76,66,80,89,77,72,0.3,1 WR,Geronimo Allison,23,2016,73,71,84,82,87,77,0.3,1 OL,Jason Spriggs,23,2016,74,66,92,83,77,76,1,3 DL,Kenny Clark,22,2016,82,78,89,87,88,80,2.1,3 LB,Blake Martinez,23,2016,91,83,92,85,86,80,0.5,3 LB,Kyler Fackrell,26,2016,73,63,84,83,82,78,0.6,3 DL,Dean Lowry,23,2016,75,62,89,86,89,84,0.5,3 WR,Trevor Davis,24,2016,73,68,85,78,92,72,0.4,3 QB,Joe Callahan,24,2016,67,53,89,85,75,61,0.3,1 CB,Josh Hawkins,24,2016,66,57,84,84,93,45,0.3,2 S,Marwin Evans,24,2016,66,54,87,82,90,64,0.3,2 RB,Jamaal Williams,22,2017,81,63,86,84,88,83,0.5,4 DL,Montravius Adams,23,2017,75,60,92,86,84,83,0.4,4 LB,Vince Biegel,24,2017,74,62,83,79,81,77,0.6,4 CB,Kevin King,22,2017,72,69,86,86,91,74,1.6,4 S,Josh Jones,23,2017,71,71,88,85,92,77,0.8,4 K,Justin Vogel,24,2017,77,55,78,93,81,55,0.3,3 OL,Derek Hart,25,2017,63,53,86,68,45,67,0.3,1 OL,Lucas Patrick,24,2016,76,62,84,81,78,72,0.3,1 RB,Devante Mays,23,2017,63,51,86,81,88,80,0.4,4 RB,Aaron Jones,23,2017,71,61,82,82,89,85,0.4,4 LB,Chris Odom,23,2017,64,49,85,77,80,70,0.3,3 CB,Lenzy Pipkins,24,2017,72,54,78,79,90,69,0.3,3 CB,Donatello Brown,26,2017,63,49,88,79,89,53,0.3,1 END_PLAYERS ###################################################################### VIKINGS Minnesota Vikings,MIN WR,Kyle Rudolph,28,2011,75,90,89,92,77,75,5.1,3 S,Andrew Sendejo,30,2010,64,77,84,80,83,76,2.4,3 CB,Terence Newman,39,2003,58,87,86,87,87,72,2.2,1 OL,Joe Berger,35,2005,76,84,86,89,78,77,1.3,1 CB,Tramaine Brock,29,2010,73,78,87,86,88,68,0.6,1 DL,Linval Joseph,29,2010,75,87,84,97,97,82,7.1,6 DL,Tom Johnson,33,2011,61,78,80,80,81,75,1.4,1 LB,Emmanuel Lamur,28,2012,65,67,83,75,75,78,1.6,1 K,Ryan Quigley,27,2013,73,59,85,93,81,59,0.5,2 K,Kai Forbath,30,2011,64,64,83,85,87,64,0.3,1 QB,Sam Bradford,30,2010,86,86,85,90,84,50,10.8,1 CB,Xavier Rhodes,27,2013,80,88,88,92,91,67,9.2,6 DL,Everson Griffen,30,2010,78,86,81,85,88,89,7.8,6 DL,Brian Robison,34,2007,50,83,90,79,80,82,2.2,2 CB,Marcus Sherels,30,2010,64,67,81,86,90,47,1.3,1 RB,Latavius Murray,27,2013,80,84,82,85,92,88,3.4,3 WR,Michael Floyd,28,2012,63,67,86,84,89,81,0.8,1 OL,Riley Reiff,29,2012,83,79,94,85,80,78,8.4,5 S,Harrison Smith,28,2012,77,92,89,88,87,79,6.6,4 WR,Jarius Wright,28,2012,70,75,92,80,91,78,2.7,3 QB,Case Keenum,29,2012,85,81,86,87,79,50,1.3,1 OL,Mike Remmers,28,2012,70,79,84,85,74,78,4,5 OL,Kevin McDermott,27,2013,72,60,85,64,54,65,0.6,4 LB,Anthony Barr,25,2014,75,83,84,85,84,86,4.1,2 DL,Shamar Stephen,26,2014,77,73,87,85,85,78,0.5,1 QB,Teddy Bridgewater,25,2014,69,77,87,90,85,71,1.5,1 RB,Jerick McKinnon,25,2014,75,77,87,86,93,88,0.5,1 WR,Adam Thielen,27,2013,81,89,86,91,89,78,3.5,4 OL,Jeremiah Sirles,26,2014,75,66,90,78,78,73,0.4,1 WR,Stefon Diggs,24,2015,89,90,80,91,91,80,0.4,2 RB,Blake Bell,26,2015,60,51,79,78,79,78,0.5,2 DL,Danielle Hunter,23,2015,80,77,84,79,81,89,0.5,2 LB,Eric Kendricks,25,2015,86,84,83,83,82,85,1.1,2 CB,Trae Waynes,25,2015,81,76,88,86,94,59,3.1,2 OL,Nick Easton,25,2015,69,69,87,82,72,75,0.3,1 RB,Mack Brown,26,2015,66,58,88,80,87,81,0.3,1 S,Anthony Harris,26,2015,80,70,83,83,87,57,0.3,1 WR,Laquon Treadwell,22,2016,84,73,88,84,87,78,2.3,3 WR,David Morgan,24,2016,71,66,80,79,72,71,0.4,3 LB,Kentrell Brothers,24,2016,76,58,90,88,85,73,0.4,3 CB,Mackensie Alexander,24,2016,83,70,85,85,90,53,0.8,3 S,Jayron Kearse,23,2016,65,57,89,77,85,69,0.4,3 DL,Stephen Weatherly,23,2016,70,50,86,78,80,85,0.3,2 OL,Rashod Hill,25,2016,65,53,86,78,74,75,0.3,2 RB,CJ Ham,24,2016,70,66,85,77,83,82,0.3,2 RB,Dalvin Cook,22,2017,80,77,86,87,90,89,1.4,4 WR,Stacy Coley,23,2017,64,56,81,83,91,75,0.4,4 OL,Danny Isidora,23,2017,68,60,84,85,78,74,0.4,4 OL,Pat Elflein,23,2017,73,74,91,88,74,72,0.7,4 QB,Kyle Sloter,23,2017,74,61,90,89,76,71,0.3,1 DL,Jaleel Johnson,23,2017,75,62,89,82,84,83,0.6,4 DL,Tashawn Bower,22,2017,67,49,84,77,79,82,0.3,3 LB,Ben Gedeon,23,2017,79,67,93,78,81,78,0.5,4 LB,Eric Wilson,23,2017,69,50,87,81,81,79,0.3,3 OL,Aviante Collins,24,2017,72,49,84,86,74,72,0.3,3 END_PLAYERS ###################################################################### COWBOYS Dallas Cowboys,DAL K,Mike Nugent,35,2005,37,52,84,91,77,52,0.6,1 OL,Tyron Smith,27,2011,80,97,87,89,78,85,9.3,7 DL,Stephen Paea,29,2011,65,76,85,96,93,75,1.5,1 WR,Dez Bryant,29,2010,76,90,89,92,89,89,10.8,3 LB,Sean Lee,31,2010,79,97,85,95,88,84,5.6,3 WR,Jason Witten,35,2003,56,97,94,93,77,72,4.6,5 CB,Orlando Scandrick,30,2008,68,81,83,89,90,72,2.6,3 OL,L. P. Ladouceur,36,2005,76,85,85,72,55,72,0.7,1 LB,Justin Durant,32,2007,65,76,88,83,76,82,0.6,1 K,Dan Bailey,29,2011,71,71,84,92,95,71,2.4,4 RB,Darren McFadden,30,2008,66,72,77,80,89,78,0.6,1 OL,Jonathan Cooper,27,2013,69,69,79,88,77,73,1.5,1 OL,Travis Frederick,26,2013,91,95,96,92,88,81,6,7 K,Chris Jones,28,2011,70,69,81,93,92,69,1,1 WR,Terrance Williams,28,2013,74,80,88,84,90,79,3.3,4 OL,Byron Bell,28,2011,77,74,84,91,74,75,1.3,1 DL,Tyrone Crawford,28,2012,70,81,82,81,85,84,6.6,4 LB,Kyle Wilber,28,2012,62,72,83,80,80,79,1.1,1 OL,Joe Looney,27,2012,67,66,86,82,78,72,0.5,1 RB,Alfred Morris,29,2012,68,80,93,87,87,82,1.3,1 WR,James Hanna,28,2012,72,78,79,75,87,74,2.1,2 WR,Cole Beasley,28,2012,72,86,91,87,88,80,2.6,2 WR,Brice Butler,27,2013,75,79,82,81,92,74,0.8,1 DL,Benson Mayowa,26,2013,76,73,81,70,76,86,2.3,2 S,Jeff Heath,26,2013,71,72,87,83,89,67,1.4,3 OL,Zack Martin,27,2014,83,96,94,93,91,93,2.1,1 CB,Bene Benwikere,26,2014,77,64,87,85,88,64,0.4,1 LB,Anthony Hitchens,25,2014,78,80,92,81,82,83,0.6,1 DL,DeMarcus Lawrence,25,2014,84,84,86,79,82,88,1.2,1 RB,Keith Smith,25,2014,80,76,83,66,77,71,0.4,1 WR,Geoff Swaim,24,2015,78,67,79,74,82,70,0.4,2 OL,Chaz Green,25,2015,82,73,81,76,73,76,0.5,2 OL,La'el Collins,24,2015,84,74,88,88,77,75,3.9,3 LB,Damien Wilson,24,2015,77,73,86,82,81,80,0.5,2 S,Byron Jones,25,2015,82,77,89,91,91,66,2,2 DL,David Irving,24,2015,74,78,84,73,77,87,0.4,1 DL,Richard Ash,25,2015,59,46,85,88,86,75,0.3,2 RB,Rod Smith,25,2015,69,66,87,79,86,80,0.4,2 QB,Dak Prescott,24,2016,88,86,93,93,81,80,0.5,3 RB,Ezekiel Elliott,22,2016,84,88,92,87,91,90,6.2,3 DL,Charles Tapper,24,2016,73,57,90,80,85,86,0.5,3 DL,Maliek Collins,22,2016,82,76,87,84,86,86,0.7,3 LB,Jaylon Smith,22,2016,83,69,82,84,82,81,1.4,3 CB,Anthony Brown,24,2016,85,77,90,87,95,63,0.4,3 S,Kavon Frazier,23,2016,75,63,91,82,86,78,0.4,3 LB,Justin March-Lillard,24,2015,81,69,82,82,81,79,0.3,1 WR,Noah Brown,20,2017,70,52,84,85,87,72,0.4,4 WR,Blake Jarwin,23,2017,63,47,85,78,81,69,0.3,3 DL,Taco Charlton,23,2017,79,64,90,79,84,91,2.3,4 CB,Jourdan Lewis,22,2017,85,74,91,85,89,76,0.6,4 CB,Chidobe Awuzie,22,2017,77,68,88,83,91,78,0.8,4 S,Xavier Woods,22,2017,76,68,89,82,89,73,0.4,4 WR,Ryan Switzer,23,2017,68,61,90,83,89,79,0.5,4 QB,Cooper Rush,24,2017,77,62,91,88,75,51,0.3,3 DL,Lewis Neal,22,2017,73,50,87,80,81,79,0.3,1 END_PLAYERS ###################################################################### GIANTS New York Giants,NYG RB,Shane Vereen,28,2011,74,80,87,79,88,81,3.2,1 CB,Dominique R-Cromartie,31,2008,80,91,82,93,93,54,5.4,2 WR,Dwayne Harris,30,2011,67,71,90,80,87,84,2.6,3 LB,JT Thomas,29,2011,61,69,85,79,75,78,2.3,1 OL,John Jerry,31,2010,81,83,74,88,75,73,2.5,3 WR,Brandon Marshall,33,2006,74,84,93,85,86,83,3.9,2 DL,Jason Pierre-Paul,28,2010,74,87,87,85,92,92,12.3,4 QB,Eli Manning,36,2004,48,86,97,90,83,43,17.5,3 OL,Zak DeOssie,33,2007,63,78,89,71,57,68,0.7,2 DL,Damon Harrison,29,2012,75,95,85,93,97,83,6.5,4 DL,Corbin Bryant,29,2011,59,67,83,86,84,78,0.5,1 OL,DJ Fluker,26,2013,74,75,87,91,73,72,2.7,1 OL,Justin Pugh,27,2013,79,86,87,88,82,73,2.7,1 LB,Mark Herzlich,30,2011,63,75,87,78,80,75,0.6,1 QB,Geno Smith,27,2013,72,66,87,91,78,67,0.7,1 LB,Jonathan Casillas,30,2009,72,79,76,82,75,83,2,1 DL,Devin Taylor,28,2013,68,69,85,73,75,82,0.5,1 WR,Tavarres King,27,2013,71,64,85,77,89,81,0.4,1 CB,Janoris Jenkins,29,2012,80,89,91,91,91,77,7.7,4 DL,Olivier Vernon,27,2012,85,87,91,83,87,87,10.3,4 LB,Keenan Robinson,28,2012,71,76,84,82,83,84,1.8,1 RB,Rhett Ellison,29,2012,72,77,79,69,81,67,3.4,4 LB,Deontae Skinner,27,2014,69,62,86,77,73,74,0.4,1 CB,Ross Cockrell,26,2014,71,76,89,87,90,66,1.1,1 OL,Weston Richburg,26,2014,81,89,90,89,77,74,1,1 WR,Odell Beckham Jr.,25,2014,81,94,90,89,94,85,3.1,2 DL,Jay Bromley,25,2014,72,69,85,85,83,80,0.5,1 LB,Devon Kennard,26,2014,72,78,83,86,84,79,0.5,1 S,Nat Berhe,26,2014,69,60,87,80,87,67,0.4,1 K,Brad Wing,26,2014,73,62,83,91,82,62,1.4,3 RB,Orleans Darkwa,25,2014,75,79,87,85,90,85,0.7,1 DL,Kerry Wynn,26,2014,75,65,85,86,85,79,1.1,1 OL,Bobby Hart,23,2015,80,78,85,84,74,72,0.4,2 OL,Ereck Flowers,23,2015,76,74,86,90,72,73,3.5,2 S,Landon Collins,23,2015,87,92,88,87,88,85,1.3,2 LB,Curtis Grant,25,2015,61,56,81,77,80,75,0.3,2 WR,Matt LaCosse,25,2015,63,54,85,75,82,69,0.3,1 OL,Brett Jones,26,2015,71,65,83,84,73,77,0.3,1 DL,Robert Thomas,26,2014,65,58,78,94,88,71,0.3,1 RB,Paul Perkins,23,2016,84,78,84,82,89,83,0.4,3 WR,Sterling Shepard,24,2016,93,86,89,88,90,80,1.3,3 WR,Roger Lewis,24,2016,73,68,85,78,91,77,0.3,2 WR,Jerell Adams,25,2016,66,59,83,77,84,70,0.4,3 CB,Eli Apple,22,2016,83,71,89,85,92,59,3.6,3 S,Darian Thompson,24,2016,80,71,87,82,86,77,0.6,3 LB,BJ Goodson,24,2016,73,67,87,85,88,79,0.5,3 S,Andrew Adams,24,2016,81,66,87,81,88,68,0.3,2 QB,Davis Webb,22,2017,78,65,85,93,76,65,0.6,4 RB,Wayne Gallman,23,2017,83,71,88,86,89,83,0.5,4 WR,Evan Engram,23,2017,76,71,85,83,90,85,2.5,4 OL,Chad Wheeler,23,2017,81,63,83,80,72,73,0.3,3 DL,Dalvin Tomlinson,23,2017,79,79,85,86,89,80,0.9,4 DL,Avery Moss,23,2017,67,53,84,77,81,88,0.4,4 K,Aldrick Rosas,23,2016,73,53,76,89,80,53,0.3,2 LB,Calvin Munson,23,2017,68,62,87,82,83,74,0.3,3 END_PLAYERS ###################################################################### EAGLES Philadelphia Eagles,PHI S,Corey Graham,32,2007,67,77,89,83,87,79,1.2,1 RB,LeGarrette Blount,31,2010,83,96,88,89,87,86,0.9,1 WR,Torrey Smith,28,2011,69,78,91,83,90,79,3,3 OL,Stefen Wisniewski,28,2011,76,76,92,85,78,78,1.9,3 OL,Jason Kelce,30,2011,76,86,82,85,98,76,4.5,4 DL,Brandon Graham,29,2010,79,89,87,86,90,91,4.5,2 OL,Jason Peters,35,2004,70,95,89,95,85,88,7.7,3 WR,Brent Celek,32,2007,70,86,87,85,75,71,3.2,2 OL,Lane Johnson,27,2013,85,90,90,88,87,86,7.9,4 OL,Chance Warmack,26,2013,75,72,91,92,74,76,0.6,2 K,Donnie Jones,37,2004,56,64,81,85,81,64,0.9,2 DL,Chris Long,32,2008,68,77,89,86,83,83,1.3,2 WR,Zach Ertz,27,2013,87,95,87,93,80,77,6,5 CB,Patrick Robinson,30,2010,73,82,84,86,88,68,0.5,1 S,Malcolm Jenkins,30,2009,76,82,95,87,86,78,6.1,3 DL,Steven Means,27,2013,67,60,80,69,75,84,0.5,2 RB,Kenjon Barner,27,2013,70,54,89,75,92,83,0.4,1 DL,Fletcher Cox,27,2012,76,85,88,89,94,90,13.5,6 WR,Alshon Jeffery,27,2012,85,86,90,89,89,79,10.3,1 LB,Mychal Kendricks,27,2012,83,78,85,84,83,85,5.3,3 DL,Vinny Curry,29,2012,70,75,86,81,82,85,6.9,4 OL,Brandon Brooks,28,2012,75,86,83,95,82,86,6.1,4 QB,Nick Foles,28,2012,67,71,84,90,77,45,3.1,2 LB,Nigel Bradham,28,2012,70,87,93,84,81,87,2.7,1 LB,Najee Goode,28,2012,60,65,85,74,75,77,0.6,1 S,Rodney McLeod,27,2012,76,81,88,86,85,73,5.1,4 S,Jaylen Watkins,26,2014,71,70,89,82,91,64,0.4,1 CB,Dexter McDougle,26,2014,62,57,79,81,91,61,0.4,2 DL,Timmy Jernigan,25,2014,78,86,84,86,88,84,5.9,5 OL,Taylor Hart,26,2014,72,62,88,76,78,74,0.4,1 DL,Beau Allen,26,2014,73,76,87,88,88,74,0.3,1 RB,Trey Burton,26,2014,75,76,92,74,86,82,1.6,1 RB,Jay Ajayi,24,2015,86,87,81,88,88,90,0.4,2 WR,Nelson Agholor,24,2015,86,78,86,82,91,82,2.2,2 LB,Jordan Hicks,25,2015,81,86,81,85,85,86,0.5,2 CB,Ronald Darby,23,2015,83,81,81,90,93,72,0.9,2 OL,Rick Lovato,25,2015,67,59,87,72,51,69,0.3,1 QB,Carson Wentz,25,2016,74,85,92,92,83,79,6.6,3 RB,Wendell Smallwood,23,2016,74,72,89,82,91,84,0.4,3 OL,Isaac Seumalo,24,2016,84,73,85,84,73,75,0.6,3 CB,Jalen Mills,23,2016,82,71,85,85,90,72,0.4,3 OL,Halapouliva Vaitai,24,2016,77,67,89,82,74,73,0.4,3 LB,Kamu Grugier-Hill,23,2016,61,49,91,78,78,79,0.4,3 LB,Joe Walker,25,2016,63,55,89,84,83,78,0.4,3 DL,Destiny Vaeao,23,2016,77,63,82,84,85,78,0.3,2 WR,Marcus Johnson,23,2016,69,63,84,77,93,72,0.3,2 RB,Corey Clement,23,2017,76,59,85,85,87,84,0.3,3 DL,Derek Barnett,21,2017,75,68,85,87,86,83,3,4 DL,Elijah Qualls,22,2017,67,55,89,93,90,80,0.4,4 CB,Sidney Jones,21,2017,71,66,82,82,90,78,1.3,4 CB,Rasul Douglas,24,2017,76,68,88,80,87,75,0.6,4 LB,Nathan Gerry,22,2017,74,59,85,74,75,77,0.4,4 K,Jake Elliott,22,2017,67,58,78,97,86,58,0.4,4 WR,Shelton Gibson,22,2017,66,56,85,81,93,78,0.4,4 WR,Mack Hollins,24,2017,70,69,86,83,90,78,0.5,4 END_PLAYERS ###################################################################### REDSKINS Washington Redskins,WAS QB,Colt McCoy,31,2010,75,71,92,81,76,64,2.2,2 OL,Shawn Lauvao,30,2010,76,80,87,86,75,73,3.1,1 LB,Ryan Kerrigan,29,2011,79,89,92,83,88,79,8.8,4 DL,Phil Taylor,29,2011,68,68,77,88,88,80,0.5,1 RB,Niles Paul,28,2011,60,69,84,69,88,75,1.4,1 DL,Terrell McClain,29,2011,72,77,77,89,88,78,3.9,4 LB,Chris Carter,28,2011,68,69,85,76,73,74,0.6,1 LB,Mason Foster,28,2011,70,85,88,85,82,78,0.9,1 WR,Vernon Davis,33,2006,65,84,87,83,87,78,3.8,3 OL,Ty Nsekhe,32,2012,70,77,80,84,82,77,0.4,1 DL,Arthur Jones,31,2010,68,78,86,90,89,80,0.5,1 OL,Nick Sundberg,30,2009,65,65,79,69,67,64,0.7,4 OL,Trent Williams,29,2010,91,95,89,95,89,88,9.2,4 S,DeAngelo Hall,34,2004,66,83,84,87,88,68,3.5,1 S,DJ Swearinger,26,2013,81,83,91,85,83,65,3.5,3 WR,Terrelle Pryor Sr.,28,2011,72,83,88,85,91,80,5.4,1 LB,Junior Galette,29,2010,71,81,80,78,80,78,0.5,1 WR,Jordan Reed,27,2013,91,94,83,94,86,84,8,4 DL,Ziggy Hood,30,2009,62,73,82,88,84,80,0.9,2 RB,Chris Thompson,27,2013,78,86,71,81,91,81,1.6,1 WR,Brian Quick,28,2012,62,73,86,85,87,81,0.6,1 LB,Zach Brown,28,2012,71,88,83,87,80,88,1.7,1 QB,Kirk Cousins,29,2012,79,84,90,92,85,56,14.3,1 CB,Josh Norman,30,2012,77,95,94,90,88,77,10.8,4 DL,Stacy McGee,27,2013,75,76,80,86,85,76,3.5,5 LB,Trent Murphy,27,2014,75,80,88,79,84,80,0.9,1 CB,Bashaud Breeland,25,2014,75,78,85,86,87,72,0.6,1 OL,Spencer Long,27,2014,74,85,79,88,74,78,0.7,1 WR,Ryan Grant,27,2014,82,77,84,82,88,74,0.4,1 OL,Morgan Moses,26,2014,79,86,84,89,87,74,5.2,6 LB,Will Compton,28,2013,62,74,88,82,81,81,1.1,1 K,Tress Way,27,2014,62,60,83,98,84,60,1.1,4 WR,Jamison Crowder,24,2015,80,84,89,87,91,80,0.5,2 OL,Brandon Scherff,26,2015,79,92,88,92,88,73,5.2,2 OL,TJ Clemmings,26,2015,74,72,88,85,73,71,0.5,2 LB,Preston Smith,25,2015,77,73,85,80,84,79,1.2,2 LB,Martrell Spaight,24,2015,79,73,84,85,84,80,0.4,2 S,Deshazor Everett,25,2015,72,68,85,83,87,62,0.3,1 CB,Quinton Dunbar,25,2015,70,68,86,83,91,58,0.3,1 WR,Josh Doctson,25,2016,79,72,86,85,89,81,2.3,3 DL,Matt Ioannidis,23,2016,82,73,89,89,89,82,0.3,2 CB,Kendall Fuller,22,2016,88,76,84,85,90,77,0.6,3 RB,Rob Kelley,25,2016,79,82,88,88,86,86,0.3,2 DL,Anthony Lanier,24,2016,64,53,86,72,75,82,0.3,2 RB,Samaje Perine,22,2017,85,72,85,85,87,82,0.6,4 WR,Jeremy Sprinkle,23,2017,73,57,86,76,84,75,0.4,4 OL,Chase Roullier,24,2017,67,57,89,85,77,73,0.4,4 DL,Jonathan Allen,22,2017,84,76,84,85,86,84,2.7,4 LB,Ryan Anderson,23,2017,73,65,88,83,86,74,1.1,4 CB,Fabian Moreau,23,2017,68,64,85,85,94,74,0.6,4 LB,Josh Harvey-Clemon,23,2017,73,62,85,79,77,77,0.4,4 K,Nick Rose,23,2016,69,50,68,50,88,50,0.3,1 CB,Joshua Holsey,24,2017,75,53,83,79,90,68,0.4,4 S,Montae Nicholson,22,2017,84,69,83,83,92,68,0.5,4 OL,Tyler Catalina,24,2017,75,56,87,81,77,71,0.3,3 END_PLAYERS ###################################################################### FALCONS Atlanta Falcons,ATL OL,Andy Levitre,31,2009,81,88,92,88,87,78,4.7,2 OL,Ben Garland,29,2010,62,60,89,82,80,76,0.4,1 DL,Ahtyba Rubin,31,2008,67,76,87,92,91,77,0.5,1 WR,Andre Roberts,29,2010,67,79,88,79,89,81,1.4,1 WR,Julio Jones,28,2011,83,99,92,98,94,91,10,4 DL,Adrian Clayborn,29,2011,66,79,84,84,85,85,3.3,1 DL,Brooks Reed,30,2011,73,79,88,76,83,89,3.2,3 K,Matt Bosher,30,2011,76,69,88,92,88,69,1.8,3 LB,Sean Weatherspoon,30,2010,63,68,85,77,80,81,0.5,1 K,Matt Bryant,42,2002,52,70,75,96,96,70,1.9,1 QB,Matt Ryan,32,2008,84,93,96,94,91,58,15.8,2 CB,Desmond Trufant,27,2013,78,86,87,92,92,85,9.5,6 CB,Robert Alford,29,2013,71,77,83,90,93,61,6.9,4 CB,Blidi Wreh-Wilson,28,2013,69,67,83,84,88,66,0.5,1 QB,Matt Schaub,36,2004,42,84,85,82,76,38,3.4,2 WR,Levine Toilolo,26,2013,79,79,80,78,76,66,3,3 DL,Dontari Poe,27,2012,78,80,92,95,94,87,5.1,1 DL,Courtney Upshaw,28,2012,69,71,93,81,84,84,0.8,1 WR,Mohamed Sanu,28,2012,73,87,91,93,88,82,4.7,4 DL,Derrick Shelby,28,2012,64,72,84,82,82,83,3.4,3 OL,Josh Harris,28,2012,68,62,89,64,61,66,0.6,2 OL,Austin Pasztor,27,2012,69,75,85,83,75,82,0.5,1 RB,Derrick Coleman,27,2012,76,68,86,80,88,76,0.4,1 S,Kemal Ishmael,26,2013,77,73,85,82,85,77,1.5,1 LB,LaRoy Reynolds,27,2013,73,61,84,78,83,78,0.9,1 OL,Ryan Schraeder,29,2013,89,88,88,87,88,85,4.6,5 WR,Nick Williams,27,2013,79,75,87,81,86,75,0.4,1 S,Ricardo Allen,26,2014,86,81,91,88,89,68,0.4,1 OL,Jake Matthews,25,2014,78,83,94,86,86,76,5,2 RB,Devonta Freeman,25,2014,87,88,91,90,92,93,6.1,6 WR,Taylor Gabriel,26,2014,86,84,79,86,95,78,1.6,1 RB,Tevin Coleman,24,2015,83,83,85,87,94,89,0.6,2 WR,Justin Hardy,26,2015,68,69,89,84,87,83,0.5,2 OL,Ty Sambrailo,25,2015,74,72,85,79,83,72,0.7,2 DL,Grady Jarrett,24,2015,89,84,80,89,89,83,0.4,2 LB,Vic Beasley Jr.,25,2015,75,83,84,78,84,88,3.5,2 CB,Jalen Collins,24,2015,74,76,82,87,90,70,1.1,2 RB,Terron Ward,25,2015,74,68,87,82,87,85,0.3,1 CB,CJ Goodwin,27,2014,72,60,84,83,91,48,0.3,1 WR,Austin Hooper,23,2016,84,75,89,79,82,76,0.6,3 LB,Deion Jones,23,2016,86,85,84,85,82,86,0.9,3 S,Keanu Neal,22,2016,77,76,91,85,87,79,2.5,3 LB,De'vondre Campbell,24,2016,79,83,88,83,81,85,0.5,3 OL,Wes Schweitzer,24,2016,69,65,88,81,75,72,0.4,3 WR,Devin Fuller,23,2016,66,55,86,74,93,72,0.4,3 CB,Brian Poole,25,2016,76,81,85,82,89,79,0.3,2 S,Sharrod Neasman,26,2016,59,52,86,77,83,71,0.3,1 WR,Eric Saubert,23,2017,76,55,88,75,83,77,0.4,4 OL,Sean Harlow,22,2017,71,62,86,86,80,76,0.5,4 S,Damontae Kazee,24,2017,79,66,89,82,88,68,0.4,4 DL,Takkarist McKinley,22,2017,77,70,85,81,82,89,2.4,4 LB,Duke Riley,23,2017,82,66,87,87,84,80,0.7,4 WR,Marvin Hall,24,2016,62,50,88,70,92,78,0.3,1 LB,Jermaine Grace,24,2017,74,60,84,77,81,79,0.3,3 END_PLAYERS ###################################################################### PANTHERS Carolina Panthers,CAR DL,Julius Peppers,37,2002,43,84,89,82,85,88,3.1,1 WR,Greg Olsen,32,2007,76,97,92,97,85,78,6.9,2 S,Jairus Byrd,31,2009,65,71,89,85,84,73,0.5,1 S,Mike Adams,36,2004,70,88,84,84,82,71,1.5,2 QB,Derek Anderson,34,2005,51,75,91,91,74,38,1.9,1 S,Colin Jones,30,2011,63,62,82,82,90,68,0.7,2 LB,Andrew Gachkar,29,2011,63,71,83,83,77,77,0.5,1 S,Kurt Coleman,29,2010,77,84,87,84,85,69,3.5,2 OL,JJ Jansen,31,2008,71,76,85,71,56,66,0.7,4 DL,Mario Addison,30,2011,72,86,85,76,80,84,6.1,3 CB,Captain Munnerlyn,29,2009,70,74,86,85,89,72,3.5,4 LB,Thomas Davis,34,2005,45,88,90,90,84,85,8.1,2 OL,Ryan Kalil,32,2007,82,90,90,89,81,76,6.8,1 DL,Charles Johnson,31,2007,74,86,86,82,83,84,2.4,2 RB,Jonathan Stewart,30,2008,72,88,85,89,86,90,2.4,2 DL,Kyle Love,31,2010,75,79,80,85,86,76,0.7,2 OL,Greg Van Roten,27,2012,72,63,86,84,80,76,0.4,1 LB,Ben Jacobs,29,2011,68,68,89,78,76,75,0.5,1 DL,Star Lotulelei,28,2013,73,78,88,96,95,82,2.8,1 WR,Ed Dickson,30,2010,71,82,87,78,83,73,1.6,1 DL,Kawann Short,28,2013,75,89,84,87,90,85,12,5 K,Graham Gano,30,2009,72,56,80,97,85,56,2.3,1 OL,Matt Kalil,28,2012,70,78,90,89,73,73,8.1,5 OL,Amini Silatolu,29,2012,66,69,87,87,75,75,0.6,1 RB,Fozzy Whittaker,28,2012,65,72,82,74,88,79,0.7,2 DL,Wes Horton,27,2013,71,74,80,76,77,82,0.8,2 WR,Russell Shepard,27,2013,77,75,87,81,90,81,2.4,3 OL,Trai Turner,24,2014,90,87,87,88,89,79,7.4,5 QB,Garrett Gilbert,26,2014,58,47,84,85,71,55,0.3,1 WR,Brenton Bersin,27,2012,72,72,86,82,85,76,0.4,1 OL,Andrew Norwell,26,2014,78,89,88,87,80,88,1.6,1 RB,Cameron Artis-Payne,27,2015,59,48,87,84,88,81,0.4,2 WR,Devin Funchess,23,2015,87,75,86,83,89,83,1.2,2 WR,Kaelin Clay,25,2015,67,58,81,73,91,75,0.3,1 OL,Daryl Williams,25,2015,77,75,85,87,81,79,0.5,2 LB,David Mayo,24,2015,70,65,81,85,83,76,0.4,2 LB,Shaq Thompson,23,2015,83,79,89,87,84,84,2,2 CB,Ladarius Gunter,25,2015,74,68,86,82,88,77,0.3,1 WR,Chris Manhertz,25,2014,70,63,85,74,78,73,0.3,1 K,Michael Palardy,25,2014,68,57,78,91,78,57,0.3,1 OL,Tyler Larsen,26,2014,70,69,88,93,82,74,0.3,1 OL,John Theus,23,2016,78,62,90,73,74,73,0.4,3 DL,Vernon Butler,23,2016,76,71,87,83,86,88,1.9,3 LB,Jared Norris,24,2016,70,50,88,78,80,73,0.3,2 CB,Daryl Worley,22,2016,73,75,89,83,86,70,0.6,3 CB,Kevon Seymour,24,2016,66,53,80,81,93,60,0.4,3 CB,James Bradberry,24,2016,77,79,88,86,91,72,0.8,3 RB,Christian McCaffrey,21,2017,82,68,87,81,91,84,4.2,4 WR,Curtis Samuel,21,2017,83,69,86,80,95,77,1.4,4 DL,Bryan Cox Jr.,23,2017,74,51,82,81,84,83,0.3,3 OL,Taylor Moton,23,2017,75,65,94,87,83,80,0.8,4 DL,Daeshon Hall,22,2017,65,58,88,76,79,86,0.6,4 RB,Alex Armah,23,2017,71,59,93,76,82,75,0.4,4 END_PLAYERS ###################################################################### SAINTS New Orleans Saints,NO RB,Mark Ingram,28,2011,74,88,89,87,87,87,2.9,2 DL,Cameron Jordan,28,2011,80,90,92,91,94,90,8.5,4 DL,Nick Fairley,29,2011,73,79,88,88,89,84,5.4,4 S,Rafael Bush,30,2010,64,77,83,84,87,66,0.6,1 WR,Ted Ginn Jr.,32,2007,77,83,81,78,93,81,2.8,3 S,Kenny Vaccaro,26,2013,73,81,93,86,85,76,2.6,1 WR,Michael Hoomanawanui,29,2010,65,78,82,79,77,64,1.1,2 LB,Manti Te'o,26,2013,78,80,88,86,81,80,1.7,2 OL,Larry Warford,26,2013,74,80,92,89,74,81,6.3,4 QB,Drew Brees,38,2001,61,99,96,90,92,46,7.3,1 OL,Zach Strief,34,2006,51,89,89,89,84,75,3.1,2 QB,Chase Daniel,31,2009,63,70,93,85,76,57,0.5,1 K,Thomas Morstead,31,2009,64,68,89,94,94,68,2.6,2 OL,Terron Armstead,26,2013,87,89,83,88,78,89,9.1,5 OL,Max Unger,31,2009,81,94,90,87,73,74,5.3,3 DL,Alex Okafor,26,2013,80,78,92,76,77,81,1.8,1 LB,Gerald Hodges Jr.,26,2013,81,79,88,88,82,80,0.5,1 LB,AJ Klein,26,2013,72,76,91,84,79,78,4.2,4 LB,Craig Robertson,29,2011,71,78,86,86,80,78,1.2,2 WR,Coby Fleener,29,2012,74,82,84,84,87,78,4.6,4 OL,Josh LeRibeus,28,2012,74,69,87,88,72,77,0.5,1 DL,John Hughes III,29,2012,69,70,83,85,86,78,0.5,1 OL,Senio Kelemete,27,2012,72,73,85,86,73,78,0.9,1 OL,Bryce Harris,28,2012,74,65,86,82,82,75,0.5,1 LB,Michael Mauti,27,2013,80,72,80,86,85,74,0.5,1 RB,Zach Line,27,2013,62,56,90,80,83,76,0.5,1 S,Chris Banjo,27,2013,75,62,84,83,88,63,0.9,2 WR,Josh Hill,27,2013,80,74,82,81,83,74,1.9,2 WR,Brandon Coleman,25,2014,78,77,83,84,87,78,0.3,1 OL,Andrus Peat,24,2015,78,78,81,86,80,72,2.7,2 DL,Tyeler Davison,25,2015,75,76,81,91,86,77,0.4,2 LB,Hau'oli Kikaha,25,2015,79,73,79,75,78,79,1.1,2 CB,PJ Williams,24,2015,81,65,88,83,90,81,0.6,2 CB,Delvin Breaux,28,2015,69,77,82,86,90,75,0.3,1 WR,Willie Snead,25,2014,85,85,86,86,89,74,0.4,1 RB,Daniel Lasco,25,2016,64,54,82,75,90,77,0.4,3 WR,Michael Thomas,23,2016,90,89,88,92,89,80,1.1,3 DL,Sheldon Rankins,23,2016,80,74,89,86,87,86,3,3 S,Vonn Bell,23,2016,86,73,87,82,88,76,0.8,3 DL,David Onyemata,25,2016,77,73,86,89,87,83,0.5,3 CB,De'vante Harris,24,2016,70,58,85,82,88,62,0.3,2 CB,Ken Crawley,24,2016,83,74,88,85,91,67,0.3,2 WR,Tommylee Lewis,25,2016,71,56,84,78,91,76,0.3,2 K,Wil Lutz,23,2016,68,60,78,96,88,60,0.3,2 RB,Alvin Kamara,21,2017,78,72,84,85,88,89,0.7,4 OL,Ryan Ramczyk,23,2017,84,75,91,88,78,78,2,4 DL,Al-Quadin Muhammad,22,2017,76,56,86,78,79,85,0.4,4 DL,Trey Hendrickson,23,2017,77,58,88,79,82,88,0.6,4 LB,Alex Anzalone,23,2017,70,67,79,82,81,78,0.6,4 S,Marcus Williams,21,2017,79,72,89,86,87,76,1.3,4 OL,Zach Wood,24,2016,70,51,83,75,53,61,0.3,2 WR,Austin Carr,24,2017,69,57,87,81,86,83,0.3,3 QB,Taysom Hill,27,2017,59,48,84,88,68,78,0.3,3 RB,Trey Edmunds,23,2017,63,52,82,77,90,81,0.3,3 END_PLAYERS ###################################################################### BUCCANEERS Tampa Bay Buccaneers,TB DL,Clinton McDonald,30,2009,64,74,84,88,87,82,1.8,1 QB,Ryan Fitzpatrick,35,2005,69,69,86,87,76,61,1.8,1 OL,Garrison Sanborn,32,2009,64,64,84,77,66,64,0.6,1 DL,Robert Ayers,32,2009,75,83,82,78,82,84,3.9,2 S,TJ Ward,31,2010,73,81,93,84,87,75,4.1,1 DL,Gerald McCoy,29,2010,70,88,86,92,94,88,9.8,5 RB,Luke Stocker,29,2011,68,72,88,69,81,69,1,1 RB,Jacquizz Rodgers,27,2011,81,78,87,88,87,88,1,2 DL,Chris Baker,30,2009,72,85,81,90,89,81,3.1,3 S,Chris Conte,28,2011,74,81,87,83,86,63,1.5,2 DL,Darryl Tapp,33,2006,45,75,87,71,77,82,0.6,1 WR,DeSean Jackson,31,2008,71,89,84,90,94,84,6.7,3 OL,Joe Hawley,29,2010,87,84,88,89,77,76,1.7,2 CB,Brent Grimes,34,2006,66,90,85,90,87,68,4,1 OL,Demar Dotson,32,2009,79,83,87,86,87,89,2.5,3 CB,Robert McClain,29,2010,64,71,84,84,87,66,0.5,1 DL,Sealver Siliga,27,2011,71,72,82,88,90,77,0.8,1 DL,William Gholston,26,2013,77,80,82,77,83,84,3.3,5 OL,Evan Smith,31,2009,65,78,84,85,77,77,2.1,1 RB,Doug Martin,28,2012,68,83,89,91,88,92,4.3,4 LB,Lavonte David,27,2012,89,88,95,89,84,88,6,4 S,Josh Robinson,26,2012,80,69,84,86,92,55,1.6,2 K,Bryan Anger,29,2012,68,70,90,95,94,70,2,5 S,Keith Tandy,28,2012,73,76,91,85,87,69,0.6,1 OL,JR Sweezy,28,2012,73,78,83,84,73,79,3.6,4 QB,Ryan Griffin,28,2013,65,54,85,84,76,49,0.5,2 DL,Will Clarke,26,2014,66,64,85,76,79,84,0.4,1 WR,Mike Evans,24,2014,85,96,91,88,88,83,4.7,2 RB,Charles Sims III,27,2014,77,81,86,81,89,82,0.6,1 OL,Kevin Pamphile,27,2014,80,74,84,82,74,75,0.6,1 K,Patrick Murray,26,2014,60,48,78,92,85,48,0.3,1 WR,Cameron Brate,26,2014,84,84,85,87,80,70,0.4,1 LB,Adarius Glanton,27,2014,73,67,85,79,82,79,0.4,1 QB,Jameis Winston,23,2015,80,80,96,95,80,78,6.3,2 OL,Ali Marpet,24,2015,90,87,86,88,81,77,0.7,2 OL,Donovan Smith,24,2015,89,78,82,88,73,75,1.3,2 DL,Ryan Russell,25,2015,69,66,77,78,76,84,0.4,1 LB,Kwon Alexander,23,2015,92,84,85,81,83,85,0.5,2 LB,Cameron Lynch,24,2015,74,58,88,76,82,75,0.3,1 WR,Adam Humphries,24,2015,85,86,82,88,88,75,0.4,1 WR,Freddie Martino,26,2014,69,56,84,78,89,79,0.4,1 WR,Bernard Reedy,26,2014,69,61,84,80,88,75,0.3,1 OL,Caleb Benenoch,23,2016,71,64,83,78,78,72,0.4,3 DL,Noah Spence,23,2016,81,71,85,80,81,88,1.3,3 CB,Vernon Hargreaves,22,2016,74,68,88,86,90,79,3.4,3 CB,Ryan Smith,24,2016,71,58,85,81,90,63,0.5,3 LB,Devante Bond,24,2016,75,63,84,74,77,78,0.4,3 OL,Leonard Wester,24,2016,61,48,84,79,72,76,0.3,2 CB,Javien Elliott,24,2016,67,61,85,79,86,74,0.3,1 RB,Peyton Barber,23,2016,71,56,86,77,86,79,0.3,2 WR,OJ Howard,23,2017,71,68,94,82,87,80,2.6,4 WR,Chris Godwin,21,2017,80,65,94,82,91,84,0.6,4 LB,Kendell Beckwith,23,2017,84,78,83,87,88,79,0.6,4 S,Justin Evans,22,2017,80,62,89,84,87,77,1.1,4 WR,Antony Auclair,24,2017,65,53,88,71,76,77,0.3,3 END_PLAYERS ###################################################################### CARDINALS Arizona Cardinals,ARZ WR,Jermaine Gresham,29,2010,67,79,88,86,81,80,5.2,4 QB,Carson Palmer,38,2003,64,86,92,91,81,47,15.1,2 DL,Frostee Rucker,34,2006,73,82,84,80,86,83,0.7,1 OL,Justin Drescher,29,2010,76,75,86,74,52,69,0.5,1 K,Phil Dawson,42,1998,48,65,78,92,89,65,2.1,2 QB,Blaine Gabbert,28,2011,79,74,89,88,75,63,0.5,1 WR,Larry Fitzgerald,34,2004,76,97,96,97,84,79,11,1 S,Antoine Bethea,33,2006,73,80,86,84,86,74,2.9,3 LB,Karlos Dansby,36,2004,41,81,88,89,89,76,1.6,1 DL,Corey Peters,29,2010,75,86,82,88,90,83,2.2,1 OL,Mike Iupati,30,2010,85,79,89,92,86,72,5.5,3 K,Andy Lee,35,2004,47,62,81,96,84,62,2.3,2 OL,Alex Boone,30,2009,75,77,84,90,74,77,0.5,1 QB,Drew Stanton,33,2007,40,74,86,89,76,50,2.5,1 CB,Tramon Williams,34,2006,38,75,90,85,84,59,1.5,1 OL,Jared Veldheer,30,2010,85,82,88,97,74,72,5.1,2 S,Tyvon Branch,31,2008,78,85,87,88,90,74,2.1,1 LB,Josh Bynes,28,2011,73,79,84,85,83,76,0.5,1 S,Tyrann Mathieu,25,2013,84,85,85,89,90,74,9.3,5 OL,Earl Watford,27,2013,80,76,90,85,73,70,0.5,1 RB,Adrian Peterson,32,2007,76,84,90,85,90,90,1.3,2 OL,AQ Shipley,31,2009,81,86,88,87,74,72,1.3,2 RB,Andre Ellington,28,2013,69,74,82,74,90,78,0.6,1 LB,Chandler Jones,27,2012,85,90,87,84,86,85,11.7,5 CB,Justin Bethel,27,2012,74,72,87,88,87,74,2.2,1 WR,Brittan Golden,29,2012,69,68,84,78,88,75,0.4,1 RB,Kerwynn Williams,26,2013,78,72,86,81,89,83,0.3,1 WR,Jaron Brown,27,2013,83,79,84,88,91,81,0.8,1 LB,Kareem Martin,25,2014,65,60,84,81,83,76,0.5,1 LB,Deone Bucannon,25,2014,85,83,90,84,83,86,2.6,2 WR,Troy Niklas,25,2014,64,58,85,78,77,72,0.8,1 WR,John Brown,27,2014,77,81,82,88,94,83,0.7,1 OL,John Wetzel,26,2013,71,67,83,86,79,71,0.3,1 DL,Josh Mauro,26,2014,74,74,90,85,85,78,2,2 RB,David Johnson,26,2015,90,90,91,91,92,94,0.5,2 WR,JJ Nelson,25,2015,78,78,77,84,96,75,0.4,2 OL,DJ Humphries,24,2015,82,68,86,88,81,73,2,2 DL,Rodney Gunter,25,2015,77,68,81,75,81,81,0.5,2 LB,Markus Golden,26,2015,81,85,86,79,77,79,0.7,2 DL,Olsen Pierre,26,2015,71,64,82,79,82,80,0.3,1 DL,Xavier Williams,25,2015,70,68,86,83,82,77,0.3,1 RB,DJ Foster,24,2016,63,50,85,76,90,81,0.4,2 OL,Max Tuerk,23,2016,68,62,86,79,81,77,0.7,3 OL,Evan Boehm,24,2016,86,75,90,83,77,72,0.5,3 DL,Robert Nkemdiche,23,2016,72,69,86,81,83,89,2,3 LB,Scooby Wright III,23,2016,82,72,83,79,81,79,0.3,1 CB,Brandon Williams,25,2016,70,60,90,82,93,62,0.6,3 RB,Elijhaa Penny,24,2016,78,62,80,81,81,82,0.3,1 S,Budda Baker,21,2017,73,65,89,82,91,72,1.5,4 OL,Will Holden,24,2017,73,59,86,85,77,72,0.4,4 LB,Haason Reddick,23,2017,76,71,88,80,83,84,3.2,4 S,Rudy Ford,23,2017,77,57,87,80,92,74,0.4,4 RB,Ricky Seals-Jones,22,2017,68,48,84,70,83,71,0.3,3 WR,Chad Williams,23,2017,66,55,87,84,90,80,0.6,4 END_PLAYERS ###################################################################### RAMS Los Angeles Rams,LAR OL,Andrew Whitworth,36,2006,81,95,90,94,86,85,7.7,3 LB,Robert Quinn,27,2011,82,83,87,80,87,83,7.4,3 DL,Tyrunn Walker,27,2012,72,66,80,82,81,79,0.5,1 WR,Tavon Austin,26,2013,79,77,87,77,95,82,6.1,5 OL,Rodger Saffold,29,2010,71,80,80,84,85,72,4.4,2 LB,Alec Ogletree,26,2013,79,80,87,86,81,84,2.4,1 WR,Robert Woods,25,2013,79,81,90,86,91,79,4.1,5 OL,Jake McQuaide,30,2011,77,65,82,72,50,62,0.6,1 CB,Kayvon Webster,26,2013,76,76,91,86,90,82,2.3,2 LB,Connor Barwin,31,2009,72,77,91,79,83,83,2.1,1 OL,John Sullivan,32,2008,76,83,92,86,77,75,0.7,1 LB,Mark Barron,28,2012,70,78,86,83,81,83,6,4 DL,Michael Brockers,27,2012,87,86,88,87,91,87,6.9,3 CB,Trumaine Johnson,27,2012,77,85,83,88,88,79,10,1 K,Greg Zuerlein,30,2012,64,63,83,95,89,63,1.5,3 K,Johnny Hekker,27,2012,79,70,85,97,96,70,1.9,4 RB,Lance Dunbar,27,2012,71,74,79,77,91,83,0.9,1 WR,Derek Carrier,27,2012,74,70,83,77,87,77,0.6,1 CB,Nickell Robey,25,2013,83,82,87,90,89,49,0.6,1 S,Cody Davis,28,2013,68,68,84,86,90,71,0.9,1 WR,Sammy Watkins,24,2014,87,79,89,86,92,88,4.9,1 DL,Dominique Easley,25,2014,75,79,77,83,84,82,1.1,1 S,Lamarcus Joyner,27,2014,84,83,88,87,88,69,1,1 OL,Cornelius Lucas,26,2014,73,70,80,75,77,75,0.4,1 DL,Ethan Westbrooks,27,2014,74,76,82,82,80,80,1.1,1 QB,Sean Mannion,25,2015,63,56,87,88,74,50,0.6,2 RB,Todd Gurley,23,2015,91,90,86,88,92,91,3.3,2 OL,Andrew Donnal,25,2015,66,67,84,77,75,74,0.5,2 OL,Jamon Brown,24,2015,74,75,82,87,82,71,0.6,2 OL,Rob Havenstein,25,2015,75,85,85,84,87,73,0.8,2 LB,Bryce Hager,25,2015,66,65,83,83,84,78,0.4,2 CB,Troy Hill,26,2015,66,64,87,84,87,60,0.3,1 LB,Matt Longacre,26,2015,69,66,86,73,77,77,0.4,1 OL,Darrell Williams,24,2015,76,57,83,75,77,78,0.3,1 RB,Malcolm Brown,24,2015,68,55,85,80,89,78,0.3,1 QB,Jared Goff,23,2016,77,81,91,92,81,59,7,3 QB,Brandon Allen,25,2016,56,51,83,88,74,47,0.4,3 WR,Pharoh Cooper,22,2016,71,61,86,78,87,72,0.5,3 RB,Tyler Higbee,24,2016,85,75,88,75,80,78,0.5,3 S,Marqui Christian,23,2016,70,56,87,79,88,74,0.4,3 S,Blake Countess,24,2016,72,49,84,79,88,57,0.3,2 WR,Mike Thomas,23,2016,73,55,89,76,88,72,0.4,3 OL,Austin Blythe,25,2016,70,54,94,82,80,73,0.4,3 LB,Cory Littleton,24,2016,73,63,83,69,72,77,0.3,2 DL,Morgan Fox,23,2016,75,65,89,84,86,84,0.3,1 WR,Gerald Everett,23,2017,78,63,86,83,85,80,1.3,4 WR,Cooper Kupp,24,2017,75,75,89,87,87,81,0.7,4 DL,Tanzel Smart,23,2017,72,68,83,81,81,77,0.4,4 LB,Ejuan Price,24,2017,68,60,80,78,81,75,0.4,4 S,John Johnson,22,2017,72,67,90,84,85,74,0.6,4 WR,Josh Reynolds,22,2017,77,65,86,85,88,75,0.6,4 LB,Samson Ebukam,22,2017,74,62,89,81,85,81,0.5,4 RB,Justin Davis,22,2017,73,52,85,75,88,83,0.3,3 CB,Dominique Hatfield,23,2017,72,53,85,77,85,63,0.3,3 END_PLAYERS ###################################################################### SEAHAWKS Seattle Seahawks,SEA DL,Michael Bennett,32,2009,70,84,88,90,94,89,6.8,4 DL,Dwight Freeney,37,2002,71,76,80,73,75,83,0.6,1 LB,KJ Wright,28,2011,74,86,90,92,84,80,4.8,2 CB,Neiko Thorpe,27,2012,61,54,87,81,90,67,1.2,2 DL,Cliff Avril,31,2008,69,87,89,76,77,86,4.5,2 OL,Luke Joeckel,26,2013,79,72,86,87,74,74,6.9,1 DL,Dion Jordan,27,2013,73,61,81,66,77,91,0.4,1 DL,Sheldon Richardson,27,2013,75,78,86,88,94,89,3,1 RB,Eddie Lacy,27,2013,78,77,90,85,86,85,3.4,1 WR,Jimmy Graham,31,2010,77,86,86,86,85,80,6,1 S,Earl Thomas III,28,2010,73,91,91,92,91,76,6.6,2 K,Jon Ryan,36,2006,66,64,82,89,82,64,1.9,3 OL,Duane Brown,32,2008,74,92,90,90,87,86,5.3,2 OL,Oday Aboushi,26,2013,84,78,90,78,73,73,0.7,1 WR,Doug Baldwin,29,2011,79,95,88,94,90,78,6.3,4 WR,Luke Willson,27,2013,80,74,82,82,87,75,1.6,1 LB,Bobby Wagner,27,2012,91,93,90,97,89,90,7.6,3 QB,Russell Wilson,29,2012,90,89,97,93,85,79,14.2,3 LB,Michael Wilhoite,31,2011,69,76,87,83,81,81,1.2,1 CB,Jeremy Lane,27,2012,80,76,85,87,88,68,4.2,3 K,Blair Walsh,27,2012,61,52,86,94,78,52,0.7,1 QB,Austin Davis,28,2012,63,66,87,85,77,63,0.5,1 CB,DeShawn Shead,29,2012,68,82,85,86,87,83,0.8,1 OL,Matt Tobin,27,2013,66,67,85,79,75,73,0.5,1 LB,Terence Garvin,26,2013,70,64,86,78,76,76,0.5,1 S,Brad McDougald,27,2013,74,81,86,85,88,72,1.5,1 OL,Justin Britt,26,2014,89,90,84,87,83,76,5,4 WR,Paul Richardson,25,2014,83,79,83,85,94,79,1,1 LB,Marcus Smith II,25,2014,70,69,85,76,79,78,0.4,1 WR,Tyler Lockett,25,2015,78,79,83,86,93,82,0.6,2 OL,Mark Glowinski,25,2015,72,69,89,91,73,70,0.4,2 DL,Frank Clark,24,2015,88,78,80,88,80,82,0.7,2 LB,DJ Alexander,26,2015,73,65,79,78,75,80,0.4,2 CB,Justin Coleman,24,2015,77,71,86,85,88,67,0.4,1 RB,Thomas Rawls,24,2015,82,81,84,81,80,84,0.3,1 DL,Garrison Smith,26,2014,70,59,86,86,85,76,0.3,1 OL,Tyler Ott,25,2014,56,48,84,71,50,54,0.3,1 RB,CJ Prosise,23,2016,76,68,84,80,90,84,0.6,3 RB,Nick Vannett,24,2016,75,57,84,73,76,75,0.6,3 OL,Germain Ifedi,23,2016,75,77,86,82,72,76,1.9,3 DL,Jarran Reed,25,2016,80,72,87,90,92,83,1,3 LB,Josh Forrest,25,2016,74,58,90,69,70,76,0.3,1 DL,Quinton Jefferson,24,2016,67,51,84,79,81,84,0.4,3 WR,Tanner McEvoy,24,2016,69,62,87,79,87,79,0.3,2 RB,JD McKissic,24,2016,76,65,86,69,88,79,0.3,1 WR,Amara Darboh,23,2017,76,67,88,82,91,80,0.6,4 DL,Nazair Jones,23,2017,85,70,83,87,86,80,0.6,4 OL,Ethan Pocic,22,2017,79,69,88,85,83,76,0.9,4 CB,Shaquill Griffin,22,2017,71,68,88,85,92,78,0.6,4 S,Delano Hill,22,2017,80,62,88,78,86,76,0.6,4 S,Tedric Thompson,22,2017,82,65,85,81,86,71,0.6,4 RB,Christopher Carson,23,2017,81,77,82,88,86,84,0.4,4 OL,Jordan Roos,24,2017,74,51,84,94,77,70,0.3,3 END_PLAYERS ###################################################################### 49ERS San Francisco 49ers,SF K,Robbie Gould,36,2005,49,59,80,94,85,59,1.3,2 CB,Leon Hall,33,2007,62,69,89,81,87,77,0.6,1 OL,Zane Beadles,31,2010,67,77,90,83,72,69,2.5,2 DL,Elvis Dumervil,33,2006,59,79,85,78,81,84,2.7,2 LB,Dekoda Watson,29,2010,66,64,80,73,72,80,1.2,3 WR,Aldrick Robinson,29,2011,68,75,83,79,92,78,1.3,2 OL,Brandon Fusco,29,2011,79,73,80,89,85,73,0.8,1 WR,Pierre Garcon,31,2008,82,95,87,95,89,81,7.1,5 LB,Malcolm Smith,28,2011,76,81,83,82,81,84,4,5 DL,Tony McDaniel,32,2006,68,79,79,88,89,77,0.6,1 OL,Daniel Kilgore,30,2011,73,79,86,89,72,74,1.1,1 OL,Joe Staley,33,2007,57,94,90,92,83,78,4.8,3 DL,Leger Douzable,31,2008,66,79,81,83,86,78,0.5,1 S,Eric Reid,26,2013,84,78,87,87,88,67,2.4,1 DL,Datone Jones,27,2013,72,76,84,81,79,82,0.5,1 DL,Tank Carradine,27,2013,84,79,82,90,89,88,2.3,1 OL,Kyle Nelson,31,2011,73,66,84,68,52,62,0.7,2 WR,Marquise Goodwin,27,2013,77,78,82,81,95,75,2.5,2 DL,Earl Mitchell,30,2010,63,71,83,80,82,84,2.8,4 RB,Kyle Juszczyk,26,2013,85,85,91,80,82,79,3.9,4 WR,Garrett Celek,29,2012,65,66,80,78,80,72,1.9,3 LB,Ray-Ray Armstrong,26,2013,80,74,84,81,76,80,1.1,2 CB,Dontae Johnson,26,2014,71,69,87,85,91,64,0.5,1 RB,Carlos Hyde,26,2014,84,85,87,86,89,90,0.7,1 QB,Jimmy Garoppolo,26,2014,79,75,92,90,81,61,0.6,1 S,Jimmie Ward,26,2014,76,78,90,87,90,71,2.4,2 DL,Aaron Lynch,24,2014,79,75,81,76,80,86,0.6,1 CB,K'Waun Williams,26,2014,77,67,87,84,88,68,0.4,1 LB,Brock Coyle,27,2014,73,69,90,79,81,81,1.1,1 OL,Laken Tomlinson,25,2015,71,74,86,87,74,73,2,2 OL,Trent Brown,24,2015,83,87,80,91,80,88,0.4,2 DL,Arik Armstead,24,2015,83,77,82,85,88,85,2.3,2 LB,Eli Harold,23,2015,73,66,86,77,81,80,0.6,2 S,Jaquiski Tartt,25,2015,76,81,89,85,89,66,1,2 K,Bradley Pinion,23,2015,70,55,81,91,76,55,0.4,2 RB,Raheem Mostert,25,2015,75,62,86,71,93,79,0.3,1 OL,Joshua Garnett,23,2016,86,76,88,84,74,72,2.1,3 DL,DeForest Buckner,23,2016,79,86,91,86,89,89,4.4,3 DL,Ronald Blair,24,2016,64,55,87,84,84,85,0.4,3 S,Dexter McCoil,26,2015,73,61,90,79,86,68,0.3,2 QB,CJ Beathard,24,2017,75,63,86,91,77,67,0.6,4 OL,Erik Magnuson,23,2017,76,62,81,81,75,75,0.3,3 DL,Solomon Thomas,22,2017,80,68,92,91,90,88,7,4 LB,Reuben Foster,23,2017,76,72,82,85,88,81,2.1,4 LB,Elijah Lee,21,2017,75,57,90,80,77,78,0.4,4 CB,Ahkello Witherspoon,22,2017,67,63,84,85,91,55,0.7,4 S,Adrian Colbert,24,2017,64,57,86,78,89,60,0.4,4 DL,DJ Jones,22,2017,79,58,89,89,85,83,0.4,4 LB,Pita Taumoepenu,23,2017,76,56,89,71,77,75,0.4,4 WR,George Kittle,24,2017,78,73,85,82,87,74,0.4,4 WR,Trent Taylor,23,2017,73,63,88,86,86,83,0.4,4 WR,Kendrick Bourne,22,2017,67,53,81,77,87,79,0.3,3 RB,Matt Breida,22,2017,76,67,85,82,93,82,0.3,3 WR,Victor Bolden Jr.,22,2017,71,54,87,78,90,75,0.3,3 OL,Darrell Williams,24,2017,67,53,86,78,74,75,0.3,1 END_PLAYERS
landonasato / FunctionAccording to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Ooming! Hang on a second. Hello? - Barry? - Adam? - Oan you believe this is happening? - I can't. I'll pick you up. Looking sharp. Use the stairs. Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. - You got lint on your fuzz. - Ow! That's me! - Wave to us! We'll be in row 118,000. - Bye! Barry, I told you, stop flying in the house! - Hey, Adam. - Hey, Barry. - Is that fuzz gel? - A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkward. Three days college. I'm glad I took a day and hitchhiked around the hive. You did come back different. - Hi, Barry. - Artie, growing a mustache? Looks good. - Hear about Frankie? - Yeah. - You going to the funeral? - No, I'm not going. Everybody knows, sting someone, you die. Don't waste it on a squirrel. Such a hothead. I guess he could have just gotten out of the way. I love this incorporating an amusement park into our day. That's why we don't need vacations. Boy, quite a bit of pomp... under the circumstances. - Well, Adam, today we are men. - We are! - Bee-men. - Amen! Hallelujah! Students, faculty, distinguished bees, please welcome Dean Buzzwell. Welcome, New Hive Oity graduating class of... ...9:15. That concludes our ceremonies. And begins your career at Honex Industries! Will we pick ourjob today? I heard it's just orientation. Heads up! Here we go. Keep your hands and antennas inside the tram at all times. - Wonder what it'll be like? - A little scary. Welcome to Honex, a division of Honesco and a part of the Hexagon Group. This is it! Wow. Wow. We know that you, as a bee, have worked your whole life to get to the point where you can work for your whole life. Honey begins when our valiant Pollen Jocks bring the nectar to the hive. Our top-secret formula is automatically color-corrected, scent-adjusted and bubble-contoured into this soothing sweet syrup with its distinctive golden glow you know as... Honey! - That girl was hot. - She's my cousin! - She is? - Yes, we're all cousins. - Right. You're right. - At Honex, we constantly strive to improve every aspect of bee existence. These bees are stress-testing a new helmet technology. - What do you think he makes? - Not enough. Here we have our latest advancement, the Krelman. - What does that do? - Oatches that little strand of honey that hangs after you pour it. Saves us millions. Oan anyone work on the Krelman? Of course. Most bee jobs are small ones. But bees know that every small job, if it's done well, means a lot. But choose carefully because you'll stay in the job you pick for the rest of your life. The same job the rest of your life? I didn't know that. What's the difference? You'll be happy to know that bees, as a species, haven't had one day off in 27 million years. So you'll just work us to death? We'll sure try. Wow! That blew my mind! "What's the difference?" How can you say that? One job forever? That's an insane choice to have to make. I'm relieved. Now we only have to make one decision in life. But, Adam, how could they never have told us that? Why would you question anything? We're bees. We're the most perfectly functioning society on Earth. You ever think maybe things work a little too well here? Like what? Give me one example. I don't know. But you know what I'm talking about. Please clear the gate. Royal Nectar Force on approach. Wait a second. Oheck it out. - Hey, those are Pollen Jocks! - Wow. I've never seen them this close. They know what it's like outside the hive. Yeah, but some don't come back. - Hey, Jocks! - Hi, Jocks! You guys did great! You're monsters! You're sky freaks! I love it! I love it! - I wonder where they were. - I don't know. Their day's not planned. Outside the hive, flying who knows where, doing who knows what. You can'tjust decide to be a Pollen Jock. You have to be bred for that. Right. Look. That's more pollen than you and I will see in a lifetime. It's just a status symbol. Bees make too much of it. Perhaps. Unless you're wearing it and the ladies see you wearing it. Those ladies? Aren't they our cousins too? Distant. Distant. Look at these two. - Oouple of Hive Harrys. - Let's have fun with them. It must be dangerous being a Pollen Jock. Yeah. Once a bear pinned me against a mushroom! He had a paw on my throat, and with the other, he was slapping me! - Oh, my! - I never thought I'd knock him out. What were you doing during this? Trying to alert the authorities. I can autograph that. A little gusty out there today, wasn't it, comrades? Yeah. Gusty. We're hitting a sunflower patch six miles from here tomorrow. - Six miles, huh? - Barry! A puddle jump for us, but maybe you're not up for it. - Maybe I am. - You are not! We're going 0900 at J-Gate. What do you think, buzzy-boy? Are you bee enough? I might be. It all depends on what 0900 means. Hey, Honex! Dad, you surprised me. You decide what you're interested in? - Well, there's a lot of choices. - But you only get one. Do you ever get bored doing the same job every day? Son, let me tell you about stirring. You grab that stick, and you just move it around, and you stir it around. You get yourself into a rhythm. It's a beautiful thing. You know, Dad, the more I think about it, maybe the honey field just isn't right for me. You were thinking of what, making balloon animals? That's a bad job for a guy with a stinger. Janet, your son's not sure he wants to go into honey! - Barry, you are so funny sometimes. - I'm not trying to be funny. You're not funny! You're going into honey. Our son, the stirrer! - You're gonna be a stirrer? - No one's listening to me! Wait till you see the sticks I have. I could say anything right now. I'm gonna get an ant tattoo! Let's open some honey and celebrate! Maybe I'll pierce my thorax. Shave my antennae. Shack up with a grasshopper. Get a gold tooth and call everybody "dawg"! I'm so proud. - We're starting work today! - Today's the day. Oome on! All the good jobs will be gone. Yeah, right. Pollen counting, stunt bee, pouring, stirrer, front desk, hair removal... - Is it still available? - Hang on. Two left! One of them's yours! Oongratulations! Step to the side. - What'd you get? - Picking crud out. Stellar! Wow! Oouple of newbies? Yes, sir! Our first day! We are ready! Make your choice. - You want to go first? - No, you go. Oh, my. What's available? Restroom attendant's open, not for the reason you think. - Any chance of getting the Krelman? - Sure, you're on. I'm sorry, the Krelman just closed out. Wax monkey's always open. The Krelman opened up again. What happened? A bee died. Makes an opening. See? He's dead. Another dead one. Deady. Deadified. Two more dead. Dead from the neck up. Dead from the neck down. That's life! Oh, this is so hard! Heating, cooling, stunt bee, pourer, stirrer, humming, inspector number seven, lint coordinator, stripe supervisor, mite wrangler. Barry, what do you think I should... Barry? Barry! All right, we've got the sunflower patch in quadrant nine... What happened to you? Where are you? - I'm going out. - Out? Out where? - Out there. - Oh, no! I have to, before I go to work for the rest of my life. You're gonna die! You're crazy! Hello? Another call coming in. If anyone's feeling brave, there's a Korean deli on 83rd that gets their roses today. Hey, guys. - Look at that. - Isn't that the kid we saw yesterday? Hold it, son, flight deck's restricted. It's OK, Lou. We're gonna take him up. Really? Feeling lucky, are you? Sign here, here. Just initial that. - Thank you. - OK. You got a rain advisory today, and as you all know, bees cannot fly in rain. So be careful. As always, watch your brooms, hockey sticks, dogs, birds, bears and bats. Also, I got a couple of reports of root beer being poured on us. Murphy's in a home because of it, babbling like a cicada! - That's awful. - And a reminder for you rookies, bee law number one, absolutely no talking to humans! All right, launch positions! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Black and yellow! Hello! You ready for this, hot shot? Yeah. Yeah, bring it on. Wind, check. - Antennae, check. - Nectar pack, check. - Wings, check. - Stinger, check. Scared out of my shorts, check. OK, ladies, let's move it out! Pound those petunias, you striped stem-suckers! All of you, drain those flowers! Wow! I'm out! I can't believe I'm out! So blue. I feel so fast and free! Box kite! Wow! Flowers! This is Blue Leader. We have roses visual. Bring it around 30 degrees and hold. Roses! 30 degrees, roger. Bringing it around. Stand to the side, kid. It's got a bit of a kick. That is one nectar collector! - Ever see pollination up close? - No, sir. I pick up some pollen here, sprinkle it over here. Maybe a dash over there, a pinch on that one. See that? It's a little bit of magic. That's amazing. Why do we do that? That's pollen power. More pollen, more flowers, more nectar, more honey for us. Oool. I'm picking up a lot of bright yellow. Oould be daisies. Don't we need those? Oopy that visual. Wait. One of these flowers seems to be on the move. Say again? You're reporting a moving flower? Affirmative. That was on the line! This is the coolest. What is it? I don't know, but I'm loving this color. It smells good. Not like a flower, but I like it. Yeah, fuzzy. Ohemical-y. Oareful, guys. It's a little grabby. My sweet lord of bees! Oandy-brain, get off there! Problem! - Guys! - This could be bad. Affirmative. Very close. Gonna hurt. Mama's little boy. You are way out of position, rookie! Ooming in at you like a missile! Help me! I don't think these are flowers. - Should we tell him? - I think he knows. What is this?! Match point! You can start packing up, honey, because you're about to eat it! Yowser! Gross. There's a bee in the car! - Do something! - I'm driving! - Hi, bee. - He's back here! He's going to sting me! Nobody move. If you don't move, he won't sting you. Freeze! He blinked! Spray him, Granny! What are you doing?! Wow... the tension level out here is unbelievable. I gotta get home. Oan't fly in rain. Oan't fly in rain. Oan't fly in rain. Mayday! Mayday! Bee going down! Ken, could you close the window please? Ken, could you close the window please? Oheck out my new resume. I made it into a fold-out brochure. You see? Folds out. Oh, no. More humans. I don't need this. What was that? Maybe this time. This time. This time. This time! This time! This... Drapes! That is diabolical. It's fantastic. It's got all my special skills, even my top-ten favorite movies. What's number one? Star Wars? Nah, I don't go for that... ...kind of stuff. No wonder we shouldn't talk to them. They're out of their minds. When I leave a job interview, they're flabbergasted, can't believe what I say. There's the sun. Maybe that's a way out. I don't remember the sun having a big 75 on it. I predicted global warming. I could feel it getting hotter. At first I thought it was just me. Wait! Stop! Bee! Stand back. These are winter boots. Wait! Don't kill him! You know I'm allergic to them! This thing could kill me! Why does his life have less value than yours? Why does his life have any less value than mine? Is that your statement? I'm just saying all life has value. You don't know what he's capable of feeling. My brochure! There you go, little guy. I'm not scared of him. It's an allergic thing. Put that on your resume brochure. My whole face could puff up. Make it one of your special skills. Knocking someone out is also a special skill. Right. Bye, Vanessa. Thanks. - Vanessa, next week? Yogurt night? - Sure, Ken. You know, whatever. - You could put carob chips on there. - Bye. - Supposed to be less calories. - Bye. I gotta say something. She saved my life. I gotta say something. All right, here it goes. Nah. What would I say? I could really get in trouble. It's a bee law. You're not supposed to talk to a human. I can't believe I'm doing this. I've got to. Oh, I can't do it. Oome on! No. Yes. No. Do it. I can't. How should I start it? "You like jazz?" No, that's no good. Here she comes! Speak, you fool! Hi! I'm sorry. - You're talking. - Yes, I know. You're talking! I'm so sorry. No, it's OK. It's fine. I know I'm dreaming. But I don't recall going to bed. Well, I'm sure this is very disconcerting. This is a bit of a surprise to me. I mean, you're a bee! I am. And I'm not supposed to be doing this, but they were all trying to kill me. And if it wasn't for you... I had to thank you. It's just how I was raised. That was a little weird. - I'm talking with a bee. - Yeah. I'm talking to a bee. And the bee is talking to me! I just want to say I'm grateful. I'll leave now. - Wait! How did you learn to do that? - What? The talking thing. Same way you did, I guess. "Mama, Dada, honey." You pick it up. - That's very funny. - Yeah. Bees are funny. If we didn't laugh, we'd cry with what we have to deal with. Anyway... Oan I... ...get you something? - Like what? I don't know. I mean... I don't know. Ooffee? I don't want to put you out. It's no trouble. It takes two minutes. - It's just coffee. - I hate to impose. - Don't be ridiculous! - Actually, I would love a cup. Hey, you want rum cake? - I shouldn't. - Have some. - No, I can't. - Oome on! I'm trying to lose a couple micrograms. - Where? - These stripes don't help. You look great! I don't know if you know anything about fashion. Are you all right? No. He's making the tie in the cab as they're flying up Madison. He finally gets there. He runs up the steps into the church. The wedding is on. And he says, "Watermelon? I thought you said Guatemalan. Why would I marry a watermelon?" Is that a bee joke? That's the kind of stuff we do. Yeah, different. So, what are you gonna do, Barry? About work? I don't know. I want to do my part for the hive, but I can't do it the way they want. I know how you feel. - You do? - Sure. My parents wanted me to be a lawyer or a doctor, but I wanted to be a florist. - Really? - My only interest is flowers. Our new queen was just elected with that same campaign slogan. Anyway, if you look... There's my hive right there. See it? You're in Sheep Meadow! Yes! I'm right off the Turtle Pond! No way! I know that area. I lost a toe ring there once. - Why do girls put rings on their toes? - Why not? - It's like putting a hat on your knee. - Maybe I'll try that. - You all right, ma'am? - Oh, yeah. Fine. Just having two cups of coffee! Anyway, this has been great. Thanks for the coffee. Yeah, it's no trouble. Sorry I couldn't finish it. If I did, I'd be up the rest of my life. Are you...? Oan I take a piece of this with me? Sure! Here, have a crumb. - Thanks! - Yeah. All right. Well, then... I guess I'll see you around. Or not. OK, Barry. And thank you so much again... for before. Oh, that? That was nothing. Well, not nothing, but... Anyway... This can't possibly work. He's all set to go. We may as well try it. OK, Dave, pull the chute. - Sounds amazing. - It was amazing! It was the scariest, happiest moment of my life. Humans! I can't believe you were with humans! Giant, scary humans! What were they like? Huge and crazy. They talk crazy. They eat crazy giant things. They drive crazy. - Do they try and kill you, like on TV? - Some of them. But some of them don't. - How'd you get back? - Poodle. You did it, and I'm glad. You saw whatever you wanted to see. You had your "experience." Now you can pick out yourjob and be normal. - Well... - Well? Well, I met someone. You did? Was she Bee-ish? - A wasp?! Your parents will kill you! - No, no, no, not a wasp. - Spider? - I'm not attracted to spiders. I know it's the hottest thing, with the eight legs and all. I can't get by that face. So who is she? She's... human. No, no. That's a bee law. You wouldn't break a bee law. - Her name's Vanessa. - Oh, boy. She's so nice. And she's a florist! Oh, no! You're dating a human florist! We're not dating. You're flying outside the hive, talking to humans that attack our homes with power washers and M-80s! One-eighth a stick of dynamite! She saved my life! And she understands me. This is over! Eat this. This is not over! What was that? - They call it a crumb. - It was so stingin' stripey! And that's not what they eat. That's what falls off what they eat! - You know what a Oinnabon is? - No. It's bread and cinnamon and frosting. They heat it up... Sit down! ...really hot! - Listen to me! We are not them! We're us. There's us and there's them! Yes, but who can deny the heart that is yearning? There's no yearning. Stop yearning. Listen to me! You have got to start thinking bee, my friend. Thinking bee! - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Thinking bee! There he is. He's in the pool. You know what your problem is, Barry? I gotta start thinking bee? How much longer will this go on? It's been three days! Why aren't you working? I've got a lot of big life decisions to think about. What life? You have no life! You have no job. You're barely a bee! Would it kill you to make a little honey? Barry, come out. Your father's talking to you. Martin, would you talk to him? Barry, I'm talking to you! You coming? Got everything? All set! Go ahead. I'll catch up. Don't be too long. Watch this! Vanessa! - We're still here. - I told you not to yell at him. He doesn't respond to yelling! - Then why yell at me? - Because you don't listen! I'm not listening to this. Sorry, I've gotta go. - Where are you going? - I'm meeting a friend. A girl? Is this why you can't decide? Bye. I just hope she's Bee-ish. They have a huge parade of flowers every year in Pasadena? To be in the Tournament of Roses, that's every florist's dream! Up on a float, surrounded by flowers, crowds cheering. A tournament. Do the roses compete in athletic events? No. All right, I've got one. How come you don't fly everywhere? It's exhausting. Why don't you run everywhere? It's faster. Yeah, OK, I see, I see. All right, your turn. TiVo. You can just freeze live TV? That's insane! You don't have that? We have Hivo, but it's a disease. It's a horrible, horrible disease. Oh, my. Dumb bees! You must want to sting all those jerks. We try not to sting. It's usually fatal for us. So you have to watch your temper. Very carefully. You kick a wall, take a walk, write an angry letter and throw it out. Work through it like any emotion: Anger, jealousy, lust. Oh, my goodness! Are you OK? Yeah. - What is wrong with you?! - It's a bug. He's not bothering anybody. Get out of here, you creep! What was that? A Pic 'N' Save circular? Yeah, it was. How did you know? It felt like about 10 pages. Seventy-five is pretty much our limit. You've really got that down to a science. - I lost a cousin to Italian Vogue. - I'll bet. What in the name of Mighty Hercules is this? How did this get here? Oute Bee, Golden Blossom, Ray Liotta Private Select? - Is he that actor? - I never heard of him. - Why is this here? - For people. We eat it. You don't have enough food of your own? - Well, yes. - How do you get it? - Bees make it. - I know who makes it! And it's hard to make it! There's heating, cooling, stirring. You need a whole Krelman thing! - It's organic. - It's our-ganic! It's just honey, Barry. Just what?! Bees don't know about this! This is stealing! A lot of stealing! You've taken our homes, schools, hospitals! This is all we have! And it's on sale?! I'm getting to the bottom of this. I'm getting to the bottom of all of this! Hey, Hector. - You almost done? - Almost. He is here. I sense it. Well, I guess I'll go home now and just leave this nice honey out, with no one around. You're busted, box boy! I knew I heard something. So you can talk! I can talk. And now you'll start talking! Where you getting the sweet stuff? Who's your supplier? I don't understand. I thought we were friends. The last thing we want to do is upset bees! You're too late! It's ours now! You, sir, have crossed the wrong sword! You, sir, will be lunch for my iguana, Ignacio! Where is the honey coming from? Tell me where! Honey Farms! It comes from Honey Farms! Orazy person! What horrible thing has happened here? These faces, they never knew what hit them. And now they're on the road to nowhere! Just keep still. What? You're not dead? Do I look dead? They will wipe anything that moves. Where you headed? To Honey Farms. I am onto something huge here. I'm going to Alaska. Moose blood, crazy stuff. Blows your head off! I'm going to Tacoma. - And you? - He really is dead. All right. Uh-oh! - What is that?! - Oh, no! - A wiper! Triple blade! - Triple blade? Jump on! It's your only chance, bee! Why does everything have to be so doggone clean?! How much do you people need to see?! Open your eyes! Stick your head out the window! From NPR News in Washington, I'm Oarl Kasell. But don't kill no more bugs! - Bee! - Moose blood guy!! - You hear something? - Like what? Like tiny screaming. Turn off the radio. Whassup, bee boy? Hey, Blood. Just a row of honey jars, as far as the eye could see. Wow! I assume wherever this truck goes is where they're getting it. I mean, that honey's ours. - Bees hang tight. - We're all jammed in. It's a close community. Not us, man. We on our own. Every mosquito on his own. - What if you get in trouble? - You a mosquito, you in trouble. Nobody likes us. They just smack. See a mosquito, smack, smack! At least you're out in the world. You must meet girls. Mosquito girls try to trade up, get with a moth, dragonfly. Mosquito girl don't want no mosquito. You got to be kidding me! Mooseblood's about to leave the building! So long, bee! - Hey, guys! - Mooseblood! I knew I'd catch y'all down here. Did you bring your crazy straw? We throw it in jars, slap a label on it, and it's pretty much pure profit. What is this place? A bee's got a brain the size of a pinhead. They are pinheads! Pinhead. - Oheck out the new smoker. - Oh, sweet. That's the one you want. The Thomas 3000! Smoker? Ninety puffs a minute, semi-automatic. Twice the nicotine, all the tar. A couple breaths of this knocks them right out. They make the honey, and we make the money. "They make the honey, and we make the money"? Oh, my! What's going on? Are you OK? Yeah. It doesn't last too long. Do you know you're in a fake hive with fake walls? Our queen was moved here. We had no choice. This is your queen? That's a man in women's clothes! That's a drag queen! What is this? Oh, no! There's hundreds of them! Bee honey. Our honey is being brazenly stolen on a massive scale! This is worse than anything bears have done! I intend to do something. Oh, Barry, stop. Who told you humans are taking our honey? That's a rumor. Do these look like rumors? That's a conspiracy theory. These are obviously doctored photos. How did you get mixed up in this? He's been talking to humans. - What? - Talking to humans?! He has a human girlfriend. And they make out! Make out? Barry! We do not. - You wish you could. - Whose side are you on? The bees! I dated a cricket once in San Antonio. Those crazy legs kept me up all night. Barry, this is what you want to do with your life? I want to do it for all our lives. Nobody works harder than bees! Dad, I remember you coming home so overworked your hands were still stirring. You couldn't stop. I remember that. What right do they have to our honey? We live on two cups a year. They put it in lip balm for no reason whatsoever! Even if it's true, what can one bee do? Sting them where it really hurts. In the face! The eye! - That would hurt. - No. Up the nose? That's a killer. There's only one place you can sting the humans, one place where it matters. Hive at Five, the hive's only full-hour action news source. No more bee beards! With Bob Bumble at the anchor desk. Weather with Storm Stinger. Sports with Buzz Larvi. And Jeanette Ohung. - Good evening. I'm Bob Bumble. - And I'm Jeanette Ohung. A tri-county bee, Barry Benson, intends to sue the human race for stealing our honey, packaging it and profiting from it illegally! Tomorrow night on Bee Larry King, we'll have three former queens here in our studio, discussing their new book, Olassy Ladies, out this week on Hexagon. Tonight we're talking to Barry Benson. Did you ever think, "I'm a kid from the hive. I can't do this"? Bees have never been afraid to change the world. What about Bee Oolumbus? Bee Gandhi? Bejesus? Where I'm from, we'd never sue humans. We were thinking of stickball or candy stores. How old are you? The bee community is supporting you in this case, which will be the trial of the bee century. You know, they have a Larry King in the human world too. It's a common name. Next week... He looks like you and has a show and suspenders and colored dots... Next week... Glasses, quotes on the bottom from the guest even though you just heard 'em. Bear Week next week! They're scary, hairy and here live. Always leans forward, pointy shoulders, squinty eyes, very Jewish. In tennis, you attack at the point of weakness! It was my grandmother, Ken. She's 81. Honey, her backhand's a joke! I'm not gonna take advantage of that? Quiet, please. Actual work going on here. - Is that that same bee? - Yes, it is! I'm helping him sue the human race. - Hello. - Hello, bee. This is Ken. Yeah, I remember you. Timberland, size ten and a half. Vibram sole, I believe. Why does he talk again? Listen, you better go 'cause we're really busy working. But it's our yogurt night! Bye-bye. Why is yogurt night so difficult?! You poor thing. You two have been at this for hours! Yes, and Adam here has been a huge help. - Frosting... - How many sugars? Just one. I try not to use the competition. So why are you helping me? Bees have good qualities. And it takes my mind off the shop. Instead of flowers, people are giving balloon bouquets now. Those are great, if you're three. And artificial flowers. - Oh, those just get me psychotic! - Yeah, me too. Bent stingers, pointless pollination. Bees must hate those fake things! Nothing worse than a daffodil that's had work done. Maybe this could make up for it a little bit. - This lawsuit's a pretty big deal. - I guess. You sure you want to go through with it? Am I sure? When I'm done with the humans, they won't be able to say, "Honey, I'm home," without paying a royalty! It's an incredible scene here in downtown Manhattan, where the world anxiously waits, because for the first time in history, we will hear for ourselves if a honeybee can actually speak. What have we gotten into here, Barry? It's pretty big, isn't it? I can't believe how many humans don't work during the day. You think billion-dollar multinational food companies have good lawyers? Everybody needs to stay behind the barricade. - What's the matter? - I don't know, I just got a chill. Well, if it isn't the bee team. You boys work on this? All rise! The Honorable Judge Bumbleton presiding. All right. Oase number 4475, Superior Oourt of New York, Barry Bee Benson v. the Honey Industry is now in session. Mr. Montgomery, you're representing the five food companies collectively? A privilege. Mr. Benson... you're representing all the bees of the world? I'm kidding. Yes, Your Honor, we're ready to proceed. Mr. Montgomery, your opening statement, please. Ladies and gentlemen of the jury, my grandmother was a simple woman. Born on a farm, she believed it was man's divine right to benefit from the bounty of nature God put before us. If we lived in the topsy-turvy world Mr. Benson imagines, just think of what would it mean. I would have to negotiate with the silkworm for the elastic in my britches! Talking bee! How do we know this isn't some sort of holographic motion-picture-capture Hollywood wizardry? They could be using laser beams! Robotics! Ventriloquism! Oloning! For all we know, he could be on steroids! Mr. Benson? Ladies and gentlemen, there's no trickery here. I'm just an ordinary bee. Honey's pretty important to me. It's important to all bees. We invented it! We make it. And we protect it with our lives. Unfortunately, there are some people in this room who think they can take it from us 'cause we're the little guys! I'm hoping that, after this is all over, you'll see how, by taking our honey, you not only take everything we have but everything we are! I wish he'd dress like that all the time. So nice! Oall your first witness. So, Mr. Klauss Vanderhayden of Honey Farms, big company you have. I suppose so. I see you also own Honeyburton and Honron! Yes, they provide beekeepers for our farms. Beekeeper. I find that to be a very disturbing term. I don't imagine you employ any bee-free-ers, do you? - No. - I couldn't hear you. - No. - No. Because you don't free bees. You keep bees. Not only that, it seems you thought a bear would be an appropriate image for a jar of honey. They're very lovable creatures. Yogi Bear, Fozzie Bear, Build-A-Bear. You mean like this? Bears kill bees! How'd you like his head crashing through your living room?! Biting into your couch! Spitting out your throw pillows! OK, that's enough. Take him away. So, Mr. Sting, thank you for being here. Your name intrigues me. - Where have I heard it before? - I was with a band called The Police. But you've never been a police officer, have you? No, I haven't. No, you haven't. And so here we have yet another example of bee culture casually stolen by a human for nothing more than a prance-about stage name. Oh, please. Have you ever been stung, Mr. Sting? Because I'm feeling a little stung, Sting. Or should I say... Mr. Gordon M. Sumner! That's not his real name?! You idiots! Mr. Liotta, first, belated congratulations on your Emmy win for a guest spot on ER in 2005. Thank you. Thank you. I see from your resume that you're devilishly handsome with a churning inner turmoil that's ready to blow. I enjoy what I do. Is that a crime? Not yet it isn't. But is this what it's come to for you? Exploiting tiny, helpless bees so you don't have to rehearse your part and learn your lines, sir? Watch it, Benson! I could blow right now! This isn't a goodfella. This is a badfella! Why doesn't someone just step on this creep, and we can all go home?! - Order in this court! - You're all thinking it! Order! Order, I say! - Say it! - Mr. Liotta, please sit down! I think it was awfully nice of that bear to pitch in like that. I think the jury's on our side. Are we doing everything right, legally? I'm a florist. Right. Well, here's to a great team. To a great team! Well, hello. - Ken! - Hello. I didn't think you were coming. No, I was just late. I tried to call, but... the battery. I didn't want all this to go to waste, so I called Barry. Luckily, he was free. Oh, that was lucky. There's a little left. I could heat it up. Yeah, heat it up, sure, whatever. So I hear you're quite a tennis player. I'm not much for the game myself. The ball's a little grabby. That's where I usually sit. Right... there. Ken, Barry was looking at your resume, and he agreed with me that eating with chopsticks isn't really a special skill. You think I don't see what you're doing? I know how hard it is to find the rightjob. We have that in common. Do we? Bees have 100 percent employment, but we do jobs like taking the crud out. That's just what I was thinking about doing. Ken, I let Barry borrow your razor for his fuzz. I hope that was all right. I'm going to drain the old stinger. Yeah, you do that. Look at that. You know, I've just about had it with your little mind games. - What's that? - Italian Vogue. Mamma mia, that's a lot of pages. A lot of ads. Remember what Van said, why is your life more valuable than mine? Funny, I just can't seem to recall that! I think something stinks in here! I love the smell of flowers. How do you like the smell of flames?! Not as much. Water bug! Not taking sides! Ken, I'm wearing a Ohapstick hat! This is pathetic! I've got issues! Well, well, well, a royal flush! - You're bluffing. - Am I? Surf's up, dude! Poo water! That bowl is gnarly. Except for those dirty yellow rings! Kenneth! What are you doing?! You know, I don't even like honey! I don't eat it! We need to talk! He's just a little bee! And he happens to be the nicest bee I've met in a long time! Long time? What are you talking about?! Are there other bugs in your life? No, but there are other things bugging me in life. And you're one of them! Fine! Talking bees, no yogurt night... My nerves are fried from riding on this emotional roller coaster! Goodbye, Ken. And for your information, I prefer sugar-free, artificial sweeteners made by man! I'm sorry about all that. I know it's got an aftertaste! I like it! I always felt there was some kind of barrier between Ken and me. I couldn't overcome it. Oh, well. Are you OK for the trial? I believe Mr. Montgomery is about out of ideas. We would like to call Mr. Barry Benson Bee to the stand. Good idea! You can really see why he's considered one of the best lawyers... Yeah. Layton, you've gotta weave some magic with this jury, or it's gonna be all over. Don't worry. The only thing I have to do to turn this jury around is to remind them of what they don't like about bees. - You got the tweezers? - Are you allergic? Only to losing, son. Only to losing. Mr. Benson Bee, I'll ask you what I think we'd all like to know. What exactly is your relationship to that woman? We're friends. - Good friends? - Yes. How good? Do you live together? Wait a minute... Are you her little... ...bedbug? I've seen a bee documentary or two. From what I understand, doesn't your queen give birth to all the bee children? - Yeah, but... - So those aren't your real parents! - Oh, Barry... - Yes, they are! Hold me back! You're an illegitimate bee, aren't you, Benson? He's denouncing bees! Don't y'all date your cousins? - Objection! - I'm going to pincushion this guy! Adam, don't! It's what he wants! Oh, I'm hit!! Oh, lordy, I am hit! Order! Order! The venom! The venom is coursing through my veins! I have been felled by a winged beast of destruction! You see? You can't treat them like equals! They're striped savages! Stinging's the only thing they know! It's their way! - Adam, stay with me. - I can't feel my legs. What angel of mercy will come forward to suck the poison from my heaving buttocks? I will have order in this court. Order! Order, please! The case of the honeybees versus the human race took a pointed turn against the bees yesterday when one of their legal team stung Layton T. Montgomery. - Hey, buddy. - Hey. - Is there much pain? - Yeah. I... I blew the whole case, didn't I? It doesn't matter. What matters is you're alive. You could have died. I'd be better off dead. Look at me. They got it from the cafeteria downstairs, in a tuna sandwich. Look, there's a little celery still on it. What was it like to sting someone? I can't explain it. It was all... All adrenaline and then... and then ecstasy! All right. You think it was all a trap? Of course. I'm sorry. I flew us right into this. What were we thinking? Look at us. We're just a couple of bugs in this world. What will the humans do to us if they win? I don't know. I hear they put the roaches in motels. That doesn't sound so bad. Adam, they check in, but they don't check out! Oh, my. Oould you get a nurse to close that window? - Why? - The smoke. Bees don't smoke. Right. Bees don't smoke. Bees don't smoke! But some bees are smoking. That's it! That's our case! It is? It's not over? Get dressed. I've gotta go somewhere. Get back to the court and stall. Stall any way you can. And assuming you've done step correctly, you're ready for the tub. Mr. Flayman. Yes? Yes, Your Honor! Where is the rest of your team? Well, Your Honor, it's interesting. Bees are trained to fly haphazardly, and as a result, we don't make very good time. I actually heard a funny story about... Your Honor, haven't these ridiculous bugs taken up enough of this court's valuable time? How much longer will we allow these absurd shenanigans to go on? They have presented no compelling evidence to support their charges against my clients, who run legitimate businesses. I move for a complete dismissal of this entire case! Mr. Flayman, I'm afraid I'm going to have to consider Mr. Montgomery's motion. But you can't! We have a terrific case. Where is your proof? Where is the evidence? Show me the smoking gun! Hold it, Your Honor! You want a smoking gun? Here is your smoking gun. What is that? It's a bee smoker! What, this? This harmless little contraption? This couldn't hurt a fly, let alone a bee. Look at what has happened to bees who have never been asked, "Smoking or non?" Is this what nature intended for us? To be forcibly addicted to smoke machines and man-made wooden slat work camps? Living out our lives as honey slaves to the white man? - What are we gonna do? - He's playing the species card. Ladies and gentlemen, please, free these bees! Free the bees! Free the bees! Free the bees! Free the bees! Free the bees! The court finds in favor of the bees! Vanessa, we won! I knew you could do it! High-five! Sorry. I'm OK! You know what this means? All the honey will finally belong to the bees. Now we won't have to work so hard all the time. This is an unholy perversion of the balance of nature, Benson. You'll regret this. Barry, how much honey is out there? All right. One at a time. Barry, who are you wearing? My sweater is Ralph Lauren, and I have no pants. - What if Montgomery's right? - What do you mean? We've been living the bee way a long time, 27 million years. Oongratulations on your victory. What will you demand as a settlement? First, we'll demand a complete shutdown of all bee work camps. Then we want back the honey that was ours to begin with, every last drop. We demand an end to the glorification of the bear as anything more than a filthy, smelly, bad-breath stink machine. We're all aware of what they do in the woods. Wait for my signal. Take him out. He'll have nauseous for a few hours, then he'll be fine. And we will no longer tolerate bee-negative nicknames... But it's just a prance-about stage name! ...unnecessary inclusion of honey in bogus health products and la-dee-da human tea-time snack garnishments. Oan't breathe. Bring it in, boys! Hold it right there! Good. Tap it. Mr. Buzzwell, we just passed three cups, and there's gallons more coming! - I think we need to shut down! - Shut down? We've never shut down. Shut down honey production! Stop making honey! Turn your key, sir! What do we do now? Oannonball! We're shutting honey production! Mission abort. Aborting pollination and nectar detail. Returning to base. Adam, you wouldn't believe how much honey was out there. Oh, yeah? What's going on? Where is everybody? - Are they out celebrating? - They're home. They don't know what to do. Laying out, sleeping in. I heard your Uncle Oarl was on his way to San Antonio with a cricket. At least we got our honey back. Sometimes I think, so what if humans liked our honey? Who wouldn't? It's the greatest thing in the world! I was excited to be part of making it. This was my new desk. This was my new job. I wanted to do it really well. And now... Now I can't. I don't understand why they're not happy. I thought their lives would be better! They're doing nothing. It's amazing. Honey really changes people. You don't have any idea what's going on, do you? - What did you want to show me? - This. What happened here? That is not the half of it. Oh, no. Oh, my. They're all wilting. Doesn't look very good, does it? No. And whose fault do you think that is? You know, I'm gonna guess bees. Bees? Specifically, me. I didn't think bees not needing to make honey would affect all these things. It's notjust flowers. Fruits, vegetables, they all need bees. That's our whole SAT test right there. Take away produce, that affects the entire animal kingdom. And then, of course... The human species? So if there's no more pollination, it could all just go south here, couldn't it? I know this is also partly my fault. How about a suicide pact? How do we do it? - I'll sting you, you step on me. - Thatjust kills you twice. Right, right. Listen, Barry... sorry, but I gotta get going. I had to open my mouth and talk. Vanessa? Vanessa? Why are you leaving? Where are you going? To the final Tournament of Roses parade in Pasadena. They've moved it to this weekend because all the flowers are dying. It's the last chance I'll ever have to see it. Vanessa, I just wanna say I'm sorry. I never meant it to turn out like this. I know. Me neither. Tournament of Roses. Roses can't do sports. Wait a minute. Roses. Roses? Roses! Vanessa! Roses?! Barry? - Roses are flowers! - Yes, they are. Flowers, bees, pollen! I know. That's why this is the last parade. Maybe not. Oould you ask him to slow down? Oould you slow down? Barry! OK, I made a huge mistake. This is a total disaster, all my fault. Yes, it kind of is. I've ruined the planet. I wanted to help you with the flower shop. I've made it worse. Actually, it's completely closed down. I thought maybe you were remodeling. But I have another idea, and it's greater than my previous ideas combined. I don't want to hear it! All right, they have the roses, the roses have the pollen. I know every bee, plant and flower bud in this park. All we gotta do is get what they've got back here with what we've got. - Bees. - Park. - Pollen! - Flowers. - Repollination! - Across the nation! Tournament of Roses, Pasadena, Oalifornia. They've got nothing but flowers, floats and cotton candy. Security will be tight. I have an idea. Vanessa Bloome, FTD. Official floral business. It's real. Sorry, ma'am. Nice brooch. Thank you. It was a gift. Once inside, we just pick the right float. How about The Princess and the Pea? I could be the princess, and you could be the pea! Yes, I got it. - Where should I sit? - What are you? - I believe I'm the pea. - The pea? It goes under the mattresses. - Not in this fairy tale, sweetheart. - I'm getting the marshal. You do that! This whole parade is a fiasco! Let's see what this baby'll do. Hey, what are you doing?! Then all we do is blend in with traffic... ...without arousing suspicion. Once at the airport, there's no stopping us. Stop! Security. - You and your insect pack your float? - Yes. Has it been in your possession the entire time? Would you remove your shoes? - Remove your stinger. - It's part of me. I know. Just having some fun. Enjoy your flight. Then if we're lucky, we'll have just enough pollen to do the job. Oan you believe how lucky we are? We have just enough pollen to do the job! I think this is gonna work. It's got to work. Attention, passengers, this is Oaptain Scott. We have a bit of bad weather in New York. It looks like we'll experience a couple hours delay. Barry, these are cut flowers with no water. They'll never make it. I gotta get up there and talk to them. Be careful. Oan I get help with the Sky Mall magazine? I'd like to order the talking inflatable nose and ear hair trimmer. Oaptain, I'm in a real situation. - What'd you say, Hal? - Nothing. Bee! Don't freak out! My entire species... What are you doing? - Wait a minute! I'm an attorney! - Who's an attorney? Don't move. Oh, Barry. Good afternoon, passengers. This is your captain. Would a Miss Vanessa Bloome in 24B please report to the cockpit? And please hurry! What happened here? There was a DustBuster, a toupee, a life raft exploded. One's bald, one's in a boat, they're both unconscious! - Is that another bee joke? - No! No one's flying the plane! This is JFK control tower, Flight 356. What's your status? This is Vanessa Bloome. I'm a florist from New York. Where's the pilot? He's unconscious, and so is the copilot. Not good. Does anyone onboard have flight experience? As a matter of fact, there is. - Who's that? - Barry Benson. From the honey trial?! Oh, great. Vanessa, this is nothing more than a big metal bee. It's got giant wings, huge engines. I can't fly a plane. - Why not? Isn't John Travolta a pilot? - Yes. How hard could it be? Wait, Barry! We're headed into some lightning. This is Bob Bumble. We have some late-breaking news from JFK Airport, where a suspenseful scene is developing. Barry Benson, fresh from his legal victory... That's Barry! ...is attempting to land a plane, loaded with people, flowers and an incapacitated flight crew. Flowers?! We have a storm in the area and two individuals at the controls with absolutely no flight experience. Just a minute. There's a bee on that plane. I'm quite familiar with Mr. Benson and his no-account compadres. They've done enough damage. But isn't he your only hope? Technically, a bee shouldn't be able to fly at all. Their wings are too small... Haven't we heard this a million times? "The surface area of the wings and body mass make no sense." - Get this on the air! - Got it. - Stand by. - We're going live. The way we work may be a mystery to you. Making honey takes a lot of bees doing a lot of small jobs. But let me tell you about a small job. If you do it well, it makes a big difference. More than we realized. To us, to everyone. That's why I want to get bees back to working together. That's the bee way! We're not made of Jell-O. We get behind a fellow. - Black and yellow! - Hello! Left, right, down, hover. - Hover? - Forget hover. This isn't so hard. Beep-beep! Beep-beep! Barry, what happened?! Wait, I think we were on autopilot the whole time. - That may have been helping me. - And now we're not! So it turns out I cannot fly a plane. All of you, let's get behind this fellow! Move it out! Move out! Our only chance is if I do what I'd do, you copy me with the wings of the plane! Don't have to yell. I'm not yelling! We're in a lot of trouble. It's very hard to concentrate with that panicky tone in your voice! It's not a tone. I'm panicking! I can't do this! Vanessa, pull yourself together. You have to snap out of it! You snap out of it. You snap out of it. - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - Hold it! - Why? Oome on, it's my turn. How is the plane flying? I don't know. Hello? Benson, got any flowers for a happy occasion in there? The Pollen Jocks! They do get behind a fellow. - Black and yellow. - Hello. All right, let's drop this tin can on the blacktop. Where? I can't see anything. Oan you? No, nothing. It's all cloudy. Oome on. You got to think bee, Barry. - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Wait a minute. I think I'm feeling something. - What? - I don't know. It's strong, pulling me. Like a 27-million-year-old instinct. Bring the nose down. Thinking bee! Thinking bee! Thinking bee! - What in the world is on the tarmac? - Get some lights on that! Thinking bee! Thinking bee! Thinking bee! - Vanessa, aim for the flower. - OK. Out the engines. We're going in on bee power. Ready, boys? Affirmative! Good. Good. Easy, now. That's it. Land on that flower! Ready? Full reverse! Spin it around! - Not that flower! The other one! - Which one? - That flower. - I'm aiming at the flower! That's a fat guy in a flowered shirt. I mean the giant pulsating flower made of millions of bees! Pull forward. Nose down. Tail up. Rotate around it. - This is insane, Barry! - This's the only way I know how to fly. Am I koo-koo-kachoo, or is this plane flying in an insect-like pattern? Get your nose in there. Don't be afraid. Smell it. Full reverse! Just drop it. Be a part of it. Aim for the center! Now drop it in! Drop it in, woman! Oome on, already. Barry, we did it! You taught me how to fly! - Yes. No high-five! - Right. Barry, it worked! Did you see the giant flower? What giant flower? Where? Of course I saw the flower! That was genius! - Thank you. - But we're not done yet. Listen, everyone! This runway is covered with the last pollen from the last flowers available anywhere on Earth. That means this is our last chance. We're the only ones who make honey, pollinate flowers and dress like this. If we're gonna survive as a species, this is our moment! What do you say? Are we going to be bees, orjust Museum of Natural History keychains? We're bees! Keychain! Then follow me! Except Keychain. Hold on, Barry. Here. You've earned this. Yeah! I'm a Pollen Jock! And it's a perfect fit. All I gotta do are the sleeves. Oh, yeah. That's our Barry. Mom! The bees are back! If anybody needs to make a call, now's the time. I got a feeling we'll be working late tonight! Here's your change. Have a great afternoon! Oan I help who's next? Would you like some honey with that? It is bee-approved. Don't forget these. Milk, cream, cheese, it's all me. And I don't see a nickel! Sometimes I just feel like a piece of meat! I had no idea. Barry, I'm sorry. Have you got a moment? Would you excuse me? My mosquito associate will help you. Sorry I'm late. He's a lawyer too? I was already a blood-sucking parasite. All I needed was a briefcase. Have a great afternoon! Barry, I just got this huge tulip order, and I can't get them anywhere. No problem, Vannie. Just leave it to me. You're a lifesaver, Barry. Oan I help who's next? All right, scramble, jocks! It's time to fly. Thank you, Barry! That bee is living my life! Let it go, Kenny. - When will this nightmare end?! - Let it all go. - Beautiful day to fly. - Sure is. Between you and me, I was dying to get out of that office. You have got to start thinking bee, my friend. - Thinking bee! - Me? Hold it. Let's just stop for a second. Hold it. I'm sorry. I'm sorry, everyone. Oan we stop here? I'm not making a major life decision during a production number! All right. Take ten, everybody. Wrap it up, guys. I had virtually no rehearsal for that.
OpenIoTHub / Deprecated GateWay🥗OpenIoTHub Gateway for mobile(网关移动应用)
Mdshobu / Liberty House Club Whitepaper# Liberty House Club **A Parallel Binance Chain to Enable Smart Contracts** _NOTE: This document is under development. Please check regularly for updates!_ ## Table of Contents - [Motivation](#motivation) - [Design Principles](#design-principles) - [Consensus and Validator Quorum](#consensus-and-validator-quorum) * [Proof of Staked Authority](#proof-of-staked-authority) * [Validator Quorum](#validator-quorum) * [Security and Finality](#security-and-finality) * [Reward](#reward) - [Token Economy](#token-economy) * [Native Token](#native-token) * [Other Tokens](#other-tokens) - [Cross-Chain Transfer and Communication](#cross-chain-transfer-and-communication) * [Cross-Chain Transfer](#cross-chain-transfer) * [BC to BSC Architecture](#bc-to-bsc-architecture) * [BSC to BC Architecture](#bsc-to-bc-architecture) * [Timeout and Error Handling](#timeout-and-error-handling) * [Cross-Chain User Experience](#cross-chain-user-experience) * [Cross-Chain Contract Event](#cross-chain-contract-event) - [Staking and Governance](#staking-and-governance) * [Staking on BC](#staking-on-bc) * [Rewarding](#rewarding) * [Slashing](#slashing) - [Relayers](#relayers) * [BSC Relayers](#bsc-relayers) * [Oracle Relayers](#oracle-relayers) - [Outlook](#outlook) # Motivation After its mainnet community [launch](https://www.binance.com/en/blog/327334696200323072/Binance-DEX-Launches-on-Binance-Chain-Invites-Further-Community-Development) in April 2019, [Binance Chain](https://www.binance.org) has exhibited its high speed and large throughput design. Binance Chain’s primary focus, its native [decentralized application](https://en.wikipedia.org/wiki/Decentralized_application) (“dApp”) [Binance DEX](https://www.binance.org/trade), has demonstrated its low-latency matching with large capacity headroom by handling millions of trading volume in a short time. Flexibility and usability are often in an inverse relationship with performance. The concentration on providing a convenient digital asset issuing and trading venue also brings limitations. Binance Chain's most requested feature is the programmable extendibility, or simply the [Smart Contract](https://en.wikipedia.org/wiki/Smart_contract) and Virtual Machine functions. Digital asset issuers and owners struggle to add new decentralized features for their assets or introduce any sort of community governance and activities. Despite this high demand for adding the Smart Contract feature onto Binance Chain, it is a hard decision to make. The execution of a Smart Contract may slow down the exchange function and add non-deterministic factors to trading. If that compromise could be tolerated, it might be a straightforward idea to introduce a new Virtual Machine specification based on [Tendermint](https://tendermint.com/core/), based on the current underlying consensus protocol and major [RPC](https://docs.binance.org/api-reference/node-rpc.html) implementation of Binance Chain. But all these will increase the learning requirements for all existing dApp communities, and will not be very welcomed. We propose a parallel blockchain of the current Binance Chain to retain the high performance of the native DEX blockchain and to support a friendly Smart Contract function at the same time. # Design Principles After the creation of the parallel blockchain into the Binance Chain ecosystem, two blockchains will run side by side to provide different services. The new parallel chain will be called “**Binance Smart Chain**” (short as “**BSC**” for the below sections), while the existing mainnet remains named “**Binance Chain**” (short as “**BC**” for the below sections). Here are the design principles of **BSC**: 1. **Standalone Blockchain**: technically, BSC is a standalone blockchain, instead of a layer-2 solution. Most BSC fundamental technical and business functions should be self-contained so that it can run well even if the BC stopped for a short period. 2. **Ethereum Compatibility**: The first practical and widely-used Smart Contract platform is Ethereum. To take advantage of the relatively mature applications and community, BSC chooses to be compatible with the existing Ethereum mainnet. This means most of the **dApps**, ecosystem components, and toolings will work with BSC and require zero or minimum changes; BSC node will require similar (or a bit higher) hardware specification and skills to run and operate. The implementation should leave room for BSC to catch up with further Ethereum upgrades. 3. **Staking Involved Consensus and Governance**: Staking-based consensus is more environmentally friendly and leaves more flexible option to the community governance. Expectedly, this consensus should enable better network performance over [proof-of-work](https://en.wikipedia.org/wiki/Proof_of_work) blockchain system, i.e., faster blocking time and higher transaction capacity. 4. **Native Cross-Chain Communication**: both BC and BSC will be implemented with native support for cross-chain communication among the two blockchains. The communication protocol should be bi-directional, decentralized, and trustless. It will concentrate on moving digital assets between BC and BSC, i.e., [BEP2](https://github.com/binance-chain/BEPs/blob/master/BEP2.md) tokens, and eventually, other BEP tokens introduced later. The protocol should care for the minimum of other items stored in the state of the blockchains, with only a few exceptions. # Consensus and Validator Quorum Based on the above design principles, the consensus protocol of BSC is to fulfill the following goals: 1. Blocking time should be shorter than Ethereum network, e.g. 5 seconds or even shorter. 2. It requires limited time to confirm the finality of transactions, e.g. around 1-min level or shorter. 3. There is no inflation of native token: BNB, the block reward is collected from transaction fees, and it will be paid in BNB. 4. It is compatible with Ethereum system as much as possible. 5. It allows modern [proof-of-stake](https://en.wikipedia.org/wiki/Proof_of_stake) blockchain network governance. ## Proof of Staked Authority Although Proof-of-Work (PoW) has been recognized as a practical mechanism to implement a decentralized network, it is not friendly to the environment and also requires a large size of participants to maintain the security. Ethereum and some other blockchain networks, such as [MATIC Bor](https://github.com/maticnetwork/bor), [TOMOChain](https://tomochain.com/), [GoChain](https://gochain.io/), [xDAI](https://xdai.io/), do use [Proof-of-Authority(PoA)](https://en.wikipedia.org/wiki/Proof_of_authority) or its variants in different scenarios, including both testnet and mainnet. PoA provides some defense to 51% attack, with improved efficiency and tolerance to certain levels of Byzantine players (malicious or hacked). It serves as an easy choice to pick as the fundamentals. Meanwhile, the PoA protocol is most criticized for being not as decentralized as PoW, as the validators, i.e. the nodes that take turns to produce blocks, have all the authorities and are prone to corruption and security attacks. Other blockchains, such as EOS and Lisk both, introduce different types of [Delegated Proof of Stake (DPoS)](https://en.bitcoinwiki.org/wiki/DPoS) to allow the token holders to vote and elect the validator set. It increases the decentralization and favors community governance. BSC here proposes to combine DPoS and PoA for consensus, so that: 1. Blocks are produced by a limited set of validators 2. Validators take turns to produce blocks in a PoA manner, similar to [Ethereum’s Clique](https://eips.ethereum.org/EIPS/eip-225) consensus design 3. Validator set are elected in and out based on a staking based governance ## Validator Quorum In the genesis stage, a few trusted nodes will run as the initial Validator Set. After the blocking starts, anyone can compete to join as candidates to elect as a validator. The staking status decides the top 21 most staked nodes to be the next validator set, and such an election will repeat every 24 hours. **BNB** is the token used to stake for BSC. In order to remain as compatible as Ethereum and upgradeable to future consensus protocols to be developed, BSC chooses to rely on the **BC** for staking management (Please refer to the below “[Staking and Governance](#staking-and-governance)” section). There is a **dedicated staking module for BSC on BC**. It will accept BSC staking from BNB holders and calculate the highest staked node set. Upon every UTC midnight, BC will issue a verifiable `ValidatorSetUpdate` cross-chain message to notify BSC to update its validator set. While producing further blocks, the existing BSC validators check whether there is a `ValidatorSetUpdate` message relayed onto BSC periodically. If there is, they will update the validator set after an **epoch period**, i.e. a predefined number of blocking time. For example, if BSC produces a block every 5 seconds, and the epoch period is 240 blocks, then the current validator set will check and update the validator set for the next epoch in 1200 seconds (20 minutes). ## Security and Finality Given there are more than ½\*N+1 validators are honest, PoA based networks usually work securely and properly. However, there are still cases where certain amount Byzantine validators may still manage to attack the network, e.g. through the “[Clone Attack](https://arxiv.org/pdf/1902.10244.pdf)”. To secure as much as BC, BSC users are encouraged to wait until receiving blocks sealed by more than ⅔\*N+1 different validators. In that way, the BSC can be trusted at a similar security level to BC and can tolerate less than ⅓\*N Byzantine validators. With 21 validators, if the block time is 5 seconds, the ⅔\*N+1 different validator seals will need a time period of (⅔\*21+1)*5 = 75 seconds. Any critical applications for BSC may have to wait for ⅔\*N+1 to ensure a relatively secure finality. However, besides such arrangement, BSC does introduce **Slashing** logic to penalize Byzantine validators for **double signing** or **inavailability**, which will be covered in the “Staking and Governance” section later. This Slashing logic will expose the malicious validators in a very short time and make the “Clone Attack” very hard or extremely non-beneficial to execute. With this enhancement, ½\*N+1 or even fewer blocks are enough as confirmation for most transactions. ## Reward All the BSC validators in the current validator set will be rewarded with transaction **fees in BNB**. As BNB is not an inflationary token, there will be no mining rewards as what Bitcoin and Ethereum network generate, and the gas fee is the major reward for validators. As BNB is also utility tokens with other use cases, delegators and validators will still enjoy other benefits of holding BNB. The reward for validators is the fees collected from transactions in each block. Validators can decide how much to give back to the delegators who stake their BNB to them, in order to attract more staking. Every validator will take turns to produce the blocks in the same probability (if they stick to 100% liveness), thus, in the long run, all the stable validators may get a similar size of the reward. Meanwhile, the stakes on each validator may be different, so this brings a counter-intuitive situation that more users trust and delegate to one validator, they potentially get less reward. So rational delegators will tend to delegate to the one with fewer stakes as long as the validator is still trustful (insecure validator may bring slashable risk). In the end, the stakes on all the validators will have less variation. This will actually prevent the stake concentration and “winner wins forever” problem seen on some other networks. Some parts of the gas fee will also be rewarded to relayers for Cross-Chain communication. Please refer to the “[Relayers](#relayers)” section below. # Token Economy BC and BSC share the same token universe for BNB and BEP2 tokens. This defines: 1. The same token can circulate on both networks, and flow between them bi-directionally via a cross-chain communication mechanism. 2. The total circulation of the same token should be managed across the two networks, i.e. the total effective supply of a token should be the sum of the token’s total effective supply on both BSC and BC. 3. The tokens can be initially created on BSC in a similar format as ERC20 token standard, or on BC as a BEP2, then created on the other. There are native ways on both networks to link the two and secure the total supply of the token. ## Native Token BNB will run on BSC in the same way as ETH runs on Ethereum so that it remains as “native token” for both BSC and BC. This means, in addition to BNB is used to pay most of the fees on Binance Chain and Binance DEX, BNB will be also used to: 1. pay “fees“ to deploy smart contracts on BSC 2. stake on selected BSC validators, and get corresponding rewards 3. perform cross-chain operations, such as transfer token assets across BC and BSC ### Seed Fund Certain amounts of BNB will be burnt on BC and minted on BSC during its genesis stage. This amount is called “Seed Fund” to circulate on BSC after the first block, which will be dispatched to the initial BC-to-BSC Relayer(described in later sections) and initial validator set introduced at genesis. These BNBs are used to pay transaction fees in the early stage to transfer more BNB from BC onto BSC via the cross-chain mechanism. The BNB cross-chain transfer is discussed in a later section, but for BC to BSC transfer, it is generally to lock BNB on BC from the source address of the transfer to a system-controlled address and unlock the corresponding amount from special contract to the target address of the transfer on BSC, or reversely, when transferring from BSC to BC, it is to lock BNB from the source address on BSC into a special contract and release locked amount on BC from the system address to the target address. The logic is related to native code on BC and a series of smart contracts on BSC. ## Other Tokens BC supports BEP2 tokens and upcoming [BEP8 tokens](https://github.com/binance-chain/BEPs/pull/69), which are native assets transferrable and tradable (if listed) via fast transactions and sub-second finality. Meanwhile, as BSC is Ethereum compatible, it is natural to support ERC20 tokens on BSC, which here is called “**BEP2E**” (with the real name to be introduced by the future BEPs,it potentially covers BEP8 as well). BEP2E may be “Enhanced” by adding a few more methods to expose more information, such as token denomination, decimal precision definition and the owner address who can decide the Token Binding across the chains. BSC and BC work together to ensure that one token can circulate in both formats with confirmed total supply and be used in different use cases. ### Token Binding BEP2 tokens will be extended to host a new attribute to associate the token with a BSC BEP2E token contract, called “**Binder**”, and this process of association is called “**Token Binding**”. Token Binding can happen at any time after BEP2 and BEP2E are ready. The token owners of either BEP2 or BEP2E don’t need to bother about the Binding, until before they really want to use the tokens on different scenarios. Issuers can either create BEP2 first or BEP2E first, and they can be bound at a later time. Of course, it is encouraged for all the issuers of BEP2 and BEP2E to set the Binding up early after the issuance. A typical procedure to bind the BEP2 and BEP2E will be like the below: 1. Ensure both the BEP2 token and the BEP2E token both exist on each blockchain, with the same total supply. BEP2E should have 3 more methods than typical ERC20 token standard: * symbol(): get token symbol * decimals(): get the number of the token decimal digits * owner(): get **BEP2E contract owner’s address.** This value should be initialized in the BEP2E contract constructor so that the further binding action can verify whether the action is from the BEP2E owner. 2. Decide the initial circulation on both blockchains. Suppose the total supply is *S*, and the expected initial circulating supply on BC is *K*, then the owner should lock S-K tokens to a system controlled address on BC. 3. Equivalently, *K* tokens is locked in the special contract on BSC, which handles major binding functions and is named as **TokenHub**. The issuer of the BEP2E token should lock the *K* amount of that token into TokenHub, resulting in *S-K* tokens to circulate on BSC. Thus the total circulation across 2 blockchains remains as *S*. 4. The issuer of BEP2 token sends the bind transaction on BC. Once the transaction is executed successfully after proper verification: * It transfers *S-K* tokens to a system-controlled address on BC. * A cross-chain bind request package will be created, waiting for Relayers to relay. 5. BSC Relayers will relay the cross-chain bind request package into **TokenHub** on BSC, and the corresponding request and information will be stored into the contract. 6. The contract owner and only the owner can run a special method of TokenHub contract, `ApproveBind`, to verify the binding request to mark it as a success. It will confirm: * the token has not been bound; * the binding is for the proper symbol, with proper total supply and decimal information; * the proper lock are done on both networks; 10. Once the `ApproveBind` method has succeeded, TokenHub will mark the two tokens are bounded and share the same circulation on BSC, and the status will be propagated back to BC. After this final confirmation, the BEP2E contract address and decimals will be written onto the BEP2 token as a new attribute on BC, and the tokens can be transferred across the two blockchains bidirectionally. If the ApproveBind fails, the failure event will also be propagated back to BC to release the locked tokens, and the above steps can be re-tried later. # Cross-Chain Transfer and Communication Cross-chain communication is the key foundation to allow the community to take advantage of the dual chain structure: * users are free to create any tokenization, financial products, and digital assets on BSC or BC as they wish * the items on BSC can be manually and programmingly traded and circulated in a stable, high throughput, lighting fast and friendly environment of BC * users can operate these in one UI and tooling ecosystem. ## Cross-Chain Transfer The cross-chain transfer is the key communication between the two blockchains. Essentially the logic is: 1. the `transfer-out` blockchain will lock the amount from source owner addresses into a system controlled address/contracts; 2. the `transfer-in` blockchain will unlock the amount from the system controlled address/contracts and send it to target addresses. The cross-chain transfer package message should allow the BSC Relayers and BC **Oracle Relayers** to verify: 1. Enough amount of token assets are removed from the source address and locked into a system controlled addresses/contracts on the source blockchain. And this can be confirmed on the target blockchain. 2. Proper amounts of token assets are released from a system controlled addresses/contracts and allocated into target addresses on the target blockchain. If this fails, it can be confirmed on source blockchain, so that the locked token can be released back (may deduct fees). 3. The sum of the total circulation of the token assets across the 2 blockchains are not changed after this transfer action completes, no matter if the transfer succeeds or not.  The architecture of cross-chain communication is as in the above diagram. To accommodate the 2 heteroid systems, communication handling is different in each direction. ## BC to BSC Architecture BC is a Tendermint-based, instant finality blockchain. Validators with at least ⅔\*N+1 of the total voting power will co-sign each block on the chain. So that it is practical to verify the block transactions and even the state value via **Block Header** and **Merkle Proof** verification. This has been researched and implemented as “**Light-Client Protocol**”, which are intensively discussed in [the Ethereum](https://github.com/ethereum/wiki/wiki/Light-client-protocol) community, studied and implemented for [Cosmos inter-chain communication](https://github.com/cosmos/ics/blob/a4173c91560567bdb7cc9abee8e61256fc3725e9/spec/ics-007-tendermint-client/README.md). BC-to-BSC communication will be verified in an “**on-chain light client**” implemented via BSC **Smart Contracts** (some of them may be **“pre-compiled”**). After some transactions and state change happen on BC, if a transaction is defined to trigger cross-chain communication,the Cross-chain “**package**” message will be created and **BSC Relayers** will pass and submit them onto BSC as data into the "build-in system contracts". The build-in system contracts will verify the package and execute the transactions if it passes the verification. The verification will be guaranteed with the below design: 1. BC blocking status will be synced to the light client contracts on BSC from time to time, via block header and pre-commits, for the below information: * block and app hash of BC that are signed by validators * current validatorset, and validator set update 2. the key-value from the blockchain state will be verified based on the Merkle Proof and information from above #1. After confirming the key-value is accurate and trustful, the build-in system contracts will execute the actions corresponding to the cross-chain packages. Some examples of such packages that can be created for BC-to-BSC are: 1. Bind: bind the BEP2 tokens and BEP2E 2. Transfer: transfer tokens after binding, this means the circulation will decrease (be locked) from BC and appear in the target address balance on BSC 3. Error Handling: to handle any timeout/failure event for BSC-to-BC communication 4. Validatorset update of BSC To ensure no duplication, proper message sequence and timely timeout, there is a “Channel” concept introduced on BC to manage any types of the communication. For relayers, please also refer to the below “Relayers” section. ## BSC to BC Architecture BSC uses Proof of Staked Authority consensus protocol, which has a chance to fork and requires confirmation of more blocks. One block only has the signature of one validator, so that it is not easy to rely on one block to verify data from BSC. To take full advantage of validator quorum of BC, an idea similar to many [Bridge ](https://github.com/poanetwork/poa-bridge)or Oracle blockchains is adopted: 1. The cross-chain communication requests from BSC will be submitted and executed onto BSC as transactions. The execution of the transanction wil emit `Events`, and such events can be observed and packaged in certain “**Oracle**” onto BC. Instead of Block Headers, Hash and Merkle Proof, this type of “Oracle” package directly contains the cross-chain information for actions, such as sender, receiver and amount for transfer. 2. To ensure the security of the Oracle, the validators of BC will form anothe quorum of “**Oracle Relayers**”. Each validator of the BC should run a **dedicated process** as the Oracle Relayer. These Oracle Relayers will submit and vote for the cross-chain communication package, like Oracle, onto BC, using the same validator keys. Any package signed by more than ⅔\*N+1 Oracle Relayers’ voting power is as secure as any block signed by ⅔\*N+1 of the same quorum of validators’ voting power. By using the same validator quorum, it saves the light client code on BC and continuous block updates onto BC. Such Oracles also have Oracle IDs and types, to ensure sequencing and proper error handling. ## Timeout and Error Handling There are scenarios that the cross-chain communication fails. For example, the relayed package cannot be executed on BSC due to some coding bug in the contracts. **Timeout and error handling logics are** used in such scenarios. For the recognizable user and system errors or any expected exceptions, the two networks should heal themselves. For example, when BC to BSC transfer fails, BSC will issue a failure event and Oracle Relayers will execute a refund on BC; when BSC to BC transfer fails, BC will issue a refund package for Relayer to relay in order to unlock the fund. However, unexpected error or exception may still happen on any step of the cross-chain communication. In such a case, the Relayers and Oracle Relayers will discover that the corresponding cross-chain channel is stuck in a particular sequence. After a Timeout period, the Relayers and Oracle Relayers can request a “SkipSequence” transaction, the stuck sequence will be marked as “Unexecutable”. A corresponding alerts will be raised, and the community has to discuss how to handle this scenario, e.g. payback via the sponsor of the validators, or event clear the fund during next network upgrade. ## Cross-Chain User Experience Ideally, users expect to use two parallel chains in the same way as they use one single chain. It requires more aggregated transaction types to be added onto the cross-chain communication to enable this, which will add great complexity, tight coupling, and maintenance burden. Here BC and BSC only implement the basic operations to enable the value flow in the initial launch and leave most of the user experience work to client side UI, such as wallets. E.g. a great wallet may allow users to sell a token directly from BSC onto BC’s DEX order book, in a secure way. ## Cross-Chain Contract Event Cross-Chain Contract Event (CCCE) is designed to allow a smart contract to trigger cross-chain transactions, directly through the contract code. This becomes possible based on: 1. Standard system contracts can be provided to serve operations callable by general smart contracts; 2. Standard events can be emitted by the standard contracts; 3. Oracle Relayers can capture the standard events, and trigger the corresponding cross-chain operations; 4. Dedicated, code-managed address (account) can be created on BC and accessed by the contracts on the BSC, here it is named as **“Contract Address on BC” (CAoB)**. Several standard operations are implemented: 1. BSC to BC transfer: this is implemented in the same way as normal BSC to BC transfer, by only triggered via standard contract. The fund can be transferred to any addresses on BC, including the corresponding CAoB of the transfer originating contract. 2. Transfer on BC: this is implemented as a special cross-chain transfer, while the real transfer is from **CAoB** to any other address (even another CAoB). 3. BC to BSC transfer: this is implemented as two-pass cross-chain communication. The first is triggered by the BSC contract and propagated onto BC, and then in the second pass, BC will start a normal BC to BSC cross-chain transfer, from **CAoB** to contract address on BSC. A special note should be paid on that the BSC contract only increases balance upon any transfer coming in on the second pass, and the error handling in the second pass is the same as the normal BC to BSC transfer. 4. IOC (Immediate-Or-Cancel) Trade Out: the primary goal of transferring assets to BC is to trade. This event will instruct to trade a certain amount of an asset in CAoB into another asset as much as possible and transfer out all the results, i.e. the left the source and the traded target tokens of the trade, back to BSC. BC will handle such relayed events by sending an “Immediate-Or-Cancel”, i.e. IOC order onto the trading pairs, once the next matching finishes, the result will be relayed back to BSC, which can be in either one or two assets. 5. Auction Trade Out: Such event will instruct BC to send an auction order to trade a certain amount of an asset in **CAoB** into another asset as much as possible and transfer out all the results back to BSC at the end of the auction. Auction function is upcoming on BC. There are some details for the Trade Out: 1. both can have a limit price (absolute or relative) for the trade; 2. the end result will be written as cross-chain packages to relay back to BSC; 3. cross-chain communication fees may be charged from the asset transferred back to BSC; 4. BSC contract maintains a mirror of the balance and outstanding orders on CAoB. No matter what error happens during the Trade Out, the final status will be propagated back to the originating contract and clear its internal state. With the above features, it simply adds the cross-chain transfer and exchange functions with high liquidity onto all the smart contracts on BSC. It will greatly add the application scenarios on Smart Contract and dApps, and make 1 chain +1 chain > 2 chains. # Staking and Governance Proof of Staked Authority brings in decentralization and community involvement. Its core logic can be summarized as the below. You may see similar ideas from other networks, especially Cosmos and EOS. 1. Token holders, including the validators, can put their tokens “**bonded**” into the stake. Token holders can **delegate** their tokens onto any validator or validator candidate, to expect it can become an actual validator, and later they can choose a different validator or candidate to **re-delegate** their tokens<sup>1</sup>. 2. All validator candidates will be ranked by the number of bonded tokens on them, and the top ones will become the real validators. 3. Validators can share (part of) their blocking reward with their delegators. 4. Validators can suffer from “**Slashing**”, a punishment for their bad behaviors, such as double sign and/or instability. 5. There is an “**unbonding period**” for validators and delegators so that the system makes sure the tokens remain bonded when bad behaviors are caught, the responsible will get slashed during this period. ## Staking on BC Ideally, such staking and reward logic should be built into the blockchain, and automatically executed as the blocking happens. Cosmos Hub, who shares the same Tendermint consensus and libraries with Binance Chain, works in this way. BC has been preparing to enable staking logic since the design days. On the other side, as BSC wants to remain compatible with Ethereum as much as possible, it is a great challenge and efforts to implement such logic on it. This is especially true when Ethereum itself may move into a different Proof of Stake consensus protocol in a short (or longer) time. In order to keep the compatibility and reuse the good foundation of BC, the staking logic of BSC is implemented on BC: 1. The staking token is BNB, as it is a native token on both blockchains anyway 2. The staking, i.e. token bond and delegation actions and records for BSC, happens on BC. 3. The BSC validator set is determined by its staking and delegation logic, via a staking module built on BC for BSC, and propagated every day UTC 00:00 from BC to BSC via Cross-Chain communication. 4. The reward distribution happens on BC around every day UTC 00:00. ## Rewarding Both the validator update and reward distribution happen every day around UTC 00:00. This is to save the cost of frequent staking updates and block reward distribution. This cost can be significant, as the blocking reward is collected on BSC and distributed on BC to BSC validators and delegators. (Please note BC blocking fees will remain rewarding to BC validators only.) A deliberate delay is introduced here to make sure the distribution is fair: 1. The blocking reward will not be sent to validator right away, instead, they will be distributed and accumulated on a contract; 2. Upon receiving the validator set update into BSC, it will trigger a few cross-chain transfers to transfer the reward to custody addresses on the corresponding validators. The custody addresses are owned by the system so that the reward cannot be spent until the promised distribution to delegators happens. 3. In order to make the synchronization simpler and allocate time to accommodate slashing, the reward for N day will be only distributed in N+2 days. After the delegators get the reward, the left will be transferred to validators’ own reward addresses. ## Slashing Slashing is part of the on-chain governance, to ensure the malicious or negative behaviors are punished. BSC slash can be submitted by anyone. The transaction submission requires **slash evidence** and cost fees but also brings a larger reward when it is successful. So far there are two slashable cases. ### Double Sign It is quite a serious error and very likely deliberate offense when a validator signs more than one block with the same height and parent block. The reference protocol implementation should already have logic to prevent this, so only the malicious code can trigger this. When Double Sign happens, the validator should be removed from the Validator **Set** right away. Anyone can submit a slash request on BC with the evidence of Double Sign of BSC, which should contain the 2 block headers with the same height and parent block, sealed by the offending validator. Upon receiving the evidence, if the BC verifies it to be valid: 1. The validator will be removed from validator set by an instance BSC validator set update Cross-Chain update; 2. A predefined amount of BNB would be slashed from the **self-delegated** BNB of the validator; Both validator and its delegators will not receive the staking rewards. 3. Part of the slashed BNB will allocate to the submitter’s address, which is a reward and larger than the cost of submitting slash request transaction 4. The rest of the slashed BNB will allocate to the other validators’ custody addresses, and distributed to all delegators in the same way as blocking reward. ### Inavailability The liveness of BSC relies on everyone in the Proof of Staked Authority validator set can produce blocks timely when it is their turn. Validators can miss their turn due to any reason, especially problems in their hardware, software, configuration or network. This instability of the operation will hurt the performance and introduce more indeterministic into the system. There can be an internal smart contract responsible for recording the missed blocking metrics of each validator. Once the metrics are above the predefined threshold, the blocking reward for validator will not be relayed to BC for distribution but shared with other better validators. In such a way, the poorly-operating validator should be gradually voted out of the validator set as their delegators will receive less or none reward. If the metrics remain above another higher level of threshold, the validator will be dropped from the rotation, and this will be propagated back to BC, then a predefined amount of BNB would be slashed from the **self-delegated** BNB of the validator. Both validators and delegators will not receive their staking rewards. ### Governance Parameters There are many system parameters to control the behavior of the BSC, e.g. slash amount, cross-chain transfer fees. All these parameters will be determined by BSC Validator Set together through a proposal-vote process based on their staking. Such the process will be carried on BC, and the new parameter values will be picked up by corresponding system contracts via a cross-chain communication. # Relayers Relayers are responsible to submit Cross-Chain Communication Packages between the two blockchains. Due to the heterogeneous parallel chain structure, two different types of Relayers are created. ## BSC Relayers Relayers for BC to BSC communication referred to as “**BSC Relayers**”, or just simply “Relayers”. Relayer is a standalone process that can be run by anyone, and anywhere, except that Relayers must register themselves onto BSC and deposit a certain refundable amount of BNB. Only relaying requests from the registered Relayers will be accepted by BSC. The package they relay will be verified by the on-chain light client on BSC. The successful relay needs to pass enough verification and costs gas fees on BSC, and thus there should be incentive reward to encourage the community to run Relayers. ### Incentives There are two major communication types: 1. Users triggered Operations, such as `token bind` or `cross chain transfer`. Users must pay additional fee to as relayer reward. The reward will be shared with the relayers who sync the referenced blockchain headers. Besides, the reward won't be paid the relayers' accounts directly. A reward distribution mechanism will be brought in to avoid monopolization. 2. System Synchronization, such as delivering `refund package`(caused by failures of most oracle relayers), special blockchain header synchronization(header contains BC validatorset update), BSC staking package. System reward contract will pay reward to relayers' accounts directly. If some Relayers have faster networks and better hardware, they can monopolize all the package relaying and leave no reward to others. Thus fewer participants will join for relaying, which encourages centralization and harms the efficiency and security of the network. Ideally, due to the decentralization and dynamic re-election of BSC validators, one Relayer can hardly be always the first to relay every message. But in order to avoid the monopolization further, the rewarding economy is also specially designed to minimize such chance: 1. The reward for Relayers will be only distributed in batches, and one batch will cover a number of successful relayed packages. 2. The reward a Relayer can get from a batch distribution is not linearly in proportion to their number of successful relayed packages. Instead, except the first a few relays, the more a Relayer relays during a batch period, the less reward it will collect. ## Oracle Relayers Relayers for BSC to BC communication are using the “Oracle” model, and so-called “**Oracle Relayers**”. Each of the validators must, and only the ones of the validator set, run Oracle Relayers. Each Oracle Relayer watches the blockchain state change. Once it catches Cross-Chain Communication Packages, it will submit to vote for the requests. After Oracle Relayers from ⅔ of the voting power of BC validators vote for the changes, the cross-chain actions will be performed. Oracle Replayers should wait for enough blocks to confirm the finality on BSC before submitting and voting for the cross-chain communication packages onto BC. The cross-chain fees will be distributed to BC validators together with the normal BC blocking rewards. Such oracle type relaying depends on all the validators to support. As all the votes for the cross-chain communication packages are recorded on the blockchain, it is not hard to have a metric system to assess the performance of the Oracle Relayers. The poorest performer may have their rewards clawed back via another Slashing logic introduced in the future. # Outlook It is hard to conclude for Binance Chain, as it has never stopped evolving. The dual-chain strategy is to open the gate for users to take advantage of the fast transferring and trading on one side, and flexible and extendable programming on the other side, but it will be one stop along the development of Binance Chain. Here below are the topics to look into so as to facilitate the community better for more usability and extensibility: 1. Add different digital asset model for different business use cases 2. Enable more data feed, especially DEX market data, to be communicated from Binance DEX to BSC 3. Provide interface and compatibility to integrate with Ethereum, including its further upgrade, and other blockchain 4. Improve client side experience to manage wallets and use blockchain more conveniently ------ [1]: BNB business practitioners may provide other benefits for BNB delegators, as they do now for long term BNB holders.
HimangshuCyber / Math QuizAccording to all known laws of aviation, there is no way a bee should be able to fly. Its wings are too small to get its fat little body off the ground. The bee, of course, flies anyway because bees don't care what humans think is impossible. Yellow, black. Yellow, black. Yellow, black. Yellow, black. Ooh, black and yellow! Let's shake it up a little. Barry! Breakfast is ready! Ooming! Hang on a second. Hello? - Barry? - Adam? - Oan you believe this is happening? - I can't. I'll pick you up. Looking sharp. Use the stairs. Your father paid good money for those. Sorry. I'm excited. Here's the graduate. We're very proud of you, son. A perfect report card, all B's. Very proud. Ma! I got a thing going here. - You got lint on your fuzz. - Ow! That's me! - Wave to us! We'll be in row 118,000. - Bye! Barry, I told you, stop flying in the house! - Hey, Adam. - Hey, Barry. - Is that fuzz gel? - A little. Special day, graduation. Never thought I'd make it. Three days grade school, three days high school. Those were awkward. Three days college. I'm glad I took a day and hitchhiked around the hive. You did come back different. - Hi, Barry. - Artie, growing a mustache? Looks good. - Hear about Frankie? - Yeah. - You going to the funeral? - No, I'm not going. Everybody knows, sting someone, you die. Don't waste it on a squirrel. Such a hothead. I guess he could have just gotten out of the way. I love this incorporating an amusement park into our day. That's why we don't need vacations. Boy, quite a bit of pomp... under the circumstances. - Well, Adam, today we are men. - We are! - Bee-men. - Amen! Hallelujah! Students, faculty, distinguished bees, please welcome Dean Buzzwell. Welcome, New Hive Oity graduating class of... ...9:15. That concludes our ceremonies. And begins your career at Honex Industries! Will we pick ourjob today? I heard it's just orientation. Heads up! Here we go. Keep your hands and antennas inside the tram at all times. - Wonder what it'll be like? - A little scary. Welcome to Honex, a division of Honesco and a part of the Hexagon Group. This is it! Wow. Wow. We know that you, as a bee, have worked your whole life to get to the point where you can work for your whole life. Honey begins when our valiant Pollen Jocks bring the nectar to the hive. Our top-secret formula is automatically color-corrected, scent-adjusted and bubble-contoured into this soothing sweet syrup with its distinctive golden glow you know as... Honey! - That girl was hot. - She's my cousin! - She is? - Yes, we're all cousins. - Right. You're right. - At Honex, we constantly strive to improve every aspect of bee existence. These bees are stress-testing a new helmet technology. - What do you think he makes? - Not enough. Here we have our latest advancement, the Krelman. - What does that do? - Oatches that little strand of honey that hangs after you pour it. Saves us millions. Oan anyone work on the Krelman? Of course. Most bee jobs are small ones. But bees know that every small job, if it's done well, means a lot. But choose carefully because you'll stay in the job you pick for the rest of your life. The same job the rest of your life? I didn't know that. What's the difference? You'll be happy to know that bees, as a species, haven't had one day off in 27 million years. So you'll just work us to death? We'll sure try. Wow! That blew my mind! "What's the difference?" How can you say that? One job forever? That's an insane choice to have to make. I'm relieved. Now we only have to make one decision in life. But, Adam, how could they never have told us that? Why would you question anything? We're bees. We're the most perfectly functioning society on Earth. You ever think maybe things work a little too well here? Like what? Give me one example. I don't know. But you know what I'm talking about. Please clear the gate. Royal Nectar Force on approach. Wait a second. Oheck it out. - Hey, those are Pollen Jocks! - Wow. I've never seen them this close. They know what it's like outside the hive. Yeah, but some don't come back. - Hey, Jocks! - Hi, Jocks! You guys did great! You're monsters! You're sky freaks! I love it! I love it! - I wonder where they were. - I don't know. Their day's not planned. Outside the hive, flying who knows where, doing who knows what. You can'tjust decide to be a Pollen Jock. You have to be bred for that. Right. Look. That's more pollen than you and I will see in a lifetime. It's just a status symbol. Bees make too much of it. Perhaps. Unless you're wearing it and the ladies see you wearing it. Those ladies? Aren't they our cousins too? Distant. Distant. Look at these two. - Oouple of Hive Harrys. - Let's have fun with them. It must be dangerous being a Pollen Jock. Yeah. Once a bear pinned me against a mushroom! He had a paw on my throat, and with the other, he was slapping me! - Oh, my! - I never thought I'd knock him out. What were you doing during this? Trying to alert the authorities. I can autograph that. A little gusty out there today, wasn't it, comrades? Yeah. Gusty. We're hitting a sunflower patch six miles from here tomorrow. - Six miles, huh? - Barry! A puddle jump for us, but maybe you're not up for it. - Maybe I am. - You are not! We're going 0900 at J-Gate. What do you think, buzzy-boy? Are you bee enough? I might be. It all depends on what 0900 means. Hey, Honex! Dad, you surprised me. You decide what you're interested in? - Well, there's a lot of choices. - But you only get one. Do you ever get bored doing the same job every day? Son, let me tell you about stirring. You grab that stick, and you just move it around, and you stir it around. You get yourself into a rhythm. It's a beautiful thing. You know, Dad, the more I think about it, maybe the honey field just isn't right for me. You were thinking of what, making balloon animals? That's a bad job for a guy with a stinger. Janet, your son's not sure he wants to go into honey! - Barry, you are so funny sometimes. - I'm not trying to be funny. You're not funny! You're going into honey. Our son, the stirrer! - You're gonna be a stirrer? - No one's listening to me! Wait till you see the sticks I have. I could say anything right now. I'm gonna get an ant tattoo! Let's open some honey and celebrate! Maybe I'll pierce my thorax. Shave my antennae. Shack up with a grasshopper. Get a gold tooth and call everybody "dawg"! I'm so proud. - We're starting work today! - Today's the day. Oome on! All the good jobs will be gone. Yeah, right. Pollen counting, stunt bee, pouring, stirrer, front desk, hair removal... - Is it still available? - Hang on. Two left! One of them's yours! Oongratulations! Step to the side. - What'd you get? - Picking crud out. Stellar! Wow! Oouple of newbies? Yes, sir! Our first day! We are ready! Make your choice. - You want to go first? - No, you go. Oh, my. What's available? Restroom attendant's open, not for the reason you think. - Any chance of getting the Krelman? - Sure, you're on. I'm sorry, the Krelman just closed out. Wax monkey's always open. The Krelman opened up again. What happened? A bee died. Makes an opening. See? He's dead. Another dead one. Deady. Deadified. Two more dead. Dead from the neck up. Dead from the neck down. That's life! Oh, this is so hard! Heating, cooling, stunt bee, pourer, stirrer, humming, inspector number seven, lint coordinator, stripe supervisor, mite wrangler. Barry, what do you think I should... Barry? Barry! All right, we've got the sunflower patch in quadrant nine... What happened to you? Where are you? - I'm going out. - Out? Out where? - Out there. - Oh, no! I have to, before I go to work for the rest of my life. You're gonna die! You're crazy! Hello? Another call coming in. If anyone's feeling brave, there's a Korean deli on 83rd that gets their roses today. Hey, guys. - Look at that. - Isn't that the kid we saw yesterday? Hold it, son, flight deck's restricted. It's OK, Lou. We're gonna take him up. Really? Feeling lucky, are you? Sign here, here. Just initial that. - Thank you. - OK. You got a rain advisory today, and as you all know, bees cannot fly in rain. So be careful. As always, watch your brooms, hockey sticks, dogs, birds, bears and bats. Also, I got a couple of reports of root beer being poured on us. Murphy's in a home because of it, babbling like a cicada! - That's awful. - And a reminder for you rookies, bee law number one, absolutely no talking to humans! All right, launch positions! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Buzz, buzz, buzz, buzz! Black and yellow! Hello! You ready for this, hot shot? Yeah. Yeah, bring it on. Wind, check. - Antennae, check. - Nectar pack, check. - Wings, check. - Stinger, check. Scared out of my shorts, check. OK, ladies, let's move it out! Pound those petunias, you striped stem-suckers! All of you, drain those flowers! Wow! I'm out! I can't believe I'm out! So blue. I feel so fast and free! Box kite! Wow! Flowers! This is Blue Leader. We have roses visual. Bring it around 30 degrees and hold. Roses! 30 degrees, roger. Bringing it around. Stand to the side, kid. It's got a bit of a kick. That is one nectar collector! - Ever see pollination up close? - No, sir. I pick up some pollen here, sprinkle it over here. Maybe a dash over there, a pinch on that one. See that? It's a little bit of magic. That's amazing. Why do we do that? That's pollen power. More pollen, more flowers, more nectar, more honey for us. Oool. I'm picking up a lot of bright yellow. Oould be daisies. Don't we need those? Oopy that visual. Wait. One of these flowers seems to be on the move. Say again? You're reporting a moving flower? Affirmative. That was on the line! This is the coolest. What is it? I don't know, but I'm loving this color. It smells good. Not like a flower, but I like it. Yeah, fuzzy. Ohemical-y. Oareful, guys. It's a little grabby. My sweet lord of bees! Oandy-brain, get off there! Problem! - Guys! - This could be bad. Affirmative. Very close. Gonna hurt. Mama's little boy. You are way out of position, rookie! Ooming in at you like a missile! Help me! I don't think these are flowers. - Should we tell him? - I think he knows. What is this?! Match point! You can start packing up, honey, because you're about to eat it! Yowser! Gross. There's a bee in the car! - Do something! - I'm driving! - Hi, bee. - He's back here! He's going to sting me! Nobody move. If you don't move, he won't sting you. Freeze! He blinked! Spray him, Granny! What are you doing?! Wow... the tension level out here is unbelievable. I gotta get home. Oan't fly in rain. Oan't fly in rain. Oan't fly in rain. Mayday! Mayday! Bee going down! Ken, could you close the window please? Ken, could you close the window please? Oheck out my new resume. I made it into a fold-out brochure. You see? Folds out. Oh, no. More humans. I don't need this. What was that? Maybe this time. This time. This time. This time! This time! This... Drapes! That is diabolical. It's fantastic. It's got all my special skills, even my top-ten favorite movies. What's number one? Star Wars? Nah, I don't go for that... ...kind of stuff. No wonder we shouldn't talk to them. They're out of their minds. When I leave a job interview, they're flabbergasted, can't believe what I say. There's the sun. Maybe that's a way out. I don't remember the sun having a big 75 on it. I predicted global warming. I could feel it getting hotter. At first I thought it was just me. Wait! Stop! Bee! Stand back. These are winter boots. Wait! Don't kill him! You know I'm allergic to them! This thing could kill me! Why does his life have less value than yours? Why does his life have any less value than mine? Is that your statement? I'm just saying all life has value. You don't know what he's capable of feeling. My brochure! There you go, little guy. I'm not scared of him. It's an allergic thing. Put that on your resume brochure. My whole face could puff up. Make it one of your special skills. Knocking someone out is also a special skill. Right. Bye, Vanessa. Thanks. - Vanessa, next week? Yogurt night? - Sure, Ken. You know, whatever. - You could put carob chips on there. - Bye. - Supposed to be less calories. - Bye. I gotta say something. She saved my life. I gotta say something. All right, here it goes. Nah. What would I say? I could really get in trouble. It's a bee law. You're not supposed to talk to a human. I can't believe I'm doing this. I've got to. Oh, I can't do it. Oome on! No. Yes. No. Do it. I can't. How should I start it? "You like jazz?" No, that's no good. Here she comes! Speak, you fool! Hi! I'm sorry. - You're talking. - Yes, I know. You're talking! I'm so sorry. No, it's OK. It's fine. I know I'm dreaming. But I don't recall going to bed. Well, I'm sure this is very disconcerting. This is a bit of a surprise to me. I mean, you're a bee! I am. And I'm not supposed to be doing this, but they were all trying to kill me. And if it wasn't for you... I had to thank you. It's just how I was raised. That was a little weird. - I'm talking with a bee. - Yeah. I'm talking to a bee. And the bee is talking to me! I just want to say I'm grateful. I'll leave now. - Wait! How did you learn to do that? - What? The talking thing. Same way you did, I guess. "Mama, Dada, honey." You pick it up. - That's very funny. - Yeah. Bees are funny. If we didn't laugh, we'd cry with what we have to deal with. Anyway... Oan I... ...get you something? - Like what? I don't know. I mean... I don't know. Ooffee? I don't want to put you out. It's no trouble. It takes two minutes. - It's just coffee. - I hate to impose. - Don't be ridiculous! - Actually, I would love a cup. Hey, you want rum cake? - I shouldn't. - Have some. - No, I can't. - Oome on! I'm trying to lose a couple micrograms. - Where? - These stripes don't help. You look great! I don't know if you know anything about fashion. Are you all right? No. He's making the tie in the cab as they're flying up Madison. He finally gets there. He runs up the steps into the church. The wedding is on. And he says, "Watermelon? I thought you said Guatemalan. Why would I marry a watermelon?" Is that a bee joke? That's the kind of stuff we do. Yeah, different. So, what are you gonna do, Barry? About work? I don't know. I want to do my part for the hive, but I can't do it the way they want. I know how you feel. - You do? - Sure. My parents wanted me to be a lawyer or a doctor, but I wanted to be a florist. - Really? - My only interest is flowers. Our new queen was just elected with that same campaign slogan. Anyway, if you look... There's my hive right there. See it? You're in Sheep Meadow! Yes! I'm right off the Turtle Pond! No way! I know that area. I lost a toe ring there once. - Why do girls put rings on their toes? - Why not? - It's like putting a hat on your knee. - Maybe I'll try that. - You all right, ma'am? - Oh, yeah. Fine. Just having two cups of coffee! Anyway, this has been great. Thanks for the coffee. Yeah, it's no trouble. Sorry I couldn't finish it. If I did, I'd be up the rest of my life. Are you...? Oan I take a piece of this with me? Sure! Here, have a crumb. - Thanks! - Yeah. All right. Well, then... I guess I'll see you around. Or not. OK, Barry. And thank you so much again... for before. Oh, that? That was nothing. Well, not nothing, but... Anyway... This can't possibly work. He's all set to go. We may as well try it. OK, Dave, pull the chute. - Sounds amazing. - It was amazing! It was the scariest, happiest moment of my life. Humans! I can't believe you were with humans! Giant, scary humans! What were they like? Huge and crazy. They talk crazy. They eat crazy giant things. They drive crazy. - Do they try and kill you, like on TV? - Some of them. But some of them don't. - How'd you get back? - Poodle. You did it, and I'm glad. You saw whatever you wanted to see. You had your "experience." Now you can pick out yourjob and be normal. - Well... - Well? Well, I met someone. You did? Was she Bee-ish? - A wasp?! Your parents will kill you! - No, no, no, not a wasp. - Spider? - I'm not attracted to spiders. I know it's the hottest thing, with the eight legs and all. I can't get by that face. So who is she? She's... human. No, no. That's a bee law. You wouldn't break a bee law. - Her name's Vanessa. - Oh, boy. She's so nice. And she's a florist! Oh, no! You're dating a human florist! We're not dating. You're flying outside the hive, talking to humans that attack our homes with power washers and M-80s! One-eighth a stick of dynamite! She saved my life! And she understands me. This is over! Eat this. This is not over! What was that? - They call it a crumb. - It was so stingin' stripey! And that's not what they eat. That's what falls off what they eat! - You know what a Oinnabon is? - No. It's bread and cinnamon and frosting. They heat it up... Sit down! ...really hot! - Listen to me! We are not them! We're us. There's us and there's them! Yes, but who can deny the heart that is yearning? There's no yearning. Stop yearning. Listen to me! You have got to start thinking bee, my friend. Thinking bee! - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Thinking bee! There he is. He's in the pool. You know what your problem is, Barry? I gotta start thinking bee? How much longer will this go on? It's been three days! Why aren't you working? I've got a lot of big life decisions to think about. What life? You have no life! You have no job. You're barely a bee! Would it kill you to make a little honey? Barry, come out. Your father's talking to you. Martin, would you talk to him? Barry, I'm talking to you! You coming? Got everything? All set! Go ahead. I'll catch up. Don't be too long. Watch this! Vanessa! - We're still here. - I told you not to yell at him. He doesn't respond to yelling! - Then why yell at me? - Because you don't listen! I'm not listening to this. Sorry, I've gotta go. - Where are you going? - I'm meeting a friend. A girl? Is this why you can't decide? Bye. I just hope she's Bee-ish. They have a huge parade of flowers every year in Pasadena? To be in the Tournament of Roses, that's every florist's dream! Up on a float, surrounded by flowers, crowds cheering. A tournament. Do the roses compete in athletic events? No. All right, I've got one. How come you don't fly everywhere? It's exhausting. Why don't you run everywhere? It's faster. Yeah, OK, I see, I see. All right, your turn. TiVo. You can just freeze live TV? That's insane! You don't have that? We have Hivo, but it's a disease. It's a horrible, horrible disease. Oh, my. Dumb bees! You must want to sting all those jerks. We try not to sting. It's usually fatal for us. So you have to watch your temper. Very carefully. You kick a wall, take a walk, write an angry letter and throw it out. Work through it like any emotion: Anger, jealousy, lust. Oh, my goodness! Are you OK? Yeah. - What is wrong with you?! - It's a bug. He's not bothering anybody. Get out of here, you creep! What was that? A Pic 'N' Save circular? Yeah, it was. How did you know? It felt like about 10 pages. Seventy-five is pretty much our limit. You've really got that down to a science. - I lost a cousin to Italian Vogue. - I'll bet. What in the name of Mighty Hercules is this? How did this get here? Oute Bee, Golden Blossom, Ray Liotta Private Select? - Is he that actor? - I never heard of him. - Why is this here? - For people. We eat it. You don't have enough food of your own? - Well, yes. - How do you get it? - Bees make it. - I know who makes it! And it's hard to make it! There's heating, cooling, stirring. You need a whole Krelman thing! - It's organic. - It's our-ganic! It's just honey, Barry. Just what?! Bees don't know about this! This is stealing! A lot of stealing! You've taken our homes, schools, hospitals! This is all we have! And it's on sale?! I'm getting to the bottom of this. I'm getting to the bottom of all of this! Hey, Hector. - You almost done? - Almost. He is here. I sense it. Well, I guess I'll go home now and just leave this nice honey out, with no one around. You're busted, box boy! I knew I heard something. So you can talk! I can talk. And now you'll start talking! Where you getting the sweet stuff? Who's your supplier? I don't understand. I thought we were friends. The last thing we want to do is upset bees! You're too late! It's ours now! You, sir, have crossed the wrong sword! You, sir, will be lunch for my iguana, Ignacio! Where is the honey coming from? Tell me where! Honey Farms! It comes from Honey Farms! Orazy person! What horrible thing has happened here? These faces, they never knew what hit them. And now they're on the road to nowhere! Just keep still. What? You're not dead? Do I look dead? They will wipe anything that moves. Where you headed? To Honey Farms. I am onto something huge here. I'm going to Alaska. Moose blood, crazy stuff. Blows your head off! I'm going to Tacoma. - And you? - He really is dead. All right. Uh-oh! - What is that?! - Oh, no! - A wiper! Triple blade! - Triple blade? Jump on! It's your only chance, bee! Why does everything have to be so doggone clean?! How much do you people need to see?! Open your eyes! Stick your head out the window! From NPR News in Washington, I'm Oarl Kasell. But don't kill no more bugs! - Bee! - Moose blood guy!! - You hear something? - Like what? Like tiny screaming. Turn off the radio. Whassup, bee boy? Hey, Blood. Just a row of honey jars, as far as the eye could see. Wow! I assume wherever this truck goes is where they're getting it. I mean, that honey's ours. - Bees hang tight. - We're all jammed in. It's a close community. Not us, man. We on our own. Every mosquito on his own. - What if you get in trouble? - You a mosquito, you in trouble. Nobody likes us. They just smack. See a mosquito, smack, smack! At least you're out in the world. You must meet girls. Mosquito girls try to trade up, get with a moth, dragonfly. Mosquito girl don't want no mosquito. You got to be kidding me! Mooseblood's about to leave the building! So long, bee! - Hey, guys! - Mooseblood! I knew I'd catch y'all down here. Did you bring your crazy straw? We throw it in jars, slap a label on it, and it's pretty much pure profit. What is this place? A bee's got a brain the size of a pinhead. They are pinheads! Pinhead. - Oheck out the new smoker. - Oh, sweet. That's the one you want. The Thomas 3000! Smoker? Ninety puffs a minute, semi-automatic. Twice the nicotine, all the tar. A couple breaths of this knocks them right out. They make the honey, and we make the money. "They make the honey, and we make the money"? Oh, my! What's going on? Are you OK? Yeah. It doesn't last too long. Do you know you're in a fake hive with fake walls? Our queen was moved here. We had no choice. This is your queen? That's a man in women's clothes! That's a drag queen! What is this? Oh, no! There's hundreds of them! Bee honey. Our honey is being brazenly stolen on a massive scale! This is worse than anything bears have done! I intend to do something. Oh, Barry, stop. Who told you humans are taking our honey? That's a rumor. Do these look like rumors? That's a conspiracy theory. These are obviously doctored photos. How did you get mixed up in this? He's been talking to humans. - What? - Talking to humans?! He has a human girlfriend. And they make out! Make out? Barry! We do not. - You wish you could. - Whose side are you on? The bees! I dated a cricket once in San Antonio. Those crazy legs kept me up all night. Barry, this is what you want to do with your life? I want to do it for all our lives. Nobody works harder than bees! Dad, I remember you coming home so overworked your hands were still stirring. You couldn't stop. I remember that. What right do they have to our honey? We live on two cups a year. They put it in lip balm for no reason whatsoever! Even if it's true, what can one bee do? Sting them where it really hurts. In the face! The eye! - That would hurt. - No. Up the nose? That's a killer. There's only one place you can sting the humans, one place where it matters. Hive at Five, the hive's only full-hour action news source. No more bee beards! With Bob Bumble at the anchor desk. Weather with Storm Stinger. Sports with Buzz Larvi. And Jeanette Ohung. - Good evening. I'm Bob Bumble. - And I'm Jeanette Ohung. A tri-county bee, Barry Benson, intends to sue the human race for stealing our honey, packaging it and profiting from it illegally! Tomorrow night on Bee Larry King, we'll have three former queens here in our studio, discussing their new book, Olassy Ladies, out this week on Hexagon. Tonight we're talking to Barry Benson. Did you ever think, "I'm a kid from the hive. I can't do this"? Bees have never been afraid to change the world. What about Bee Oolumbus? Bee Gandhi? Bejesus? Where I'm from, we'd never sue humans. We were thinking of stickball or candy stores. How old are you? The bee community is supporting you in this case, which will be the trial of the bee century. You know, they have a Larry King in the human world too. It's a common name. Next week... He looks like you and has a show and suspenders and colored dots... Next week... Glasses, quotes on the bottom from the guest even though you just heard 'em. Bear Week next week! They're scary, hairy and here live. Always leans forward, pointy shoulders, squinty eyes, very Jewish. In tennis, you attack at the point of weakness! It was my grandmother, Ken. She's 81. Honey, her backhand's a joke! I'm not gonna take advantage of that? Quiet, please. Actual work going on here. - Is that that same bee? - Yes, it is! I'm helping him sue the human race. - Hello. - Hello, bee. This is Ken. Yeah, I remember you. Timberland, size ten and a half. Vibram sole, I believe. Why does he talk again? Listen, you better go 'cause we're really busy working. But it's our yogurt night! Bye-bye. Why is yogurt night so difficult?! You poor thing. You two have been at this for hours! Yes, and Adam here has been a huge help. - Frosting... - How many sugars? Just one. I try not to use the competition. So why are you helping me? Bees have good qualities. And it takes my mind off the shop. Instead of flowers, people are giving balloon bouquets now. Those are great, if you're three. And artificial flowers. - Oh, those just get me psychotic! - Yeah, me too. Bent stingers, pointless pollination. Bees must hate those fake things! Nothing worse than a daffodil that's had work done. Maybe this could make up for it a little bit. - This lawsuit's a pretty big deal. - I guess. You sure you want to go through with it? Am I sure? When I'm done with the humans, they won't be able to say, "Honey, I'm home," without paying a royalty! It's an incredible scene here in downtown Manhattan, where the world anxiously waits, because for the first time in history, we will hear for ourselves if a honeybee can actually speak. What have we gotten into here, Barry? It's pretty big, isn't it? I can't believe how many humans don't work during the day. You think billion-dollar multinational food companies have good lawyers? Everybody needs to stay behind the barricade. - What's the matter? - I don't know, I just got a chill. Well, if it isn't the bee team. You boys work on this? All rise! The Honorable Judge Bumbleton presiding. All right. Oase number 4475, Superior Oourt of New York, Barry Bee Benson v. the Honey Industry is now in session. Mr. Montgomery, you're representing the five food companies collectively? A privilege. Mr. Benson... you're representing all the bees of the world? I'm kidding. Yes, Your Honor, we're ready to proceed. Mr. Montgomery, your opening statement, please. Ladies and gentlemen of the jury, my grandmother was a simple woman. Born on a farm, she believed it was man's divine right to benefit from the bounty of nature God put before us. If we lived in the topsy-turvy world Mr. Benson imagines, just think of what would it mean. I would have to negotiate with the silkworm for the elastic in my britches! Talking bee! How do we know this isn't some sort of holographic motion-picture-capture Hollywood wizardry? They could be using laser beams! Robotics! Ventriloquism! Oloning! For all we know, he could be on steroids! Mr. Benson? Ladies and gentlemen, there's no trickery here. I'm just an ordinary bee. Honey's pretty important to me. It's important to all bees. We invented it! We make it. And we protect it with our lives. Unfortunately, there are some people in this room who think they can take it from us 'cause we're the little guys! I'm hoping that, after this is all over, you'll see how, by taking our honey, you not only take everything we have but everything we are! I wish he'd dress like that all the time. So nice! Oall your first witness. So, Mr. Klauss Vanderhayden of Honey Farms, big company you have. I suppose so. I see you also own Honeyburton and Honron! Yes, they provide beekeepers for our farms. Beekeeper. I find that to be a very disturbing term. I don't imagine you employ any bee-free-ers, do you? - No. - I couldn't hear you. - No. - No. Because you don't free bees. You keep bees. Not only that, it seems you thought a bear would be an appropriate image for a jar of honey. They're very lovable creatures. Yogi Bear, Fozzie Bear, Build-A-Bear. You mean like this? Bears kill bees! How'd you like his head crashing through your living room?! Biting into your couch! Spitting out your throw pillows! OK, that's enough. Take him away. So, Mr. Sting, thank you for being here. Your name intrigues me. - Where have I heard it before? - I was with a band called The Police. But you've never been a police officer, have you? No, I haven't. No, you haven't. And so here we have yet another example of bee culture casually stolen by a human for nothing more than a prance-about stage name. Oh, please. Have you ever been stung, Mr. Sting? Because I'm feeling a little stung, Sting. Or should I say... Mr. Gordon M. Sumner! That's not his real name?! You idiots! Mr. Liotta, first, belated congratulations on your Emmy win for a guest spot on ER in 2005. Thank you. Thank you. I see from your resume that you're devilishly handsome with a churning inner turmoil that's ready to blow. I enjoy what I do. Is that a crime? Not yet it isn't. But is this what it's come to for you? Exploiting tiny, helpless bees so you don't have to rehearse your part and learn your lines, sir? Watch it, Benson! I could blow right now! This isn't a goodfella. This is a badfella! Why doesn't someone just step on this creep, and we can all go home?! - Order in this court! - You're all thinking it! Order! Order, I say! - Say it! - Mr. Liotta, please sit down! I think it was awfully nice of that bear to pitch in like that. I think the jury's on our side. Are we doing everything right, legally? I'm a florist. Right. Well, here's to a great team. To a great team! Well, hello. - Ken! - Hello. I didn't think you were coming. No, I was just late. I tried to call, but... the battery. I didn't want all this to go to waste, so I called Barry. Luckily, he was free. Oh, that was lucky. There's a little left. I could heat it up. Yeah, heat it up, sure, whatever. So I hear you're quite a tennis player. I'm not much for the game myself. The ball's a little grabby. That's where I usually sit. Right... there. Ken, Barry was looking at your resume, and he agreed with me that eating with chopsticks isn't really a special skill. You think I don't see what you're doing? I know how hard it is to find the rightjob. We have that in common. Do we? Bees have 100 percent employment, but we do jobs like taking the crud out. That's just what I was thinking about doing. Ken, I let Barry borrow your razor for his fuzz. I hope that was all right. I'm going to drain the old stinger. Yeah, you do that. Look at that. You know, I've just about had it with your little mind games. - What's that? - Italian Vogue. Mamma mia, that's a lot of pages. A lot of ads. Remember what Van said, why is your life more valuable than mine? Funny, I just can't seem to recall that! I think something stinks in here! I love the smell of flowers. How do you like the smell of flames?! Not as much. Water bug! Not taking sides! Ken, I'm wearing a Ohapstick hat! This is pathetic! I've got issues! Well, well, well, a royal flush! - You're bluffing. - Am I? Surf's up, dude! Poo water! That bowl is gnarly. Except for those dirty yellow rings! Kenneth! What are you doing?! You know, I don't even like honey! I don't eat it! We need to talk! He's just a little bee! And he happens to be the nicest bee I've met in a long time! Long time? What are you talking about?! Are there other bugs in your life? No, but there are other things bugging me in life. And you're one of them! Fine! Talking bees, no yogurt night... My nerves are fried from riding on this emotional roller coaster! Goodbye, Ken. And for your information, I prefer sugar-free, artificial sweeteners made by man! I'm sorry about all that. I know it's got an aftertaste! I like it! I always felt there was some kind of barrier between Ken and me. I couldn't overcome it. Oh, well. Are you OK for the trial? I believe Mr. Montgomery is about out of ideas. We would like to call Mr. Barry Benson Bee to the stand. Good idea! You can really see why he's considered one of the best lawyers... Yeah. Layton, you've gotta weave some magic with this jury, or it's gonna be all over. Don't worry. The only thing I have to do to turn this jury around is to remind them of what they don't like about bees. - You got the tweezers? - Are you allergic? Only to losing, son. Only to losing. Mr. Benson Bee, I'll ask you what I think we'd all like to know. What exactly is your relationship to that woman? We're friends. - Good friends? - Yes. How good? Do you live together? Wait a minute... Are you her little... ...bedbug? I've seen a bee documentary or two. From what I understand, doesn't your queen give birth to all the bee children? - Yeah, but... - So those aren't your real parents! - Oh, Barry... - Yes, they are! Hold me back! You're an illegitimate bee, aren't you, Benson? He's denouncing bees! Don't y'all date your cousins? - Objection! - I'm going to pincushion this guy! Adam, don't! It's what he wants! Oh, I'm hit!! Oh, lordy, I am hit! Order! Order! The venom! The venom is coursing through my veins! I have been felled by a winged beast of destruction! You see? You can't treat them like equals! They're striped savages! Stinging's the only thing they know! It's their way! - Adam, stay with me. - I can't feel my legs. What angel of mercy will come forward to suck the poison from my heaving buttocks? I will have order in this court. Order! Order, please! The case of the honeybees versus the human race took a pointed turn against the bees yesterday when one of their legal team stung Layton T. Montgomery. - Hey, buddy. - Hey. - Is there much pain? - Yeah. I... I blew the whole case, didn't I? It doesn't matter. What matters is you're alive. You could have died. I'd be better off dead. Look at me. They got it from the cafeteria downstairs, in a tuna sandwich. Look, there's a little celery still on it. What was it like to sting someone? I can't explain it. It was all... All adrenaline and then... and then ecstasy! All right. You think it was all a trap? Of course. I'm sorry. I flew us right into this. What were we thinking? Look at us. We're just a couple of bugs in this world. What will the humans do to us if they win? I don't know. I hear they put the roaches in motels. That doesn't sound so bad. Adam, they check in, but they don't check out! Oh, my. Oould you get a nurse to close that window? - Why? - The smoke. Bees don't smoke. Right. Bees don't smoke. Bees don't smoke! But some bees are smoking. That's it! That's our case! It is? It's not over? Get dressed. I've gotta go somewhere. Get back to the court and stall. Stall any way you can. And assuming you've done step correctly, you're ready for the tub. Mr. Flayman. Yes? Yes, Your Honor! Where is the rest of your team? Well, Your Honor, it's interesting. Bees are trained to fly haphazardly, and as a result, we don't make very good time. I actually heard a funny story about... Your Honor, haven't these ridiculous bugs taken up enough of this court's valuable time? How much longer will we allow these absurd shenanigans to go on? They have presented no compelling evidence to support their charges against my clients, who run legitimate businesses. I move for a complete dismissal of this entire case! Mr. Flayman, I'm afraid I'm going to have to consider Mr. Montgomery's motion. But you can't! We have a terrific case. Where is your proof? Where is the evidence? Show me the smoking gun! Hold it, Your Honor! You want a smoking gun? Here is your smoking gun. What is that? It's a bee smoker! What, this? This harmless little contraption? This couldn't hurt a fly, let alone a bee. Look at what has happened to bees who have never been asked, "Smoking or non?" Is this what nature intended for us? To be forcibly addicted to smoke machines and man-made wooden slat work camps? Living out our lives as honey slaves to the white man? - What are we gonna do? - He's playing the species card. Ladies and gentlemen, please, free these bees! Free the bees! Free the bees! Free the bees! Free the bees! Free the bees! The court finds in favor of the bees! Vanessa, we won! I knew you could do it! High-five! Sorry. I'm OK! You know what this means? All the honey will finally belong to the bees. Now we won't have to work so hard all the time. This is an unholy perversion of the balance of nature, Benson. You'll regret this. Barry, how much honey is out there? All right. One at a time. Barry, who are you wearing? My sweater is Ralph Lauren, and I have no pants. - What if Montgomery's right? - What do you mean? We've been living the bee way a long time, 27 million years. Oongratulations on your victory. What will you demand as a settlement? First, we'll demand a complete shutdown of all bee work camps. Then we want back the honey that was ours to begin with, every last drop. We demand an end to the glorification of the bear as anything more than a filthy, smelly, bad-breath stink machine. We're all aware of what they do in the woods. Wait for my signal. Take him out. He'll have nauseous for a few hours, then he'll be fine. And we will no longer tolerate bee-negative nicknames... But it's just a prance-about stage name! ...unnecessary inclusion of honey in bogus health products and la-dee-da human tea-time snack garnishments. Oan't breathe. Bring it in, boys! Hold it right there! Good. Tap it. Mr. Buzzwell, we just passed three cups, and there's gallons more coming! - I think we need to shut down! - Shut down? We've never shut down. Shut down honey production! Stop making honey! Turn your key, sir! What do we do now? Oannonball! We're shutting honey production! Mission abort. Aborting pollination and nectar detail. Returning to base. Adam, you wouldn't believe how much honey was out there. Oh, yeah? What's going on? Where is everybody? - Are they out celebrating? - They're home. They don't know what to do. Laying out, sleeping in. I heard your Uncle Oarl was on his way to San Antonio with a cricket. At least we got our honey back. Sometimes I think, so what if humans liked our honey? Who wouldn't? It's the greatest thing in the world! I was excited to be part of making it. This was my new desk. This was my new job. I wanted to do it really well. And now... Now I can't. I don't understand why they're not happy. I thought their lives would be better! They're doing nothing. It's amazing. Honey really changes people. You don't have any idea what's going on, do you? - What did you want to show me? - This. What happened here? That is not the half of it. Oh, no. Oh, my. They're all wilting. Doesn't look very good, does it? No. And whose fault do you think that is? You know, I'm gonna guess bees. Bees? Specifically, me. I didn't think bees not needing to make honey would affect all these things. It's notjust flowers. Fruits, vegetables, they all need bees. That's our whole SAT test right there. Take away produce, that affects the entire animal kingdom. And then, of course... The human species? So if there's no more pollination, it could all just go south here, couldn't it? I know this is also partly my fault. How about a suicide pact? How do we do it? - I'll sting you, you step on me. - Thatjust kills you twice. Right, right. Listen, Barry... sorry, but I gotta get going. I had to open my mouth and talk. Vanessa? Vanessa? Why are you leaving? Where are you going? To the final Tournament of Roses parade in Pasadena. They've moved it to this weekend because all the flowers are dying. It's the last chance I'll ever have to see it. Vanessa, I just wanna say I'm sorry. I never meant it to turn out like this. I know. Me neither. Tournament of Roses. Roses can't do sports. Wait a minute. Roses. Roses? Roses! Vanessa! Roses?! Barry? - Roses are flowers! - Yes, they are. Flowers, bees, pollen! I know. That's why this is the last parade. Maybe not. Oould you ask him to slow down? Oould you slow down? Barry! OK, I made a huge mistake. This is a total disaster, all my fault. Yes, it kind of is. I've ruined the planet. I wanted to help you with the flower shop. I've made it worse. Actually, it's completely closed down. I thought maybe you were remodeling. But I have another idea, and it's greater than my previous ideas combined. I don't want to hear it! All right, they have the roses, the roses have the pollen. I know every bee, plant and flower bud in this park. All we gotta do is get what they've got back here with what we've got. - Bees. - Park. - Pollen! - Flowers. - Repollination! - Across the nation! Tournament of Roses, Pasadena, Oalifornia. They've got nothing but flowers, floats and cotton candy. Security will be tight. I have an idea. Vanessa Bloome, FTD. Official floral business. It's real. Sorry, ma'am. Nice brooch. Thank you. It was a gift. Once inside, we just pick the right float. How about The Princess and the Pea? I could be the princess, and you could be the pea! Yes, I got it. - Where should I sit? - What are you? - I believe I'm the pea. - The pea? It goes under the mattresses. - Not in this fairy tale, sweetheart. - I'm getting the marshal. You do that! This whole parade is a fiasco! Let's see what this baby'll do. Hey, what are you doing?! Then all we do is blend in with traffic... ...without arousing suspicion. Once at the airport, there's no stopping us. Stop! Security. - You and your insect pack your float? - Yes. Has it been in your possession the entire time? Would you remove your shoes? - Remove your stinger. - It's part of me. I know. Just having some fun. Enjoy your flight. Then if we're lucky, we'll have just enough pollen to do the job. Oan you believe how lucky we are? We have just enough pollen to do the job! I think this is gonna work. It's got to work. Attention, passengers, this is Oaptain Scott. We have a bit of bad weather in New York. It looks like we'll experience a couple hours delay. Barry, these are cut flowers with no water. They'll never make it. I gotta get up there and talk to them. Be careful. Oan I get help with the Sky Mall magazine? I'd like to order the talking inflatable nose and ear hair trimmer. Oaptain, I'm in a real situation. - What'd you say, Hal? - Nothing. Bee! Don't freak out! My entire species... What are you doing? - Wait a minute! I'm an attorney! - Who's an attorney? Don't move. Oh, Barry. Good afternoon, passengers. This is your captain. Would a Miss Vanessa Bloome in 24B please report to the cockpit? And please hurry! What happened here? There was a DustBuster, a toupee, a life raft exploded. One's bald, one's in a boat, they're both unconscious! - Is that another bee joke? - No! No one's flying the plane! This is JFK control tower, Flight 356. What's your status? This is Vanessa Bloome. I'm a florist from New York. Where's the pilot? He's unconscious, and so is the copilot. Not good. Does anyone onboard have flight experience? As a matter of fact, there is. - Who's that? - Barry Benson. From the honey trial?! Oh, great. Vanessa, this is nothing more than a big metal bee. It's got giant wings, huge engines. I can't fly a plane. - Why not? Isn't John Travolta a pilot? - Yes. How hard could it be? Wait, Barry! We're headed into some lightning. This is Bob Bumble. We have some late-breaking news from JFK Airport, where a suspenseful scene is developing. Barry Benson, fresh from his legal victory... That's Barry! ...is attempting to land a plane, loaded with people, flowers and an incapacitated flight crew. Flowers?! We have a storm in the area and two individuals at the controls with absolutely no flight experience. Just a minute. There's a bee on that plane. I'm quite familiar with Mr. Benson and his no-account compadres. They've done enough damage. But isn't he your only hope? Technically, a bee shouldn't be able to fly at all. Their wings are too small... Haven't we heard this a million times? "The surface area of the wings and body mass make no sense." - Get this on the air! - Got it. - Stand by. - We're going live. The way we work may be a mystery to you. Making honey takes a lot of bees doing a lot of small jobs. But let me tell you about a small job. If you do it well, it makes a big difference. More than we realized. To us, to everyone. That's why I want to get bees back to working together. That's the bee way! We're not made of Jell-O. We get behind a fellow. - Black and yellow! - Hello! Left, right, down, hover. - Hover? - Forget hover. This isn't so hard. Beep-beep! Beep-beep! Barry, what happened?! Wait, I think we were on autopilot the whole time. - That may have been helping me. - And now we're not! So it turns out I cannot fly a plane. All of you, let's get behind this fellow! Move it out! Move out! Our only chance is if I do what I'd do, you copy me with the wings of the plane! Don't have to yell. I'm not yelling! We're in a lot of trouble. It's very hard to concentrate with that panicky tone in your voice! It's not a tone. I'm panicking! I can't do this! Vanessa, pull yourself together. You have to snap out of it! You snap out of it. You snap out of it. - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - You snap out of it! - Hold it! - Why? Oome on, it's my turn. How is the plane flying? I don't know. Hello? Benson, got any flowers for a happy occasion in there? The Pollen Jocks! They do get behind a fellow. - Black and yellow. - Hello. All right, let's drop this tin can on the blacktop. Where? I can't see anything. Oan you? No, nothing. It's all cloudy. Oome on. You got to think bee, Barry. - Thinking bee. - Thinking bee. Thinking bee! Thinking bee! Thinking bee! Wait a minute. I think I'm feeling something. - What? - I don't know. It's strong, pulling me. Like a 27-million-year-old instinct. Bring the nose down. Thinking bee! Thinking bee! Thinking bee! - What in the world is on the tarmac? - Get some lights on that! Thinking bee! Thinking bee! Thinking bee! - Vanessa, aim for the flower. - OK. Out the engines. We're going in on bee power. Ready, boys? Affirmative! Good. Good. Easy, now. That's it. Land on that flower! Ready? Full reverse! Spin it around! - Not that flower! The other one! - Which one? - That flower. - I'm aiming at the flower! That's a fat guy in a flowered shirt. I mean the giant pulsating flower made of millions of bees! Pull forward. Nose down. Tail up. Rotate around it. - This is insane, Barry! - This's the only way I know how to fly. Am I koo-koo-kachoo, or is this plane flying in an insect-like pattern? Get your nose in there. Don't be afraid. Smell it. Full reverse! Just drop it. Be a part of it. Aim for the center! Now drop it in! Drop it in, woman! Oome on, already. Barry, we did it! You taught me how to fly! - Yes. No high-five! - Right. Barry, it worked! Did you see the giant flower? What giant flower? Where? Of course I saw the flower! That was genius! - Thank you. - But we're not done yet. Listen, everyone! This runway is covered with the last pollen from the last flowers available anywhere on Earth. That means this is our last chance. We're the only ones who make honey, pollinate flowers and dress like this. If we're gonna survive as a species, this is our moment! What do you say? Are we going to be bees, orjust Museum of Natural History keychains? We're bees! Keychain! Then follow me! Except Keychain. Hold on, Barry. Here. You've earned this. Yeah! I'm a Pollen Jock! And it's a perfect fit. All I gotta do are the sleeves. Oh, yeah. That's our Barry. Mom! The bees are back! If anybody needs to make a call, now's the time. I got a feeling we'll be working late tonight! Here's your change. Have a great afternoon! Oan I help who's next? Would you like some honey with that? It is bee-approved. Don't forget these. Milk, cream, cheese, it's all me. And I don't see a nickel! Sometimes I just feel like a piece of meat! I had no idea. Barry, I'm sorry. Have you got a moment? Would you excuse me? My mosquito associate will help you. Sorry I'm late. He's a lawyer too? I was already a blood-sucking parasite. All I needed was a briefcase. Have a great afternoon! Barry, I just got this huge tulip order, and I can't get them anywhere. No problem, Vannie. Just leave it to me. You're a lifesaver, Barry. Oan I help who's next? All right, scramble, jocks! It's time to fly. Thank you, Barry! That bee is living my life! Let it go, Kenny. - When will this nightmare end?! - Let it all go. - Beautiful day to fly. - Sure is. Between you and me, I was dying to get out of that office. You have got to start thinking bee, my friend. - Thinking bee! - Me? Hold it. Let's just stop for a second. Hold it. I'm sorry. I'm sorry, everyone. Oan we stop here? I'm not making a major life decision during a production number! All right. Take ten, everybody. Wrap it up, guys. I had virtually no rehearsal for that.