Started up 2025 with an interactive version
This commit is contained in:
17
2025/.github/dependabot.yml
vendored
Normal file
17
2025/.github/dependabot.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
# To get started with Dependabot version updates, you'll need to specify which
|
||||||
|
# package ecosystems to update and where the package manifests are located.
|
||||||
|
# Please see the documentation for all configuration options:
|
||||||
|
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||||
|
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
# Maintain dependencies for Cargo
|
||||||
|
- package-ecosystem: "cargo"
|
||||||
|
directory: "/" # Location of package manifests
|
||||||
|
schedule:
|
||||||
|
interval: "weekly"
|
||||||
|
# Maintain dependencies for GitHub Actions
|
||||||
|
- package-ecosystem: github-actions
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: weekly
|
||||||
89
2025/.github/workflows/ci.yml
vendored
Normal file
89
2025/.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,89 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
# ensure that the workflow is only triggered once per PR, subsequent pushes to the PR will cancel
|
||||||
|
# and restart the workflow. See https://docs.github.com/en/actions/using-jobs/using-concurrency
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
fmt:
|
||||||
|
name: fmt
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Rust stable
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
with:
|
||||||
|
components: rustfmt
|
||||||
|
- name: check formatting
|
||||||
|
run: cargo fmt -- --check
|
||||||
|
- name: Cache Cargo dependencies
|
||||||
|
uses: Swatinem/rust-cache@v2
|
||||||
|
clippy:
|
||||||
|
name: clippy
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
checks: write
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Rust stable
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
with:
|
||||||
|
components: clippy
|
||||||
|
- name: Run clippy action
|
||||||
|
uses: clechasseur/rs-clippy-check@v3
|
||||||
|
- name: Cache Cargo dependencies
|
||||||
|
uses: Swatinem/rust-cache@v2
|
||||||
|
doc:
|
||||||
|
# run docs generation on nightly rather than stable. This enables features like
|
||||||
|
# https://doc.rust-lang.org/beta/unstable-book/language-features/doc-cfg.html which allows an
|
||||||
|
# API be documented as only available in some specific platforms.
|
||||||
|
name: doc
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install Rust nightly
|
||||||
|
uses: dtolnay/rust-toolchain@nightly
|
||||||
|
- name: Run cargo doc
|
||||||
|
run: cargo doc --no-deps --all-features
|
||||||
|
env:
|
||||||
|
RUSTDOCFLAGS: --cfg docsrs
|
||||||
|
test:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
name: test ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os: [macos-latest, windows-latest]
|
||||||
|
steps:
|
||||||
|
# if your project needs OpenSSL, uncomment this to fix Windows builds.
|
||||||
|
# it's commented out by default as the install command takes 5-10m.
|
||||||
|
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
||||||
|
# if: runner.os == 'Windows'
|
||||||
|
# - run: vcpkg install openssl:x64-windows-static-md
|
||||||
|
# if: runner.os == 'Windows'
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Install Rust
|
||||||
|
uses: dtolnay/rust-toolchain@stable
|
||||||
|
# enable this ci template to run regardless of whether the lockfile is checked in or not
|
||||||
|
- name: cargo generate-lockfile
|
||||||
|
if: hashFiles('Cargo.lock') == ''
|
||||||
|
run: cargo generate-lockfile
|
||||||
|
- name: cargo test --locked
|
||||||
|
run: cargo test --locked --all-features --all-targets
|
||||||
|
- name: Cache Cargo dependencies
|
||||||
|
uses: Swatinem/rust-cache@v2
|
||||||
1
2025/.gitignore
vendored
Normal file
1
2025/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
/target
|
||||||
813
2025/Cargo.lock
generated
Normal file
813
2025/Cargo.lock
generated
Normal file
@@ -0,0 +1,813 @@
|
|||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 4
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "addr2line"
|
||||||
|
version = "0.21.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
||||||
|
dependencies = [
|
||||||
|
"gimli",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "adler"
|
||||||
|
version = "1.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "allocator-api2"
|
||||||
|
version = "0.2.21"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "autocfg"
|
||||||
|
version = "1.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "backtrace"
|
||||||
|
version = "0.3.71"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
|
||||||
|
dependencies = [
|
||||||
|
"addr2line",
|
||||||
|
"cc",
|
||||||
|
"cfg-if",
|
||||||
|
"libc",
|
||||||
|
"miniz_oxide",
|
||||||
|
"object",
|
||||||
|
"rustc-demangle",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bitflags"
|
||||||
|
version = "2.9.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "bracket2025"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"color-eyre",
|
||||||
|
"crossterm",
|
||||||
|
"ratatui",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cassowary"
|
||||||
|
version = "0.3.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "castaway"
|
||||||
|
version = "0.2.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
||||||
|
dependencies = [
|
||||||
|
"rustversion",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cc"
|
||||||
|
version = "1.2.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "be714c154be609ec7f5dad223a33bf1482fff90472de28f7362806e6d4832b8c"
|
||||||
|
dependencies = [
|
||||||
|
"shlex",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cfg-if"
|
||||||
|
version = "1.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "color-eyre"
|
||||||
|
version = "0.6.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "55146f5e46f237f7423d74111267d4597b59b0dad0ffaf7303bce9945d843ad5"
|
||||||
|
dependencies = [
|
||||||
|
"backtrace",
|
||||||
|
"color-spantrace",
|
||||||
|
"eyre",
|
||||||
|
"indenter",
|
||||||
|
"once_cell",
|
||||||
|
"owo-colors",
|
||||||
|
"tracing-error",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "color-spantrace"
|
||||||
|
version = "0.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2"
|
||||||
|
dependencies = [
|
||||||
|
"once_cell",
|
||||||
|
"owo-colors",
|
||||||
|
"tracing-core",
|
||||||
|
"tracing-error",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "compact_str"
|
||||||
|
version = "0.8.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3b79c4069c6cad78e2e0cdfcbd26275770669fb39fd308a752dc110e83b9af32"
|
||||||
|
dependencies = [
|
||||||
|
"castaway",
|
||||||
|
"cfg-if",
|
||||||
|
"itoa",
|
||||||
|
"rustversion",
|
||||||
|
"ryu",
|
||||||
|
"static_assertions",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "crossterm"
|
||||||
|
version = "0.28.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
"crossterm_winapi",
|
||||||
|
"mio",
|
||||||
|
"parking_lot",
|
||||||
|
"rustix",
|
||||||
|
"signal-hook",
|
||||||
|
"signal-hook-mio",
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "crossterm_winapi"
|
||||||
|
version = "0.9.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
|
||||||
|
dependencies = [
|
||||||
|
"winapi",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling"
|
||||||
|
version = "0.20.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
||||||
|
dependencies = [
|
||||||
|
"darling_core",
|
||||||
|
"darling_macro",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling_core"
|
||||||
|
version = "0.20.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
||||||
|
dependencies = [
|
||||||
|
"fnv",
|
||||||
|
"ident_case",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"strsim",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "darling_macro"
|
||||||
|
version = "0.20.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
||||||
|
dependencies = [
|
||||||
|
"darling_core",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "either"
|
||||||
|
version = "1.15.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "equivalent"
|
||||||
|
version = "1.0.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "errno"
|
||||||
|
version = "0.3.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"windows-sys 0.59.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "eyre"
|
||||||
|
version = "0.6.12"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
|
||||||
|
dependencies = [
|
||||||
|
"indenter",
|
||||||
|
"once_cell",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "fnv"
|
||||||
|
version = "1.0.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "foldhash"
|
||||||
|
version = "0.1.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "gimli"
|
||||||
|
version = "0.28.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "hashbrown"
|
||||||
|
version = "0.15.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
||||||
|
dependencies = [
|
||||||
|
"allocator-api2",
|
||||||
|
"equivalent",
|
||||||
|
"foldhash",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "heck"
|
||||||
|
version = "0.5.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ident_case"
|
||||||
|
version = "1.0.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "indenter"
|
||||||
|
version = "0.3.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "indoc"
|
||||||
|
version = "2.0.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "instability"
|
||||||
|
version = "0.3.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0bf9fed6d91cfb734e7476a06bde8300a1b94e217e1b523b6f0cd1a01998c71d"
|
||||||
|
dependencies = [
|
||||||
|
"darling",
|
||||||
|
"indoc",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itertools"
|
||||||
|
version = "0.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||||
|
dependencies = [
|
||||||
|
"either",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itoa"
|
||||||
|
version = "1.0.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lazy_static"
|
||||||
|
version = "1.5.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "libc"
|
||||||
|
version = "0.2.171"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "linux-raw-sys"
|
||||||
|
version = "0.4.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lock_api"
|
||||||
|
version = "0.4.12"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
||||||
|
dependencies = [
|
||||||
|
"autocfg",
|
||||||
|
"scopeguard",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "log"
|
||||||
|
version = "0.4.26"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "lru"
|
||||||
|
version = "0.12.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
|
||||||
|
dependencies = [
|
||||||
|
"hashbrown",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "memchr"
|
||||||
|
version = "2.7.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "miniz_oxide"
|
||||||
|
version = "0.7.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
||||||
|
dependencies = [
|
||||||
|
"adler",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "mio"
|
||||||
|
version = "1.0.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"log",
|
||||||
|
"wasi",
|
||||||
|
"windows-sys 0.52.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "object"
|
||||||
|
version = "0.32.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
||||||
|
dependencies = [
|
||||||
|
"memchr",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "once_cell"
|
||||||
|
version = "1.21.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "owo-colors"
|
||||||
|
version = "3.5.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot"
|
||||||
|
version = "0.12.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
||||||
|
dependencies = [
|
||||||
|
"lock_api",
|
||||||
|
"parking_lot_core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "parking_lot_core"
|
||||||
|
version = "0.9.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"libc",
|
||||||
|
"redox_syscall",
|
||||||
|
"smallvec",
|
||||||
|
"windows-targets",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "paste"
|
||||||
|
version = "1.0.15"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "pin-project-lite"
|
||||||
|
version = "0.2.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "proc-macro2"
|
||||||
|
version = "1.0.94"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
||||||
|
dependencies = [
|
||||||
|
"unicode-ident",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "quote"
|
||||||
|
version = "1.0.40"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ratatui"
|
||||||
|
version = "0.29.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
"cassowary",
|
||||||
|
"compact_str",
|
||||||
|
"crossterm",
|
||||||
|
"indoc",
|
||||||
|
"instability",
|
||||||
|
"itertools",
|
||||||
|
"lru",
|
||||||
|
"paste",
|
||||||
|
"strum",
|
||||||
|
"unicode-segmentation",
|
||||||
|
"unicode-truncate",
|
||||||
|
"unicode-width 0.2.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "redox_syscall"
|
||||||
|
version = "0.5.10"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustc-demangle"
|
||||||
|
version = "0.1.24"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustix"
|
||||||
|
version = "0.38.44"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags",
|
||||||
|
"errno",
|
||||||
|
"libc",
|
||||||
|
"linux-raw-sys",
|
||||||
|
"windows-sys 0.59.0",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustversion"
|
||||||
|
version = "1.0.20"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "ryu"
|
||||||
|
version = "1.0.20"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "scopeguard"
|
||||||
|
version = "1.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "sharded-slab"
|
||||||
|
version = "0.1.7"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
||||||
|
dependencies = [
|
||||||
|
"lazy_static",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "shlex"
|
||||||
|
version = "1.3.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "signal-hook"
|
||||||
|
version = "0.3.17"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"signal-hook-registry",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "signal-hook-mio"
|
||||||
|
version = "0.2.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
"mio",
|
||||||
|
"signal-hook",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "signal-hook-registry"
|
||||||
|
version = "1.4.2"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
|
||||||
|
dependencies = [
|
||||||
|
"libc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "smallvec"
|
||||||
|
version = "1.14.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "static_assertions"
|
||||||
|
version = "1.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "strsim"
|
||||||
|
version = "0.11.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "strum"
|
||||||
|
version = "0.26.3"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
||||||
|
dependencies = [
|
||||||
|
"strum_macros",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "strum_macros"
|
||||||
|
version = "0.26.4"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
||||||
|
dependencies = [
|
||||||
|
"heck",
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"rustversion",
|
||||||
|
"syn",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "syn"
|
||||||
|
version = "2.0.100"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
||||||
|
dependencies = [
|
||||||
|
"proc-macro2",
|
||||||
|
"quote",
|
||||||
|
"unicode-ident",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "thread_local"
|
||||||
|
version = "1.1.8"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
|
||||||
|
dependencies = [
|
||||||
|
"cfg-if",
|
||||||
|
"once_cell",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing"
|
||||||
|
version = "0.1.41"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
||||||
|
dependencies = [
|
||||||
|
"pin-project-lite",
|
||||||
|
"tracing-core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-core"
|
||||||
|
version = "0.1.33"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
|
||||||
|
dependencies = [
|
||||||
|
"once_cell",
|
||||||
|
"valuable",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-error"
|
||||||
|
version = "0.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
|
||||||
|
dependencies = [
|
||||||
|
"tracing",
|
||||||
|
"tracing-subscriber",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "tracing-subscriber"
|
||||||
|
version = "0.3.19"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
|
||||||
|
dependencies = [
|
||||||
|
"sharded-slab",
|
||||||
|
"thread_local",
|
||||||
|
"tracing-core",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-ident"
|
||||||
|
version = "1.0.18"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-segmentation"
|
||||||
|
version = "1.12.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-truncate"
|
||||||
|
version = "1.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
|
||||||
|
dependencies = [
|
||||||
|
"itertools",
|
||||||
|
"unicode-segmentation",
|
||||||
|
"unicode-width 0.1.14",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-width"
|
||||||
|
version = "0.1.14"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "unicode-width"
|
||||||
|
version = "0.2.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "valuable"
|
||||||
|
version = "0.1.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wasi"
|
||||||
|
version = "0.11.0+wasi-snapshot-preview1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi"
|
||||||
|
version = "0.3.9"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
||||||
|
dependencies = [
|
||||||
|
"winapi-i686-pc-windows-gnu",
|
||||||
|
"winapi-x86_64-pc-windows-gnu",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi-i686-pc-windows-gnu"
|
||||||
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "winapi-x86_64-pc-windows-gnu"
|
||||||
|
version = "0.4.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-sys"
|
||||||
|
version = "0.52.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
||||||
|
dependencies = [
|
||||||
|
"windows-targets",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-sys"
|
||||||
|
version = "0.59.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
||||||
|
dependencies = [
|
||||||
|
"windows-targets",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows-targets"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
||||||
|
dependencies = [
|
||||||
|
"windows_aarch64_gnullvm",
|
||||||
|
"windows_aarch64_msvc",
|
||||||
|
"windows_i686_gnu",
|
||||||
|
"windows_i686_gnullvm",
|
||||||
|
"windows_i686_msvc",
|
||||||
|
"windows_x86_64_gnu",
|
||||||
|
"windows_x86_64_gnullvm",
|
||||||
|
"windows_x86_64_msvc",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_aarch64_gnullvm"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_aarch64_msvc"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_i686_gnu"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_i686_gnullvm"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_i686_msvc"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_gnu"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_gnullvm"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "windows_x86_64_msvc"
|
||||||
|
version = "0.52.6"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
||||||
11
2025/Cargo.toml
Normal file
11
2025/Cargo.toml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
[package]
|
||||||
|
name = "bracket2025"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Connor Johnstone <connor.johnstone@arcfield.com>"]
|
||||||
|
license = "MIT"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
crossterm = "0.28.1"
|
||||||
|
ratatui = "0.29.0"
|
||||||
|
color-eyre = "0.6.3"
|
||||||
21
2025/LICENSE
Normal file
21
2025/LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) Connor Johnstone <connor.johnstone@arcfield.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
14
2025/README.md
Normal file
14
2025/README.md
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# bracket2025
|
||||||
|
|
||||||
|
This is a [Ratatui] app generated by the [Simple Template].
|
||||||
|
|
||||||
|
[Ratatui]: https://ratatui.rs
|
||||||
|
[Simple Template]: https://github.com/ratatui/templates/tree/main/simple
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Copyright (c) Connor Johnstone <connor.johnstone@arcfield.com>
|
||||||
|
|
||||||
|
This project is licensed under the MIT license ([LICENSE] or <http://opensource.org/licenses/MIT>)
|
||||||
|
|
||||||
|
[LICENSE]: ./LICENSE
|
||||||
364
2025/data/kenpom.csv
Normal file
364
2025/data/kenpom.csv
Normal file
@@ -0,0 +1,364 @@
|
|||||||
|
1,Duke 1,ACC,31-3,+38.26,128.0,3,89.7,4,65.8,267,-.019,231,+10.14,55,112.5,47,102.4,62,+9.37,21
|
||||||
|
2,Florida 1,SEC,30-4,+36.24,128.7,1,92.4,9,69.6,59,+.007,159,+14.53,16,114.6,17,100.1,19,-1.96,231
|
||||||
|
3,Houston 1,B12,30-4,+35.42,123.2,10,87.8,2,61.5,360,+.015,138,+13.68,24,113.6,33,99.9,17,+2.59,100
|
||||||
|
4,Auburn 1,SEC,28-5,+35.15,128.5,2,93.4,12,67.6,154,+.030,100,+19.12,2,117.2,2,98.0,1,+10.40,19
|
||||||
|
5,Tennessee 2,SEC,27-7,+31.19,120.3,18,89.1,3,63.7,346,+.016,135,+16.03,6,116.7,4,100.7,32,-0.85,202
|
||||||
|
6,Alabama 2,SEC,25-8,+30.05,126.6,4,96.5,31,74.9,1,+.029,103,+19.65,1,118.4,1,98.7,3,+12.10,10
|
||||||
|
7,Texas Tech 3,B12,25-8,+28.04,125.3,6,97.3,37,65.5,281,-.045,293,+11.27,50,111.9,58,100.6,31,-4.68,305
|
||||||
|
8,Michigan St. 2,B10,27-6,+27.62,118.2,27,90.6,5,67.8,143,-.009,206,+13.42,27,114.3,23,100.9,39,+0.42,155
|
||||||
|
9,Gonzaga 8,WCC,25-8,+27.29,123.6,9,96.3,29,70.2,46,-.074,341,+7.05,73,110.8,74,103.8,79,+8.76,26
|
||||||
|
10,Iowa St. 3,B12,24-9,+27.00,119.5,21,92.5,10,68.6,103,-.048,298,+12.67,36,113.4,37,100.7,37,-0.85,201
|
||||||
|
11,Maryland 4,B10,25-8,+26.37,118.2,28,91.8,6,69.9,57,-.038,279,+10.99,52,113.1,42,102.1,55,-10.36,359
|
||||||
|
12,St. John's 2,BE,30-4,+26.34,113.9,65,87.6,1,70.2,49,-.019,232,+9.10,61,111.8,60,102.7,66,-0.04,173
|
||||||
|
13,Wisconsin 3,B10,26-9,+25.99,122.1,13,96.1,27,67.6,152,-.033,270,+13.92,23,114.3,22,100.4,26,-0.10,175
|
||||||
|
14,Arizona 4,B12,22-12,+25.72,122.6,12,96.9,33,69.9,54,-.049,303,+16.42,4,115.3,7,98.9,4,+5.07,53
|
||||||
|
15,Missouri 6,SEC,22-11,+24.49,125.4,5,100.9,71,68.2,121,-.048,297,+13.15,32,113.8,26,100.7,33,-9.24,355
|
||||||
|
16,Kentucky 3,SEC,22-11,+24.30,123.9,8,99.6,56,71.0,23,+.007,157,+17.92,3,116.9,3,99.0,5,+3.78,75
|
||||||
|
17,Texas A&M 4,SEC,22-10,+24.12,116.3,41,92.2,7,66.2,238,+.001,175,+16.21,5,115.5,5,99.3,9,+7.11,40
|
||||||
|
18,Clemson 5,ACC,27-6,+23.94,118.7,24,94.8,16,64.3,327,-.032,267,+8.34,68,111.5,63,103.2,73,+3.71,79
|
||||||
|
19,Purdue 4,B10,22-11,+23.87,124.3,7,100.4,64,65.0,297,-.007,198,+15.77,9,115.4,6,99.7,15,+10.43,18
|
||||||
|
20,Illinois 6,B10,21-12,+23.59,121.7,15,98.1,41,71.4,18,-.018,229,+15.99,7,115.0,10,99.0,7,+3.43,83
|
||||||
|
21,Kansas 7,B12,21-12,+23.29,116.0,48,92.7,11,68.4,113,-.024,250,+15.57,12,114.9,11,99.3,10,+8.78,25
|
||||||
|
22,Saint Mary's 7,WCC,28-5,+23.14,115.3,56,92.2,8,61.7,359,+.005,162,+5.44,87,111.1,71,105.6,121,+5.16,49
|
||||||
|
23,Louisville 8,ACC,27-7,+22.71,118.2,29,95.5,21,68.8,91,+.058,55,+10.44,54,112.7,45,102.3,58,+7.14,39
|
||||||
|
24,BYU 6,B12,24-9,+22.36,123.0,11,100.7,69,67.3,180,+.036,85,+11.12,51,111.9,59,100.7,36,-7.90,347
|
||||||
|
25,Michigan 5,B10,25-9,+22.31,116.1,47,93.8,13,69.5,64,+.070,41,+14.91,13,114.5,18,99.6,11,+3.85,73
|
||||||
|
26,Mississippi 6,SEC,22-11,+22.13,117.9,31,95.8,23,68.1,130,+.018,132,+15.87,8,115.2,8,99.3,8,-0.55,194
|
||||||
|
27,UCLA 7,B10,22-10,+21.78,116.9,35,95.1,17,64.9,301,-.008,203,+12.61,37,113.7,28,101.1,45,-5.18,314
|
||||||
|
28,Marquette 7,BE,23-10,+21.56,117.7,32,96.1,28,67.6,155,-.013,214,+12.53,38,113.1,40,100.6,30,+8.80,24
|
||||||
|
29,Baylor 9,B12,19-14,+21.16,120.9,16,99.7,58,64.6,320,-.054,314,+15.72,10,113.8,27,98.1,2,+7.69,33
|
||||||
|
30,North Carolina 11,ACC,23-13,+20.64,119.8,19,99.2,52,70.5,34,-.021,243,+12.33,40,113.3,39,101.0,43,+13.34,7
|
||||||
|
31,VCU 11,A10,28-6,+20.27,116.2,45,95.9,24,66.1,243,-.051,310,+1.02,128,106.8,159,105.8,125,-4.07,292
|
||||||
|
32,Mississippi St. 8,SEC,21-12,+20.15,118.8,23,98.7,46,68.2,124,+.012,145,+14.88,14,115.1,9,100.2,21,+0.67,149
|
||||||
|
33,Oregon 5,B10,24-9,+20.12,116.6,39,96.5,30,67.7,151,+.085,27,+14.15,19,114.4,19,100.3,24,+4.10,68
|
||||||
|
34,Georgia 9,SEC,20-12,+19.39,115.4,53,96.1,26,66.5,221,-.001,183,+13.66,25,113.9,25,100.3,23,-5.40,322
|
||||||
|
35,Connecticut 8,BE,23-10,+19.31,121.9,14,102.6,96,63.8,344,-.019,233,+10.10,56,112.1,52,102.0,54,-0.10,174
|
||||||
|
36,Creighton 9,BE,24-10,+18.64,116.9,34,98.3,42,67.1,192,+.049,70,+11.46,46,112.2,50,100.8,38,+5.43,46
|
||||||
|
37,UC San Diego 12,BW,30-4,+18.40,115.1,60,96.7,32,65.7,272,+.010,152,-1.95,189,105.7,219,107.7,190,-2.00,233
|
||||||
|
38,Oklahoma 9,SEC,20-13,+18.38,119.1,22,100.7,70,68.6,106,+.005,161,+14.69,15,114.6,16,99.9,18,-5.41,323
|
||||||
|
39,Ohio St.,B10,17-15,+18.32,117.7,33,99.3,54,67.0,195,-.070,332,+14.42,18,114.7,14,100.3,25,+3.14,90
|
||||||
|
40,Arkansas 10,SEC,20-13,+17.76,113.0,73,95.2,18,69.4,68,-.008,202,+13.93,22,114.8,13,100.9,40,-2.50,249
|
||||||
|
41,Xavier 11,BE,21-11,+17.18,115.5,52,98.3,43,69.1,75,-.020,237,+9.41,59,111.1,70,101.7,53,-1.13,210
|
||||||
|
42,Texas 11,SEC,19-15,+17.17,116.8,36,99.6,57,67.4,173,-.057,317,+14.05,20,114.2,24,100.2,20,-8.21,349
|
||||||
|
43,New Mexico 10,MWC,26-7,+17.02,112.4,84,95.4,20,72.7,4,-.000,179,+6.03,82,109.0,93,103.0,70,+5.15,50
|
||||||
|
44,Colorado St. 12,MWC,25-9,+16.96,116.1,46,99.1,51,66.0,251,+.025,117,+5.58,86,109.3,90,103.7,78,+1.44,131
|
||||||
|
45,Northwestern,B10,17-16,+16.38,113.9,64,97.5,39,65.0,298,-.089,350,+12.44,39,113.7,32,101.2,48,-2.13,237
|
||||||
|
46,SMU,ACC,23-10,+16.24,116.7,37,100.4,65,68.5,109,+.011,148,+6.08,81,110.3,79,104.2,91,-3.78,283
|
||||||
|
47,Indiana,B10,19-13,+16.21,113.7,67,97.5,38,67.9,137,+.024,119,+13.34,28,114.4,20,101.1,44,+1.37,132
|
||||||
|
48,Vanderbilt 10,SEC,20-12,+16.19,118.0,30,101.8,84,69.5,63,+.025,113,+12.98,33,113.7,30,100.7,34,-6.82,343
|
||||||
|
49,Boise St.,MWC,24-10,+15.58,115.8,50,100.2,60,65.2,291,+.004,169,+6.13,80,109.0,92,102.9,68,+1.65,124
|
||||||
|
50,Memphis 5,Amer,29-5,+15.47,113.3,72,97.8,40,70.8,27,+.090,20,+6.19,79,111.2,67,105.0,102,+15.72,4
|
||||||
|
51,West Virginia,B12,19-13,+15.10,109.1,132,94.0,14,64.2,329,+.023,121,+13.22,30,113.0,43,99.8,16,+1.01,138
|
||||||
|
52,Santa Clara,WCC,21-12,+14.95,116.5,40,101.6,78,68.9,89,-.054,313,+3.85,97,109.4,88,105.6,117,+3.66,80
|
||||||
|
53,San Diego St. 11,MWC,21-10,+14.92,109.6,118,94.7,15,66.1,244,+.028,107,+9.01,62,111.3,65,102.3,61,+13.03,8
|
||||||
|
54,Utah St. 10,MWC,26-7,+14.89,120.6,17,105.7,150,67.6,159,+.086,24,+5.38,89,108.6,99,103.2,74,+0.76,144
|
||||||
|
55,Nebraska,B10,17-14,+14.84,113.3,71,98.4,44,67.4,174,-.010,207,+12.21,42,113.7,29,101.5,51,-2.99,264
|
||||||
|
56,Cincinnati,B12,18-15,+14.79,110.5,101,95.7,22,65.5,280,-.049,302,+11.41,48,112.3,49,100.9,42,-4.99,310
|
||||||
|
57,Drake 11,MVC,30-3,+14.21,112.7,75,98.5,45,58.8,364,+.004,166,-0.39,160,107.3,140,107.6,188,-2.62,251
|
||||||
|
58,Villanova,BE,19-14,+14.20,118.3,26,104.1,116,63.0,354,-.072,335,+7.69,70,110.4,77,102.7,67,-6.30,334
|
||||||
|
59,McNeese 12,Slnd,27-6,+13.81,114.3,63,100.5,66,65.4,283,-.023,249,-2.33,204,104.8,267,107.1,164,+8.99,23
|
||||||
|
60,Liberty 12,CUSA,28-6,+13.78,112.6,78,98.8,48,65.4,285,+.000,177,+0.69,135,106.1,197,105.4,115,-2.84,257
|
||||||
|
61,Pittsburgh,ACC,17-15,+13.71,115.7,51,102.0,86,66.3,234,-.068,330,+8.84,63,111.9,56,103.1,71,+3.76,77
|
||||||
|
62,Penn St.,B10,16-15,+13.65,114.7,62,101.1,72,69.9,56,-.093,354,+9.36,60,111.9,55,102.6,64,-10.56,360
|
||||||
|
63,USC,B10,16-17,+12.93,116.7,38,103.7,107,68.2,122,-.043,290,+12.16,43,113.3,38,101.2,46,-2.14,238
|
||||||
|
64,Iowa,B10,17-16,+12.82,119.6,20,106.8,175,69.6,61,-.037,277,+12.30,41,113.6,34,101.3,49,-8.37,350
|
||||||
|
65,San Francisco,WCC,24-9,+12.68,111.8,90,99.1,50,67.8,144,+.053,64,+3.77,98,109.6,85,105.8,126,-1.12,208
|
||||||
|
66,Kansas St.,B12,16-17,+12.22,109.4,123,97.2,36,67.0,196,-.037,276,+12.88,34,112.5,48,99.6,12,-1.12,209
|
||||||
|
67,UC Irvine,BW,28-6,+12.08,107.4,158,95.3,19,68.7,98,+.059,53,+0.48,138,107.1,148,106.6,145,+4.28,65
|
||||||
|
68,UCF,B12,17-16,+11.61,115.4,54,103.8,112,71.9,11,+.025,115,+12.04,44,111.7,62,99.6,13,-1.03,205
|
||||||
|
69,South Carolina,SEC,12-20,+11.52,110.5,102,99.0,49,65.3,287,-.088,349,+14.51,17,114.9,12,100.4,29,-1.97,232
|
||||||
|
70,North Texas,Amer,25-8,+11.38,110.2,106,98.8,47,60.4,362,-.017,227,+0.99,129,108.6,100,107.6,182,+1.78,122
|
||||||
|
71,Wake Forest,ACC,21-11,+11.32,108.3,145,96.9,34,67.1,190,+.088,22,+8.71,65,111.4,64,102.7,65,-2.10,236
|
||||||
|
72,Arizona St.,B12,13-19,+11.24,112.5,81,101.3,76,68.4,111,-.019,234,+15.63,11,114.6,15,99.0,6,+8.34,30
|
||||||
|
73,Yale 13,Ivy,22-7,+11.03,115.1,58,104.1,119,67.2,183,-.041,285,-2.54,215,106.5,176,109.0,258,-0.77,200
|
||||||
|
74,Dayton,A10,23-10,+11.03,116.0,49,104.9,133,65.9,256,+.038,83,+4.84,91,108.5,102,103.7,77,+4.90,55
|
||||||
|
75,Rutgers,B10,15-17,+10.76,115.1,59,104.4,122,68.7,100,-.012,213,+13.30,29,113.5,36,100.2,22,-2.21,241
|
||||||
|
76,Utah,B12,16-16,+10.61,112.4,82,101.8,83,68.8,92,-.050,304,+10.60,53,112.1,53,101.5,52,-9.42,356
|
||||||
|
77,Butler,BE,14-19,+10.56,116.2,44,105.6,149,67.5,168,-.077,343,+11.41,47,112.1,51,100.7,35,+3.09,92
|
||||||
|
78,George Mason,A10,27-8,+10.53,106.5,183,95.9,25,64.6,319,+.074,36,+0.98,130,107.5,129,106.5,144,-5.24,317
|
||||||
|
79,Stanford,ACC,21-13,+9.99,112.6,79,102.6,95,66.0,252,+.045,76,+5.87,83,109.7,83,103.8,80,-3.84,285
|
||||||
|
80,Nevada,MWC,17-16,+9.69,112.7,76,103.0,97,63.8,342,-.093,353,+5.16,90,109.0,94,103.8,81,+2.03,117
|
||||||
|
81,Colorado,B12,14-20,+9.52,108.8,138,99.3,53,67.7,148,-.042,287,+13.46,26,113.1,41,99.6,14,-1.51,223
|
||||||
|
82,Lipscomb 14,ASun,25-9,+9.45,112.7,74,103.3,101,65.9,259,-.028,263,-4.57,282,105.6,227,110.2,334,+3.98,69
|
||||||
|
83,Saint Joseph's,A10,22-13,+9.38,109.8,112,100.4,63,68.0,132,-.070,333,+0.79,134,106.8,157,106.0,129,-4.27,301
|
||||||
|
84,High Point 13,BSth,29-5,+9.35,118.5,25,109.2,226,66.5,222,+.011,147,-5.43,297,104.4,282,109.8,317,-5.81,328
|
||||||
|
85,Oregon St.,WCC,20-12,+9.31,116.3,42,106.9,180,63.8,343,-.029,264,+0.95,131,107.1,145,106.2,137,-4.56,304
|
||||||
|
86,Arkansas St.,SB,25-10,+9.03,111.2,95,102.2,89,70.1,51,-.039,281,-2.09,198,105.1,250,107.2,167,+1.00,139
|
||||||
|
87,TCU,B12,16-16,+8.88,105.9,200,97.0,35,66.6,217,+.030,101,+13.18,31,113.6,35,100.4,28,+2.89,94
|
||||||
|
88,Georgetown,BE,17-15,+8.83,108.4,144,99.5,55,68.3,120,-.037,274,+6.37,77,109.9,81,103.5,75,-11.40,362
|
||||||
|
89,LSU,SEC,14-18,+8.69,109.1,133,100.4,62,68.0,136,-.062,324,+13.97,21,114.4,21,100.4,27,-6.91,344
|
||||||
|
90,Florida St.,ACC,17-15,+8.49,108.8,139,100.3,61,69.5,62,-.007,197,+6.55,76,110.4,78,103.8,82,-2.45,247
|
||||||
|
91,Minnesota,B10,15-17,+8.46,110.2,107,101.7,81,62.7,357,+.025,114,+11.64,45,113.0,44,101.4,50,-5.98,333
|
||||||
|
92,Bradley,MVC,27-8,+7.33,111.1,96,103.8,109,65.8,266,+.100,17,+0.25,143,107.8,116,107.5,177,-2.80,254
|
||||||
|
93,Troy 14,SB,23-10,+7.19,107.8,152,100.6,67,66.3,230,-.009,204,-2.57,217,105.5,232,108.1,207,+1.37,133
|
||||||
|
94,Grand Canyon 13,WAC,26-7,+7.19,107.8,151,100.6,68,71.5,15,+.019,128,-3.48,254,103.1,304,106.6,148,-3.26,274
|
||||||
|
95,UNLV,MWC,18-15,+7.18,107.4,157,100.2,59,65.7,268,+.010,153,+5.74,84,109.8,82,104.1,87,+3.76,76
|
||||||
|
96,Notre Dame,ACC,15-18,+7.11,111.3,92,104.2,121,64.7,313,-.046,294,+7.66,71,111.2,66,103.5,76,-0.21,182
|
||||||
|
97,Akron 13,MAC,28-6,+6.93,113.9,66,107.0,181,71.4,16,+.071,38,-4.00,271,104.9,264,108.9,250,+1.73,123
|
||||||
|
98,Providence,BE,12-20,+6.92,112.1,87,105.2,139,66.3,232,-.097,356,+9.70,58,111.9,57,102.2,57,-0.56,195
|
||||||
|
99,Oklahoma St.,B12,16-17,+6.48,108.2,146,101.7,80,71.6,14,+.079,29,+11.34,49,112.5,46,101.2,47,-3.03,267
|
||||||
|
100,Georgia Tech,ACC,17-17,+6.10,107.3,162,101.2,74,68.7,99,-.001,184,+6.34,78,110.5,76,104.2,89,-7.94,348
|
||||||
|
101,UAB,Amer,23-12,+6.09,116.2,43,110.2,245,69.1,73,-.014,216,-0.32,159,106.5,174,106.8,152,-8.52,351
|
||||||
|
102,Northern Iowa,MVC,20-12,+5.82,109.9,111,104.1,117,65.0,299,-.006,192,+0.09,148,107.2,144,107.1,161,-1.48,220
|
||||||
|
103,Virginia,ACC,15-17,+5.28,110.6,99,105.4,142,61.1,361,+.016,137,+8.74,64,111.2,68,102.4,63,+0.89,141
|
||||||
|
104,Chattanooga,SC,25-9,+5.26,115.3,57,110.1,243,66.5,218,+.052,66,-2.39,207,105.2,249,107.6,181,+0.22,162
|
||||||
|
105,Jacksonville St.,CUSA,23-12,+5.21,110.0,110,104.8,129,64.9,302,+.045,75,+2.27,110,107.5,126,105.2,109,+0.04,171
|
||||||
|
106,UNC Wilmington 14,CAA,27-7,+5.17,112.3,85,107.2,184,65.4,284,+.055,59,-4.55,281,104.9,262,109.5,293,-4.94,309
|
||||||
|
107,Washington,B10,13-18,+5.03,109.1,130,104.1,115,67.7,150,+.011,151,+12.77,35,113.7,31,100.9,41,-4.22,299
|
||||||
|
108,Loyola Chicago,A10,22-11,+4.72,107.2,165,102.5,94,66.9,205,+.067,43,+0.35,141,106.5,172,106.2,139,-9.04,354
|
||||||
|
109,North Alabama,ASun,24-11,+4.70,111.3,94,106.6,169,66.8,213,-.003,188,-5.00,291,105.0,257,110.0,329,-3.04,268
|
||||||
|
110,California,ACC,14-19,+4.67,111.3,93,106.6,172,67.5,162,-.038,280,+6.83,75,111.1,72,104.2,92,-1.68,229
|
||||||
|
111,Utah Valley,WAC,25-8,+4.54,106.8,176,102.2,91,68.0,134,+.089,21,-1.83,185,105.1,255,106.9,157,+0.78,142
|
||||||
|
112,Syracuse,ACC,14-19,+4.44,110.4,105,106.0,153,68.2,123,+.026,111,+8.67,66,111.8,61,103.1,72,+2.57,102
|
||||||
|
113,South Alabama,SB,21-11,+4.43,107.5,155,103.1,99,63.1,353,-.042,288,-3.82,267,104.5,280,108.3,219,-2.83,256
|
||||||
|
114,George Washington,A10,21-12,+4.43,107.9,150,103.5,103,66.8,211,-.023,248,-2.21,201,104.6,277,106.8,150,-11.42,363
|
||||||
|
115,DePaul,BE,14-19,+4.30,109.6,116,105.3,141,66.9,203,-.038,278,+8.35,67,110.6,75,102.3,59,-9.50,357
|
||||||
|
116,Florida Atlantic,Amer,18-16,+4.28,112.6,80,108.3,205,68.8,90,-.028,259,+2.80,103,108.4,105,105.6,116,+4.52,62
|
||||||
|
117,Kent St.,MAC,23-11,+4.23,105.9,198,101.7,82,66.3,229,+.027,110,-3.03,235,106.0,204,109.0,263,+2.12,112
|
||||||
|
118,CSUN,BW,22-11,+4.22,108.9,136,104.7,127,72.3,8,+.013,143,-2.07,197,105.5,236,107.5,178,-5.39,321
|
||||||
|
119,St. Bonaventure,A10,22-12,+4.18,105.3,209,101.1,73,64.6,318,+.047,73,+1.21,123,107.4,134,106.2,138,-4.26,300
|
||||||
|
120,Middle Tennessee,CUSA,22-12,+4.17,109.2,128,105.0,134,68.3,117,+.074,34,+2.87,102,107.5,125,104.6,98,+2.94,93
|
||||||
|
121,Saint Louis,A10,19-15,+4.15,109.3,127,105.1,137,67.6,160,-.001,180,+3.73,99,108.3,106,104.5,97,-0.28,185
|
||||||
|
122,Wofford 15,SC,19-15,+4.05,113.6,69,109.5,231,64.1,333,-.032,266,-0.80,163,106.8,162,107.6,180,+5.17,47
|
||||||
|
123,Northern Colorado,BSky,25-9,+3.93,112.0,88,108.1,203,68.7,94,+.042,78,-4.17,276,105.5,230,109.7,312,+2.12,110
|
||||||
|
124,Washington St.,WCC,19-14,+3.93,111.7,91,107.7,195,70.6,32,+.076,33,+4.22,96,109.4,87,105.2,107,+2.53,103
|
||||||
|
125,Louisiana Tech,CUSA,20-12,+3.88,109.0,135,105.1,136,64.5,324,+.031,97,+1.11,124,106.2,195,105.1,104,-2.31,243
|
||||||
|
126,Samford,SC,22-11,+3.87,112.6,77,108.7,215,70.9,25,+.019,129,-2.05,195,105.9,210,107.9,199,-0.12,177
|
||||||
|
127,N.C. State,ACC,12-19,+3.84,107.6,154,103.8,108,65.3,289,-.079,346,+7.05,72,111.1,69,104.1,86,-5.15,313
|
||||||
|
128,Belmont,MVC,22-11,+3.41,112.4,83,109.0,221,70.6,31,+.081,28,+0.07,149,107.0,153,106.9,155,-1.56,226
|
||||||
|
129,St. Thomas,Sum,24-10,+3.40,113.6,68,110.2,246,67.8,139,-.010,208,-3.53,259,106.8,158,110.3,343,-0.54,193
|
||||||
|
130,Kennesaw St.,CUSA,19-14,+3.37,107.2,168,103.8,111,70.3,43,+.035,88,+3.34,100,107.3,137,104.0,84,+3.20,89
|
||||||
|
131,Cornell,Ivy,18-11,+3.32,114.9,61,111.6,273,70.9,26,-.033,268,-2.60,221,105.6,226,108.2,217,-2.56,250
|
||||||
|
132,New Mexico St.,CUSA,17-15,+3.13,104.4,218,101.3,75,64.8,308,-.037,275,+2.57,106,107.0,150,104.5,96,+1.79,121
|
||||||
|
133,North Dakota St.,Sum,21-11,+2.74,115.4,55,112.6,297,64.9,303,-.006,193,-3.07,238,107.5,123,110.6,350,-0.21,183
|
||||||
|
134,South Dakota St.,Sum,20-12,+2.61,109.7,115,107.1,182,69.0,81,-.018,230,-1.79,183,108.0,112,109.8,315,+4.14,67
|
||||||
|
135,Wichita St.,Amer,19-15,+2.58,107.0,172,104.5,123,68.7,95,+.034,89,+1.92,113,107.6,120,105.7,123,+1.06,137
|
||||||
|
136,Duquesne,A10,13-19,+2.53,106.0,196,103.5,104,65.2,290,-.127,361,+1.80,115,107.0,154,105.2,105,-1.94,230
|
||||||
|
137,Tulane,Amer,19-14,+2.21,108.8,137,106.6,171,66.7,214,-.033,271,-1.14,170,106.5,173,107.7,189,-6.53,337
|
||||||
|
138,Robert Morris 15,Horz,26-8,+2.16,107.0,171,104.9,131,67.8,140,+.088,23,-6.13,304,104.6,275,110.7,355,-8.53,352
|
||||||
|
139,Furman,SC,25-10,+2.10,110.1,108,108.0,202,65.9,258,+.112,13,-1.06,168,106.6,169,107.6,187,+0.48,153
|
||||||
|
140,Illinois St.,MVC,19-14,+2.02,112.0,89,110.0,241,65.7,269,-.015,218,+0.15,147,107.5,121,107.4,173,-1.50,222
|
||||||
|
141,Murray St.,MVC,16-17,+1.95,106.5,180,104.6,124,64.9,305,-.050,308,+1.52,117,107.6,119,106.1,133,+1.33,134
|
||||||
|
142,East Tennessee St.,SC,19-13,+1.83,106.7,178,104.9,132,65.1,295,-.069,331,-3.39,250,105.9,205,109.3,286,-3.18,271
|
||||||
|
143,Milwaukee,Horz,21-11,+1.83,107.3,161,105.5,147,68.7,97,+.004,170,-3.06,237,106.1,196,109.2,272,+2.50,104
|
||||||
|
144,UNC Greensboro,SC,20-12,+1.70,107.1,170,105.4,144,63.8,340,-.016,222,-2.36,206,106.6,167,109.0,257,+1.49,130
|
||||||
|
145,Seattle,WAC,14-18,+1.58,104.0,221,102.4,93,65.9,253,-.138,364,-0.04,152,105.0,260,105.0,103,+4.95,54
|
||||||
|
146,Davidson,A10,17-16,+1.33,109.6,117,108.3,207,65.9,257,-.020,235,+0.27,142,106.4,183,106.1,135,-4.76,307
|
||||||
|
147,UC Santa Barbara,BW,21-13,+1.20,108.6,141,107.4,190,65.5,279,-.001,181,-2.69,226,104.8,265,107.5,179,-8.72,353
|
||||||
|
148,Bryant 15,AE,23-11,+1.16,106.8,177,105.6,148,72.5,7,-.004,190,-7.04,318,103.0,314,110.0,326,+0.40,156
|
||||||
|
149,Miami OH,MAC,25-9,+1.10,108.0,149,106.9,178,69.0,83,+.086,25,-5.34,295,103.9,293,109.2,276,-3.23,273
|
||||||
|
150,Radford,BSth,20-13,+0.71,110.4,104,109.7,237,62.8,356,+.059,54,-2.03,191,106.8,155,108.9,247,+1.49,129
|
||||||
|
151,Towson,CAA,22-11,+0.69,106.9,175,106.2,159,63.6,347,+.094,19,-2.04,194,105.9,208,108.0,201,+3.55,82
|
||||||
|
152,Rhode Island,A10,18-13,+0.68,108.0,148,107.4,187,70.4,37,+.016,136,-0.84,164,105.7,217,106.6,147,-6.61,341
|
||||||
|
153,Charleston,CAA,24-9,+0.62,106.1,192,105.5,145,70.1,50,+.141,3,-2.67,225,105.9,211,108.5,232,+0.11,167
|
||||||
|
154,UTEP,CUSA,18-15,+0.55,105.4,207,104.8,130,68.8,93,+.028,105,+2.65,104,107.1,147,104.4,95,+0.71,147
|
||||||
|
155,Western Kentucky,CUSA,17-15,+0.52,103.5,233,103.0,98,71.7,12,+.034,90,+2.44,108,106.8,163,104.3,93,+2.12,111
|
||||||
|
156,Loyola Marymount,WCC,17-15,+0.49,104.2,220,103.7,106,67.2,187,+.062,48,+2.60,105,108.7,95,106.1,132,-0.37,188
|
||||||
|
157,Nebraska Omaha 15,Sum,22-12,+0.47,111.1,97,110.6,254,67.8,145,+.071,37,-2.52,214,106.8,160,109.3,278,+0.40,157
|
||||||
|
158,UC Riverside,BW,21-13,+0.40,109.8,113,109.4,229,67.1,191,+.138,4,+2.10,111,107.8,115,105.7,122,+8.65,27
|
||||||
|
159,James Madison,SB,20-12,+0.35,110.6,100,110.2,248,64.9,304,+.069,42,-1.11,169,105.7,220,106.8,153,+3.91,70
|
||||||
|
160,Texas A&M Corpus Chris,Slnd,20-14,+0.30,106.0,194,105.7,152,67.4,172,-.028,261,-3.66,260,104.2,288,107.8,197,+3.88,71
|
||||||
|
161,Montana 14,BSky,25-9,+0.27,110.8,98,110.5,252,67.1,193,+.186,1,-2.31,203,106.4,178,108.8,239,+8.58,28
|
||||||
|
162,Virginia Tech,ACC,13-19,+0.22,106.5,181,106.3,164,65.1,293,+.030,102,+7.04,74,110.9,73,103.9,83,-1.17,213
|
||||||
|
163,Purdue Fort Wayne,Horz,19-13,+0.02,109.1,131,109.1,224,69.8,58,-.015,219,-3.50,257,105.3,243,108.8,243,+0.77,143
|
||||||
|
164,Winthrop,BSth,23-11,+0.01,108.4,143,108.4,209,72.7,6,+.078,32,-3.74,263,105.9,207,109.7,309,-3.51,279
|
||||||
|
165,Lamar,Slnd,20-13,-0.08,102.1,253,102.2,88,65.4,282,+.047,72,-1.66,180,105.6,229,107.2,166,+4.19,66
|
||||||
|
166,Marshall,SB,20-13,-0.26,106.4,184,106.7,173,68.7,101,+.002,172,-4.03,273,105.5,233,109.5,297,-4.28,303
|
||||||
|
167,Cleveland St.,Horz,21-12,-0.26,103.8,226,104.1,114,65.3,288,+.032,95,-4.22,278,104.9,263,109.1,269,+0.16,164
|
||||||
|
168,Appalachian St.,SB,17-14,-0.37,101.2,275,101.6,77,63.2,351,-.028,262,-3.01,233,106.2,193,109.2,275,+3.22,88
|
||||||
|
169,San Jose St.,MWC,15-19,-0.41,107.2,169,107.6,193,66.4,227,+.009,155,+4.46,94,108.6,98,104.1,88,-3.42,277
|
||||||
|
170,Cal Baptist,WAC,17-15,-0.43,105.7,202,106.2,157,65.7,271,-.013,215,-1.85,186,103.7,295,105.6,118,-0.16,179
|
||||||
|
171,Temple,Amer,17-15,-0.56,110.0,109,110.6,253,68.7,102,+.017,134,-0.15,156,106.6,165,106.8,151,-2.02,234
|
||||||
|
172,Nicholls,Slnd,20-13,-0.70,105.7,203,106.4,167,68.2,127,+.054,61,-1.75,182,104.5,279,106.3,140,+8.17,31
|
||||||
|
173,Florida Gulf Coast,ASun,18-14,-0.77,108.1,147,108.9,219,65.2,292,-.026,254,-3.87,269,105.6,224,109.5,296,+3.31,85
|
||||||
|
174,Sam Houston St.,CUSA,13-19,-0.78,110.4,103,111.2,266,67.6,158,-.040,282,+4.33,95,107.3,141,102.9,69,+7.14,38
|
||||||
|
175,Illinois Chicago,MVC,17-14,-0.81,107.0,173,107.8,196,69.1,74,+.066,44,+1.36,121,107.3,139,105.9,127,+2.40,106
|
||||||
|
176,East Carolina,Amer,19-14,-0.97,107.0,174,108.0,200,66.6,215,+.039,81,-1.03,166,107.0,151,108.0,204,-5.25,319
|
||||||
|
177,Oakland,Horz,16-18,-1.28,107.2,167,108.5,210,63.9,338,-.007,196,-0.12,155,107.5,128,107.6,183,+13.78,5
|
||||||
|
178,Princeton,Ivy,19-11,-1.43,105.3,208,106.8,174,66.5,220,+.118,10,-0.96,165,107.2,143,108.1,215,+0.05,170
|
||||||
|
179,Jacksonville,ASun,19-13,-1.49,101.8,260,103.3,100,67.4,170,+.062,47,-2.57,218,107.4,136,109.9,320,+6.71,43
|
||||||
|
180,Norfolk St. 16,MEAC,24-10,-1.50,107.2,166,108.7,214,66.4,226,+.056,57,-7.17,325,103.1,306,110.3,336,+3.10,91
|
||||||
|
181,Eastern Kentucky,ASun,18-14,-1.69,109.7,114,111.4,269,67.6,156,+.019,126,-2.85,230,105.9,209,108.8,240,+4.60,61
|
||||||
|
182,Boston College,ACC,12-19,-1.81,105.4,206,107.2,185,66.8,212,+.018,133,+5.42,88,109.6,86,104.2,90,-6.73,342
|
||||||
|
183,Central Connecticut,NEC,25-7,-1.83,99.8,297,101.6,79,65.8,265,+.023,120,-11.85,364,100.3,363,112.1,364,-2.87,261
|
||||||
|
184,Cal Poly,BW,16-19,-1.95,109.4,125,111.3,267,74.5,3,-.006,195,+1.08,125,106.3,189,105.2,108,+5.08,52
|
||||||
|
185,Drexel,CAA,18-15,-2.06,104.0,223,106.0,154,63.0,355,-.052,312,-4.58,283,105.4,241,109.9,323,-5.23,316
|
||||||
|
186,Merrimack,MAAC,18-15,-2.06,99.9,296,102.0,85,64.5,323,-.002,185,-5.27,293,104.1,289,109.3,285,+7.21,37
|
||||||
|
187,Montana St.,BSky,15-18,-2.16,105.2,210,107.4,191,65.9,263,-.063,326,-2.07,196,106.0,199,108.1,212,+4.81,57
|
||||||
|
188,Rice,Amer,13-19,-2.16,106.4,186,108.5,211,65.3,286,-.084,347,-2.04,192,105.4,238,107.4,174,-7.86,346
|
||||||
|
189,Wyoming,MWC,12-20,-2.27,103.4,234,105.7,151,64.6,316,-.027,257,+4.73,93,109.4,89,104.6,99,-3.00,266
|
||||||
|
190,UTSA,Amer,12-19,-2.36,107.3,163,109.6,234,69.9,55,-.051,311,+1.50,118,107.5,124,106.0,128,+1.50,128
|
||||||
|
191,South Carolina St.,MEAC,20-13,-2.40,102.6,247,105.0,135,69.2,70,-.050,309,-8.57,353,102.7,323,111.3,361,+0.39,158
|
||||||
|
192,Miami FL,ACC,7-24,-2.45,113.5,70,116.0,340,67.5,166,-.130,362,+7.72,69,110.0,80,102.3,60,-2.35,244
|
||||||
|
193,Southern Illinois,MVC,14-19,-2.67,105.7,204,108.3,208,67.9,138,-.025,252,+1.29,122,108.4,104,107.1,159,+2.47,105
|
||||||
|
194,Southeastern Louisiana,Slnd,18-14,-2.70,104.7,213,107.4,189,67.0,201,+.011,149,-3.80,265,104.6,272,108.4,228,-0.47,190
|
||||||
|
195,Texas St.,SB,16-16,-2.73,109.6,122,112.3,285,65.9,255,-.041,284,-2.57,219,104.4,281,107.0,158,-0.42,189
|
||||||
|
196,South Florida,Amer,13-19,-2.76,103.5,232,106.3,166,68.3,119,-.047,295,+0.45,140,108.2,108,107.7,193,-5.43,324
|
||||||
|
197,Ohio,MAC,16-16,-2.77,106.3,190,109.0,222,70.3,42,-.064,327,-3.38,248,106.3,190,109.7,307,-1.39,219
|
||||||
|
198,Central Michigan,MAC,14-17,-2.78,105.5,205,108.3,204,67.2,188,-.091,351,-2.00,190,106.4,185,108.4,222,+11.66,12
|
||||||
|
199,Elon,CAA,17-15,-2.97,107.4,156,110.4,251,65.1,294,-.026,255,-3.40,252,105.0,256,108.5,230,-0.49,191
|
||||||
|
200,UNC Asheville,BSth,21-11,-3.03,109.0,134,112.1,279,68.2,126,+.123,7,-3.22,242,106.5,177,109.7,310,-0.53,192
|
||||||
|
201,Indiana St.,MVC,14-18,-3.15,109.1,129,112.3,282,72.2,9,-.044,291,+0.02,150,106.5,175,106.4,143,-3.99,288
|
||||||
|
202,Youngstown St.,Horz,21-13,-3.20,102.2,252,105.4,143,69.2,69,+.058,56,-4.71,285,105.2,247,109.9,321,-5.91,330
|
||||||
|
203,Southeast Missouri,OVC,21-12,-3.23,101.9,256,105.2,138,68.9,87,+.023,122,-7.34,327,101.8,337,109.2,270,+3.86,72
|
||||||
|
204,Queens,ASun,19-14,-3.32,106.3,189,109.6,233,68.4,112,+.052,68,-3.49,256,105.7,218,109.2,274,+0.69,148
|
||||||
|
205,Dartmouth,Ivy,14-14,-3.35,100.2,294,103.5,105,71.0,24,-.057,319,-3.88,270,106.0,200,109.9,319,-6.55,338
|
||||||
|
206,Seton Hall,BE,7-25,-3.47,98.7,315,102.2,90,64.5,322,-.042,289,+9.95,57,112.1,54,102.2,56,-2.86,258
|
||||||
|
207,Portland St.,BSky,19-13,-3.55,100.5,288,104.1,118,68.5,110,+.015,139,-4.60,284,105.8,216,110.4,344,-1.26,216
|
||||||
|
208,Brown,Ivy,14-13,-3.69,103.1,236,106.8,176,65.8,264,+.022,123,-3.72,262,105.7,221,109.4,289,-5.60,327
|
||||||
|
209,Northeastern,CAA,17-15,-3.73,103.6,230,107.4,188,67.3,176,+.019,127,-4.05,274,104.0,291,108.1,206,-3.64,281
|
||||||
|
210,Valparaiso,MVC,15-19,-3.77,105.9,197,109.7,236,68.0,131,-.001,182,+0.24,144,106.6,170,106.3,141,-4.20,298
|
||||||
|
211,Longwood,BSth,18-14,-3.81,106.0,195,109.8,239,69.0,79,+.002,173,-4.01,272,106.3,188,110.3,339,-4.12,294
|
||||||
|
212,Idaho St.,BSky,15-15,-3.90,105.9,199,109.8,238,66.0,248,-.059,321,-3.82,266,105.5,234,109.3,283,+2.07,114
|
||||||
|
213,Quinnipiac,MAAC,20-13,-3.97,102.1,254,106.0,155,71.6,13,+.031,99,-6.84,315,102.1,331,108.9,249,-0.21,181
|
||||||
|
214,Hampton,CAA,17-16,-4.16,103.7,227,107.9,198,65.6,275,-.003,189,-2.56,216,106.4,184,108.9,253,+0.11,166
|
||||||
|
215,Pepperdine,WCC,13-22,-4.25,106.4,185,110.6,255,69.1,76,-.022,245,+2.88,101,108.1,110,105.2,110,-4.19,297
|
||||||
|
216,SIUE 16,OVC,22-11,-4.25,102.0,255,106.2,160,65.9,261,+.052,67,-9.00,357,101.4,349,110.4,345,-3.36,276
|
||||||
|
217,Massachusetts,A10,12-20,-4.40,102.2,250,106.6,170,70.3,44,-.050,305,+0.66,137,106.0,201,105.4,114,-3.59,280
|
||||||
|
218,Abilene Christian,WAC,16-16,-4.45,97.7,329,102.1,87,69.4,67,+.036,86,-1.18,171,104.4,284,105.6,119,+0.99,140
|
||||||
|
219,Hofstra,CAA,15-18,-4.45,98.0,325,102.4,92,63.6,348,-.047,296,-3.09,239,105.0,258,108.1,211,+1.98,118
|
||||||
|
220,Maine,AE,20-14,-4.50,100.1,295,104.6,125,65.9,254,+.004,168,-7.09,321,103.5,298,110.6,352,-3.84,284
|
||||||
|
221,Campbell,CAA,15-17,-4.52,101.6,268,106.2,156,65.9,262,-.058,320,-4.19,277,105.1,252,109.3,279,-4.18,296
|
||||||
|
222,Wright St.,Horz,15-18,-4.56,109.6,121,114.1,315,67.5,169,-.060,322,-3.23,244,106.1,198,109.3,280,+0.73,146
|
||||||
|
223,La Salle,A10,14-19,-4.90,103.7,229,108.6,212,68.6,105,+.046,74,+1.98,112,107.3,138,105.3,112,-1.36,218
|
||||||
|
224,UT Arlington,WAC,13-18,-4.96,107.4,159,112.3,286,67.6,161,-.035,272,-1.32,177,104.1,290,105.4,113,-0.13,178
|
||||||
|
225,Little Rock,OVC,19-14,-4.98,99.2,306,104.2,120,66.9,202,+.021,124,-7.68,337,101.8,340,109.4,292,+2.29,107
|
||||||
|
226,Hawaii,BW,15-16,-5.05,103.0,238,108.0,201,65.9,260,+.025,116,-1.20,173,105.9,212,107.1,160,-2.37,245
|
||||||
|
227,Bucknell,PL,18-15,-5.08,102.6,246,107.7,194,67.3,181,+.009,154,-7.55,334,103.0,310,110.6,351,+0.38,159
|
||||||
|
228,Northwestern St.,Slnd,16-16,-5.17,102.7,244,107.9,197,64.0,336,+.079,30,-0.20,158,106.2,192,106.4,142,+11.70,11
|
||||||
|
229,William & Mary,CAA,17-15,-5.29,107.3,160,112.6,296,71.3,19,+.048,71,-2.76,228,105.4,240,108.1,214,-1.17,214
|
||||||
|
230,Presbyterian,BSth,14-18,-5.35,104.5,215,109.9,240,64.2,331,-.036,273,-2.50,212,107.1,149,109.6,300,-0.72,199
|
||||||
|
231,Fordham,A10,12-21,-5.56,106.3,188,111.9,278,69.5,65,-.003,187,+1.48,119,106.4,180,105.0,100,-3.26,275
|
||||||
|
232,Delaware,CAA,16-20,-5.57,109.4,124,115.0,323,70.4,41,-.017,224,-2.93,232,104.7,270,107.6,185,-1.49,221
|
||||||
|
233,Northern Kentucky,Horz,17-16,-5.62,102.7,245,108.3,206,66.1,242,+.041,79,-2.75,227,106.0,202,108.8,241,+3.39,84
|
||||||
|
234,Southern,SWAC,20-12,-5.68,99.0,310,104.7,128,68.5,108,+.053,65,-7.96,341,101.5,348,109.4,291,+11.37,13
|
||||||
|
235,Toledo,MAC,18-15,-5.75,112.2,86,118.0,356,68.0,135,+.117,11,-1.89,187,106.2,194,108.1,209,+3.85,74
|
||||||
|
236,Manhattan,MAAC,17-13,-5.82,108.5,142,114.3,317,67.5,164,+.006,160,-8.49,350,101.2,353,109.7,306,-5.92,331
|
||||||
|
237,Kansas City,Sum,13-20,-5.95,100.4,290,106.3,165,64.5,321,-.108,358,-2.50,211,107.9,113,110.4,346,+0.49,152
|
||||||
|
238,Mount St. Mary's 16,MAAC,23-12,-6.04,101.1,279,107.1,183,67.5,165,+.147,2,-7.16,324,102.0,333,109.1,267,-1.16,212
|
||||||
|
239,UT Rio Grande Valley,Slnd,16-15,-6.14,104.8,211,110.9,261,70.4,35,+.007,156,-3.46,253,104.2,287,107.7,192,-0.37,187
|
||||||
|
240,South Dakota,Sum,19-14,-6.16,109.3,126,115.4,333,74.6,2,+.101,16,-3.33,246,107.0,152,110.3,340,-4.01,289
|
||||||
|
241,Richmond,A10,10-22,-6.22,103.0,239,109.2,227,63.8,345,-.026,253,+2.34,109,107.6,118,105.3,111,-2.81,255
|
||||||
|
242,Vermont,AE,21-12,-6.26,99.2,305,105.5,146,62.4,358,+.118,9,-7.08,320,103.1,308,110.1,332,-0.88,203
|
||||||
|
243,Missouri St.,MVC,9-23,-6.36,101.1,280,107.4,192,63.8,339,-.104,357,+0.91,133,108.7,97,107.7,194,-0.01,172
|
||||||
|
244,UMass Lowell,AE,17-15,-6.37,108.6,140,115.0,325,68.6,104,-.021,242,-7.44,331,101.1,354,108.6,234,-3.89,286
|
||||||
|
245,Cal St. Bakersfield,BW,14-19,-6.37,106.2,191,112.6,294,66.0,246,-.020,236,-1.04,167,105.9,213,106.9,156,-2.18,239
|
||||||
|
246,Incarnate Word,Slnd,17-16,-6.50,106.1,193,112.6,295,64.2,330,-.018,228,-5.34,294,103.1,307,108.4,224,-5.13,312
|
||||||
|
247,Northern Arizona,BSky,18-15,-6.58,104.2,219,110.8,259,66.9,206,+.004,167,-5.41,296,105.1,253,110.5,349,-4.82,308
|
||||||
|
248,Jackson St.,SWAC,16-18,-6.59,100.3,291,106.9,179,68.3,115,+.021,125,-4.77,287,103.6,297,108.4,221,+16.36,3
|
||||||
|
249,American 16,PL,22-13,-6.69,102.4,248,109.1,223,63.6,349,+.123,6,-7.15,323,103.1,305,110.3,337,+1.59,126
|
||||||
|
250,Georgia Southern,SB,17-16,-6.79,102.8,243,109.6,232,69.4,66,+.064,45,-4.76,286,104.7,271,109.4,290,-2.96,262
|
||||||
|
251,UC Davis,BW,15-17,-6.83,97.0,335,103.8,110,67.0,200,+.070,39,+0.16,146,107.4,132,107.3,168,+1.92,119
|
||||||
|
252,Tennessee St.,OVC,17-16,-7.25,102.3,249,109.5,230,70.4,40,-.068,329,-8.44,349,100.9,358,109.4,287,-0.28,184
|
||||||
|
253,FIU,CUSA,10-23,-7.32,96.7,337,104.0,113,68.4,114,-.050,306,+0.47,139,107.2,142,106.7,149,-6.33,335
|
||||||
|
254,Siena,MAAC,14-18,-7.40,102.8,241,110.2,247,67.2,184,-.067,328,-6.76,313,102.8,318,109.6,303,-1.07,206
|
||||||
|
255,Charlotte,Amer,11-22,-7.74,104.5,216,112.3,284,64.8,306,-.009,205,-0.20,157,107.4,133,107.6,186,-4.14,295
|
||||||
|
256,Harvard,Ivy,12-15,-7.76,101.2,277,108.9,220,65.5,276,+.054,62,-2.40,208,105.5,231,107.9,200,-3.09,270
|
||||||
|
257,Iona,MAAC,17-17,-7.82,98.7,316,106.5,168,68.1,129,+.014,141,-7.11,322,102.7,321,109.8,316,-2.87,259
|
||||||
|
258,Evansville,MVC,11-21,-7.94,98.3,320,106.2,161,66.9,209,-.021,244,+1.07,126,108.2,109,107.1,162,+0.54,150
|
||||||
|
259,Fresno St.,MWC,6-26,-7.96,100.7,284,108.7,213,70.6,33,-.008,200,+5.65,85,109.7,84,104.0,85,-2.20,240
|
||||||
|
260,North Florida,ASun,15-17,-7.96,109.6,119,117.5,350,72.2,10,+.049,69,-2.43,209,106.4,186,108.8,242,+6.87,42
|
||||||
|
261,Georgia St.,SB,14-19,-7.98,106.6,179,114.5,320,68.9,84,+.013,142,-3.10,240,105.2,248,108.3,218,-1.60,228
|
||||||
|
262,Sacred Heart,MAAC,15-18,-8.00,104.8,212,112.8,302,70.2,47,-.049,300,-7.44,330,101.9,335,109.3,284,-2.87,260
|
||||||
|
263,Mercer,SC,14-19,-8.05,99.2,304,107.3,186,71.1,21,-.014,217,-2.49,210,106.3,191,108.7,238,-1.56,224
|
||||||
|
264,Gardner Webb,BSth,11-20,-8.09,103.1,237,111.2,265,69.0,82,-.011,210,-2.22,202,107.5,127,109.7,311,+0.06,168
|
||||||
|
265,Colgate,PL,14-19,-8.10,104.5,214,112.6,298,67.2,185,-.057,318,-5.79,301,103.5,300,109.2,277,+2.62,99
|
||||||
|
266,North Dakota,Sum,12-21,-8.21,107.7,153,115.9,337,69.0,80,-.020,238,-0.63,161,108.1,111,108.7,236,+2.69,96
|
||||||
|
267,Tulsa,Amer,13-20,-8.52,101.5,271,110.0,242,66.2,235,-.044,292,-1.32,176,106.6,168,107.9,198,-9.50,358
|
||||||
|
268,Monmouth,CAA,13-20,-8.56,103.9,224,112.5,293,67.1,194,+.028,108,-1.82,184,105.5,235,107.3,170,+2.29,108
|
||||||
|
269,Portland,WCC,12-20,-8.88,105.9,201,114.7,321,68.3,116,+.033,91,+1.54,116,107.7,117,106.1,136,-4.02,290
|
||||||
|
270,Marist,MAAC,20-10,-9.02,97.2,333,106.2,158,64.1,332,+.107,15,-10.25,361,100.7,360,110.9,358,-11.79,364
|
||||||
|
271,Ball St.,MAC,14-17,-9.07,103.6,231,112.7,299,66.4,225,-.056,316,-6.13,303,104.3,285,110.5,348,-6.58,339
|
||||||
|
272,Albany,AE,17-16,-9.14,103.2,235,112.4,288,67.5,163,+.018,131,-7.50,332,102.5,326,110.0,330,-4.70,306
|
||||||
|
273,Alabama St. 16,SWAC,20-15,-9.24,101.4,273,110.7,256,67.8,142,+.061,51,-8.80,355,100.7,359,109.5,298,+6.24,45
|
||||||
|
274,Austin Peay,ASun,14-19,-9.27,101.9,258,111.1,264,66.1,245,+.025,118,-1.90,188,107.8,114,109.8,313,+4.85,56
|
||||||
|
275,Navy,PL,15-19,-9.36,102.2,251,111.6,271,67.0,198,-.040,283,-8.18,346,101.8,336,110.0,328,-6.45,336
|
||||||
|
276,Eastern Michigan,MAC,16-16,-9.39,104.5,217,113.9,312,67.2,186,+.115,12,-4.07,275,105.4,237,109.5,295,-3.18,272
|
||||||
|
277,Stephen F. Austin,Slnd,14-17,-9.46,95.1,348,104.6,126,67.4,171,+.055,60,-2.63,224,104.6,278,107.2,165,+1.07,136
|
||||||
|
278,Houston Christian,Slnd,12-20,-9.48,100.6,285,110.1,244,64.8,312,-.006,191,-2.58,220,104.7,269,107.3,169,+5.17,48
|
||||||
|
279,Idaho,BSky,14-19,-9.59,107.2,164,116.8,345,66.3,231,+.032,96,-2.78,229,105.3,242,108.1,208,+1.58,127
|
||||||
|
280,Columbia,Ivy,12-15,-9.61,106.3,187,115.9,339,70.7,30,-.017,225,-5.10,292,104.6,276,109.7,308,-10.70,361
|
||||||
|
281,Texas Southern,SWAC,15-17,-9.64,96.6,338,106.2,162,69.9,53,-.049,301,-7.29,326,101.8,338,109.1,265,+12.40,9
|
||||||
|
282,Old Dominion,SB,15-20,-10.11,100.2,292,110.3,250,66.0,249,+.033,92,-3.76,264,105.1,254,108.9,245,-2.63,252
|
||||||
|
283,Pacific,WCC,9-24,-10.26,101.5,272,111.7,277,66.5,223,-.033,269,+2.45,107,108.6,101,106.1,134,-0.19,180
|
||||||
|
284,Lehigh,PL,11-19,-10.37,100.6,286,110.9,262,67.3,179,-.097,355,-6.47,310,103.0,311,109.5,294,+3.31,86
|
||||||
|
285,Tarleton St.,WAC,12-20,-10.38,93.0,359,103.4,102,65.5,277,+.025,112,+1.45,120,106.4,181,105.0,101,+7.30,35
|
||||||
|
286,LIU,NEC,17-16,-10.40,94.9,352,105.3,140,64.8,309,-.003,186,-10.75,363,100.9,357,111.7,363,-2.65,253
|
||||||
|
287,Bethune Cookman,SWAC,17-16,-10.57,97.3,332,107.9,199,69.1,77,+.119,8,-5.60,299,102.8,319,108.4,225,+9.00,22
|
||||||
|
288,Bowling Green,MAC,14-18,-10.58,99.1,307,109.7,235,68.7,96,+.004,164,-6.25,306,104.4,283,110.7,354,-6.60,340
|
||||||
|
289,VMI,SC,15-19,-10.62,100.2,293,110.8,258,68.2,125,+.027,109,-2.60,222,106.4,182,109.0,259,-2.42,246
|
||||||
|
290,Western Michigan,MAC,12-20,-10.64,101.6,269,112.3,283,67.8,141,-.008,201,-3.40,251,105.7,223,109.1,264,+0.05,169
|
||||||
|
291,Lafayette,PL,13-20,-10.86,98.0,324,108.8,217,66.2,241,-.077,344,-8.44,348,102.9,316,111.3,362,-5.24,318
|
||||||
|
292,Tennessee Martin,OVC,14-19,-10.93,101.8,259,112.7,301,66.3,233,-.042,286,-7.35,329,101.6,344,108.9,252,+2.64,97
|
||||||
|
293,Southern Miss,SB,11-22,-11.02,97.8,327,108.8,216,70.8,28,-.007,199,-2.14,199,105.2,246,107.4,172,+0.46,154
|
||||||
|
294,Penn,Ivy,8-19,-11.03,104.0,222,115.0,326,66.9,208,-.011,211,-1.49,179,105.9,206,107.4,175,-1.60,227
|
||||||
|
295,Eastern Washington,BSky,10-22,-11.11,101.8,262,112.9,304,66.9,207,+.002,174,-1.24,175,107.1,146,108.3,220,+6.32,44
|
||||||
|
296,Southern Utah,WAC,12-19,-11.16,98.2,323,109.3,228,68.9,86,+.032,94,-1.33,178,104.7,268,106.1,131,+0.33,160
|
||||||
|
297,San Diego,WCC,6-27,-11.29,99.4,303,110.7,257,71.1,20,-.074,340,+0.94,132,107.5,122,106.6,146,-4.28,302
|
||||||
|
298,Saint Peter's,MAAC,12-16,-11.32,94.9,350,106.3,163,63.9,337,+.007,158,-7.04,319,103.4,301,110.4,347,-0.11,176
|
||||||
|
299,UMBC,AE,13-19,-11.49,106.5,182,118.0,355,70.4,38,-.072,336,-7.55,335,101.6,345,109.1,268,-5.58,326
|
||||||
|
300,Weber St.,BSky,12-22,-11.56,101.1,278,112.7,300,65.6,273,-.011,212,-2.51,213,106.3,187,108.8,244,+2.84,95
|
||||||
|
301,Utah Tech,WAC,7-26,-11.83,101.8,261,113.6,309,67.5,167,-.062,323,-0.06,153,105.1,251,105.2,106,+3.28,87
|
||||||
|
302,Charleston Southern,BSth,10-22,-12.00,99.7,299,111.7,275,67.3,178,+.040,80,-0.09,154,108.5,103,108.6,233,+4.42,63
|
||||||
|
303,Tennessee Tech,OVC,15-17,-12.26,100.9,281,113.1,306,67.7,146,+.045,77,-7.80,338,101.5,347,109.3,282,+0.75,145
|
||||||
|
304,Long Beach St.,BW,7-25,-12.43,101.7,266,114.1,314,64.1,334,-.071,334,+0.68,136,106.7,164,106.0,130,+2.07,113
|
||||||
|
305,Boston University,PL,16-16,-12.47,98.9,311,111.4,270,63.1,352,+.061,49,-8.54,352,102.1,330,110.6,353,-5.88,329
|
||||||
|
306,Delaware St.,MEAC,16-14,-12.48,101.7,263,114.2,316,70.2,45,+.054,63,-8.50,351,102.7,324,111.2,360,-1.15,211
|
||||||
|
307,Loyola MD,PL,12-19,-12.51,100.4,289,112.9,305,66.6,216,-.030,265,-8.30,347,101.9,334,110.2,335,-5.31,320
|
||||||
|
308,Fairleigh Dickinson,NEC,13-20,-12.55,98.3,319,110.9,260,69.2,72,-.073,337,-7.96,342,102.0,332,110.0,324,+2.58,101
|
||||||
|
309,Denver,Sum,11-21,-12.63,98.7,317,111.3,268,66.4,224,+.005,163,-1.72,181,108.3,107,110.0,327,-0.56,196
|
||||||
|
310,Saint Francis 16,NEC,16-18,-12.75,99.7,300,112.4,290,66.9,204,+.060,52,-6.86,316,101.6,343,108.5,229,+8.06,32
|
||||||
|
311,Air Force,MWC,4-28,-12.79,98.8,312,111.6,274,64.4,325,-.085,348,+4.83,92,109.2,91,104.4,94,-4.03,291
|
||||||
|
312,Howard,MEAC,12-20,-13.17,103.7,228,116.9,346,70.0,52,-.000,178,-6.65,312,103.3,303,109.9,322,+2.05,116
|
||||||
|
313,Louisiana,SB,12-21,-13.18,97.9,326,111.1,263,66.2,236,+.085,26,-2.14,200,105.0,261,107.1,163,+1.60,125
|
||||||
|
314,Rider,MAAC,14-19,-13.22,101.7,265,115.0,324,64.8,310,+.074,35,-6.38,308,102.8,320,109.2,271,+0.15,165
|
||||||
|
315,IU Indy,Horz,10-22,-13.27,109.6,120,122.9,363,64.8,307,-.073,338,-3.50,258,104.6,273,108.1,213,-2.98,263
|
||||||
|
316,Eastern Illinois,OVC,12-19,-13.32,93.6,357,106.9,177,66.2,239,+.003,171,-5.66,300,103.0,312,108.6,235,+11.33,14
|
||||||
|
317,Florida A&M,SWAC,14-17,-13.70,101.6,270,115.3,330,67.2,189,+.063,46,-6.17,305,101.6,341,107.8,196,+19.72,1
|
||||||
|
318,Grambling St.,SWAC,12-22,-13.92,95.2,345,109.1,225,63.8,341,-.074,339,-8.16,345,101.4,351,109.5,299,+10.60,17
|
||||||
|
319,Binghamton,AE,15-17,-13.95,98.8,313,112.8,303,65.7,270,+.056,58,-7.60,336,102.7,322,110.3,341,-5.56,325
|
||||||
|
320,Niagara,MAAC,11-20,-14.03,101.2,274,115.2,329,65.1,296,-.022,247,-7.97,343,101.2,352,109.2,273,-5.22,315
|
||||||
|
321,Holy Cross,PL,13-19,-14.09,101.7,264,115.8,335,66.0,250,+.038,82,-6.47,309,102.6,325,109.0,261,-0.59,198
|
||||||
|
322,Stonehill,NEC,15-17,-14.25,100.8,282,115.1,327,65.0,300,+.031,98,-9.70,359,100.4,362,110.1,331,-3.00,265
|
||||||
|
323,North Carolina Central,MEAC,14-19,-14.29,102.8,242,117.1,348,66.8,210,+.015,140,-6.84,314,103.5,299,110.3,342,-0.31,186
|
||||||
|
324,Alcorn St.,SWAC,11-21,-14.59,97.6,331,112.2,281,64.7,315,-.010,209,-4.83,290,103.3,302,108.2,216,+13.38,6
|
||||||
|
325,Army,PL,16-15,-14.67,99.7,298,114.4,319,67.6,157,+.132,5,-7.92,340,102.9,315,110.9,357,-5.01,311
|
||||||
|
326,Lindenwood,OVC,16-17,-14.71,94.1,354,108.9,218,69.6,60,+.108,14,-7.50,333,102.5,328,110.0,325,+4.79,59
|
||||||
|
327,Morehead St.,OVC,15-17,-14.74,97.7,328,112.4,292,64.0,335,+.079,31,-6.91,317,101.5,346,108.4,227,+5.09,51
|
||||||
|
328,Coastal Carolina,SB,10-22,-14.78,100.6,287,115.3,331,63.2,350,-.048,299,-4.82,289,103.9,292,108.7,237,-5.95,332
|
||||||
|
329,Oral Roberts,Sum,7-23,-14.95,102.8,240,117.8,354,67.3,182,-.006,194,+0.18,145,108.7,96,108.5,231,+7.37,34
|
||||||
|
330,East Texas A&M,Slnd,5-26,-15.01,96.6,339,111.6,272,67.3,177,-.027,256,-1.18,172,105.7,222,106.9,154,+4.81,58
|
||||||
|
331,Morgan St.,MEAC,14-18,-15.39,101.7,267,117.1,347,70.4,36,+.012,146,-8.82,356,102.3,329,111.1,359,-3.92,287
|
||||||
|
332,Stony Brook,CAA,8-24,-15.72,101.9,257,117.6,351,64.4,326,-.017,226,-3.18,241,104.8,266,108.0,203,-1.02,204
|
||||||
|
333,Fairfield,MAAC,12-20,-15.86,98.2,322,114.1,313,66.0,247,+.070,40,-6.36,307,102.5,327,108.9,246,-3.06,269
|
||||||
|
334,Green Bay,Horz,4-28,-16.04,100.7,283,116.8,344,68.9,85,-.050,307,-1.23,174,106.6,171,107.8,195,+3.64,81
|
||||||
|
335,North Carolina A&T,CAA,7-25,-16.37,97.0,334,113.4,308,69.1,78,+.000,176,-3.04,236,105.0,259,108.0,205,-1.27,217
|
||||||
|
336,Southern Indiana,OVC,10-20,-16.49,98.3,321,114.8,322,67.0,199,-.027,258,-7.82,339,101.8,339,109.6,304,-2.31,242
|
||||||
|
337,Detroit Mercy,Horz,8-24,-16.94,95.2,347,112.1,280,67.0,197,+.028,106,-2.04,193,106.8,156,108.9,248,+1.30,135
|
||||||
|
338,Western Carolina,SC,8-22,-17.16,95.2,346,112.4,289,70.4,39,+.011,150,-0.01,151,107.5,130,107.5,176,+7.29,36
|
||||||
|
339,Buffalo,MAC,9-22,-17.33,96.4,340,113.8,311,70.7,29,+.028,104,-2.92,231,106.0,203,108.9,251,+0.53,151
|
||||||
|
340,USC Upstate,BSth,6-26,-17.48,98.4,318,115.9,338,72.7,5,-.021,241,-0.75,162,107.4,135,108.1,210,+2.62,98
|
||||||
|
341,Bellarmine,ASun,5-26,-17.68,103.8,225,121.5,360,66.2,237,-.109,359,-3.82,268,105.3,244,109.1,266,-1.23,215
|
||||||
|
342,Mercyhurst,NEC,15-16,-17.84,98.8,314,116.6,342,64.7,314,+.099,18,-9.26,358,100.6,361,109.9,318,-1.56,225
|
||||||
|
343,Northern Illinois,MAC,6-25,-17.86,94.5,353,112.3,287,68.9,88,-.091,352,-3.22,243,105.8,215,109.0,260,-0.58,197
|
||||||
|
344,Sacramento St.,BSky,7-25,-18.06,95.3,344,113.3,307,65.5,278,-.020,239,-3.71,261,105.6,228,109.3,281,-1.10,207
|
||||||
|
345,Louisiana Monroe,SB,7-25,-18.09,96.2,341,114.3,318,67.7,149,-.028,260,-3.39,249,104.6,274,108.0,202,-3.65,282
|
||||||
|
346,Wagner,NEC,14-16,-18.12,92.2,360,110.3,249,60.3,363,+.061,50,-10.37,362,99.9,364,110.3,338,-2.04,235
|
||||||
|
347,Western Illinois,OVC,12-19,-18.17,99.1,309,117.2,349,64.3,328,+.037,84,-7.98,344,101.4,350,109.4,288,-2.50,248
|
||||||
|
348,Central Arkansas,ASun,9-24,-18.21,97.7,330,115.9,336,66.4,228,+.036,87,-2.61,223,106.4,179,109.0,262,+2.22,109
|
||||||
|
349,New Orleans,Slnd,4-27,-18.25,99.4,302,117.7,352,69.2,71,-.016,223,+1.03,127,106.8,161,105.7,124,+10.76,16
|
||||||
|
350,West Georgia,ASun,6-25,-18.34,96.9,336,115.2,328,68.0,133,+.012,144,-2.34,205,106.6,166,109.0,255,+2.05,115
|
||||||
|
351,Cal St. Fullerton,BW,6-26,-18.72,93.7,356,112.4,291,68.1,128,-.020,240,+1.82,114,107.4,131,105.6,120,+4.76,60
|
||||||
|
352,Stetson,ASun,8-24,-19.31,99.4,301,118.7,358,67.6,153,-.015,220,-4.37,280,105.8,214,110.2,333,+0.21,163
|
||||||
|
353,NJIT,AE,6-25,-20.38,93.2,358,113.6,310,66.5,219,-.054,315,-6.60,311,103.0,309,109.6,305,-4.07,293
|
||||||
|
354,Le Moyne,NEC,9-23,-20.72,101.2,276,121.9,361,68.6,107,+.004,165,-7.34,328,101.6,342,109.0,256,+0.25,161
|
||||||
|
355,New Hampshire,AE,8-24,-21.66,93.8,355,115.4,332,67.4,175,+.019,130,-6.08,302,103.7,296,109.8,314,-3.44,278
|
||||||
|
356,The Citadel,SC,5-25,-21.85,94.9,351,116.8,343,64.6,317,-.134,363,-3.33,247,105.6,225,109.0,254,-7.47,345
|
||||||
|
357,Prairie View A&M,SWAC,5-27,-22.12,95.6,343,117.7,353,70.2,48,-.062,325,-5.45,298,103.0,313,108.4,226,+11.06,15
|
||||||
|
358,Maryland Eastern Shore,MEAC,6-25,-22.61,95.8,342,118.4,357,65.6,274,-.113,360,-3.01,234,105.4,239,108.4,223,+9.89,20
|
||||||
|
359,Canisius,MAAC,3-28,-22.92,99.1,308,122.0,362,66.2,240,-.078,345,-4.78,288,102.9,317,107.7,191,+3.75,78
|
||||||
|
360,Alabama A&M,SWAC,10-22,-23.51,92.1,361,115.6,334,71.0,22,-.022,246,-9.71,360,101.1,355,110.8,356,+1.81,120
|
||||||
|
361,Coppin St.,MEAC,6-24,-24.30,87.4,363,111.7,276,67.7,147,+.033,93,-4.30,279,105.3,245,109.6,301,+4.32,64
|
||||||
|
362,Chicago St.,NEC,4-28,-24.37,91.9,362,116.2,341,68.3,118,-.024,251,-3.28,245,104.3,286,107.6,184,+8.49,29
|
||||||
|
363,Arkansas Pine Bluff,SWAC,6-25,-26.07,95.1,349,121.2,359,71.4,17,-.074,342,-8.62,354,101.0,356,109.6,302,+7.08,41
|
||||||
|
364,Mississippi Valley St.,SWAC,3-28,-42.22,82.6,364,124.8,364,64.8,311,-.016,221,-3.49,255,103.9,294,107.3,171,+18.54,2
|
||||||
|
365
2025/data/massey.csv
Normal file
365
2025/data/massey.csv
Normal file
@@ -0,0 +1,365 @@
|
|||||||
|
Team,Conf,W-L,Δ,CMP,Sort,OMY,PAC,PGH,PIR,POM,REW,RMS,RPI,RT,RTH,SMS,SPR,SRS,STY,TRK,TRP,USA,WAB,WIL,WLK,WOL,7OT,AP,BAR,BBT,BIH,BMN,BNZ,BWE,COL,DCI,DII,DOK,DOL,DP,DUN,EBP,EMK,ESR,FAS,HAS,INC,JJK,JNG,KPI,KPK,LAB,LMC,LOG,MAS,MB,MGS,MMG,MOR,NET,NOL
|
||||||
|
Duke,ACC,"31-3",+1,1,>>,1,1,4,1,1,2,3,4,1,3,2,5,1,1,2,1,1,6,5,1,3,2,1,1,2,3,6,1,1,4,3,2,1,4,1,1,1,1,4,2,2,1,3,3,5,2,3,1,1,2,3,1,2,1,1,3
|
||||||
|
Auburn,SEC,"28-5",-1,2,>>,2,4,1,2,4,3,2,1,2,2,1,1,2,2,3,2,4,1,1,2,2,1,4,3,3,1,1,2,4,1,2,1,3,1,4,3,3,4,1,1,4,3,1,1,1,1,2,4,2,4,2,4,3,4,2,5
|
||||||
|
Florida,SEC,"30-4",+1,3,>>,3,2,2,3,2,1,1,3,5,1,3,2,4,3,4,4,3,2,2,3,1,6,3,4,1,2,2,3,2,2,1,3,2,2,2,4,4,3,2,3,3,2,2,4,3,4,1,3,3,3,1,2,4,2,4,2
|
||||||
|
Houston,B12,"30-4",-1,4,>>,4,3,3,4,3,4,5,6,3,5,4,7,3,4,1,3,2,3,6,4,6,4,2,2,4,4,3,4,3,3,4,4,4,3,3,2,2,2,3,4,1,4,4,2,4,3,4,2,4,1,4,3,1,3,3,1
|
||||||
|
Alabama,SEC,"25-8",,5,>>,5,6,5,5,6,7,6,2,6,6,5,3,5,5,5,5,8,4,4,5,5,3,7,5,6,6,4,5,5,5,6,5,5,6,5,8,6,5,5,5,8,5,6,5,2,5,7,10,5,5,5,13,6,5,6,8
|
||||||
|
Tennessee,SEC,"27-7",,6,>>,6,8,6,6,5,5,4,5,7,4,6,4,6,6,6,6,6,5,3,6,4,10,6,6,5,5,5,6,6,6,5,6,6,5,6,6,5,7,7,6,5,6,5,7,6,6,5,9,6,6,7,6,5,7,5,6
|
||||||
|
Michigan St,B10,"27-6",,7,>>,11,7,7,10,8,6,7,7,11,7,7,6,12,7,13,12,7,7,7,7,7,17,8,10,8,7,7,12,7,7,8,8,10,8,9,7,11,11,8,7,11,7,8,6,7,7,6,12,7,8,8,7,12,8,11,7
|
||||||
|
St John's,BE,"30-4",+1,8,>>,12,12,8,13,12,8,9,9,12,8,8,12,13,8,15,13,5,8,10,8,9,14,5,12,7,8,8,13,8,8,7,7,12,7,13,5,12,6,6,9,15,9,7,8,10,8,8,6,8,7,6,5,13,6,13,4
|
||||||
|
Texas Tech,B12,"25-8",-1,9,>>,7,11,19,9,7,14,18,32,13,15,10,15,7,9,7,8,9,15,20,9,20,26,9,7,13,18,16,7,10,20,17,11,9,12,7,10,8,9,9,10,9,8,21,10,21,9,15,8,10,9,13,17,7,9,7,16
|
||||||
|
Maryland,B10,"25-8",+1,10,>>,10,5,15,11,11,15,17,23,8,14,11,11,9,12,10,11,12,19,17,11,21,20,11,11,10,21,15,8,9,21,12,9,13,15,8,13,13,12,18,14,6,12,20,16,17,10,11,13,11,14,17,18,8,12,10,14
|
||||||
|
Wisconsin,B10,"26-9",+5,11,>>,14,9,14,14,13,19,15,19,18,13,15,17,16,15,12,16,10,11,15,13,17,15,13,14,12,12,9,14,13,16,15,12,14,9,14,14,18,14,11,16,12,14,18,13,16,17,10,14,13,10,11,15,19,15,15,17
|
||||||
|
Iowa St,B12,"24-9",,12,>>,8,15,22,8,10,27,25,33,16,18,9,21,11,11,8,7,14,18,24,10,27,39,15,8,14,23,17,10,14,23,14,17,8,17,11,9,7,10,15,19,7,11,25,12,23,14,17,5,9,11,16,16,11,11,9,26
|
||||||
|
Kentucky,SEC,"22-11",-3,13,>>,15,21,11,15,16,20,8,10,9,9,16,8,15,13,17,18,21,9,8,15,8,13,18,17,18,10,10,16,15,14,18,16,20,10,17,23,17,31,14,8,21,16,14,11,9,12,9,24,15,17,14,35,16,22,14,24
|
||||||
|
Gonzaga,WCC,"25-8",+4,14,>>,9,19,27,7,9,28,37,20,4,30,12,24,8,10,11,9,23,35,40,12,37,5,24,9,9,36,38,9,11,24,9,13,7,32,10,11,10,8,39,21,10,10,27,30,26,16,25,7,12,16,32,8,9,10,8,13
|
||||||
|
Louisville,ACC,"27-7",+2,15,>>,22,10,9,24,23,11,13,14,26,16,19,32,24,16,18,28,11,17,14,17,13,8,10,20,17,13,14,24,21,11,20,15,16,13,23,17,28,22,10,13,25,23,10,23,15,13,18,16,18,31,12,11,27,20,24,9
|
||||||
|
Arizona,B12,"22-12",+5,16,>>,13,24,23,12,14,46,28,26,10,22,13,22,10,14,9,10,20,16,28,14,29,16,21,13,19,25,18,11,12,26,22,22,11,19,12,28,9,13,20,24,13,13,30,15,25,18,26,11,14,12,22,25,10,13,12,21
|
||||||
|
Clemson,ACC,"27-6",-2,17,>>,24,14,17,21,18,10,20,15,17,19,22,25,27,20,20,25,13,22,17,16,16,19,12,19,11,11,19,26,17,12,11,21,18,20,22,16,15,19,16,11,19,21,11,18,19,15,14,20,17,24,18,9,26,23,22,12
|
||||||
|
Michigan,B10,"25-9",+10,18,>>,23,16,10,22,25,18,14,11,31,17,14,16,20,18,26,23,15,10,12,20,14,18,14,27,25,17,11,22,19,10,29,23,31,11,26,27,29,30,12,23,29,26,12,20,8,11,12,22,23,13,10,24,24,14,23,10
|
||||||
|
Texas A&M,SEC,"22-10",-6,19,>>,20,23,13,20,17,21,11,18,27,10,21,10,21,22,22,22,18,12,9,19,11,31,19,22,21,9,13,21,20,17,27,14,22,14,20,30,22,23,17,12,17,22,16,9,14,20,16,31,21,23,19,41,17,25,18,27
|
||||||
|
Purdue,B10,"22-11",-6,20,>>,18,17,21,18,19,30,22,13,21,20,18,14,18,19,19,15,22,20,19,18,25,12,22,18,23,20,20,18,16,18,21,20,19,23,18,24,21,20,27,18,23,17,22,14,12,19,22,19,16,15,23,27,18,17,19,34
|
||||||
|
Missouri,SEC,"22-11",+2,21,>>,16,13,24,19,15,25,12,40,19,11,27,9,19,21,16,27,24,24,13,21,15,30,23,26,20,22,29,17,24,36,31,10,15,26,15,36,31,25,29,15,14,15,23,25,28,27,13,17,24,34,28,32,22,28,16,53
|
||||||
|
St Mary's CA,WCC,"28-5",-2,22,>>,30,27,20,31,22,13,33,12,15,31,26,34,31,24,24,35,19,27,31,27,24,7,20,23,15,15,28,29,18,15,13,25,24,22,27,12,30,18,25,25,22,28,13,26,20,26,24,25,27,26,25,12,25,34,21,19
|
||||||
|
BYU,B12,"24-9",+1,23,>>,21,26,26,23,24,32,29,44,32,27,23,28,22,23,14,20,17,21,29,24,31,48,17,15,31,26,21,20,23,28,36,29,17,21,16,19,24,16,19,27,16,19,29,17,30,24,23,21,25,19,21,23,20,18,25,11
|
||||||
|
Illinois,B10,"21-12",-5,24,>>,17,22,30,16,20,38,26,39,14,23,17,18,14,17,23,17,"--",25,26,23,32,21,"--",21,26,31,26,15,22,32,35,19,23,27,19,29,23,27,30,20,20,20,34,22,22,21,28,23,20,22,30,33,14,16,17,31
|
||||||
|
Mississippi,SEC,"22-11",,25,>>,25,18,18,28,26,22,10,17,30,12,29,13,28,28,29,30,"--",13,10,25,10,25,"--",31,24,14,22,28,30,22,33,18,32,18,30,37,32,33,22,17,32,29,19,21,18,23,19,33,26,32,20,43,29,33,28,28
|
||||||
|
Kansas,B12,"21-12",-4,26,>>,19,31,32,17,21,43,32,21,23,29,20,23,17,26,21,14,"--",26,33,22,38,24,"--",16,29,34,23,19,25,27,34,28,21,25,21,34,14,15,26,30,18,18,38,27,24,25,30,15,19,21,27,38,15,21,20,38
|
||||||
|
Oregon,B10,"24-9",-1,27,>>,32,20,16,33,33,17,16,16,40,21,24,19,33,25,38,32,"--",14,16,29,18,72,25,33,28,19,12,33,28,13,24,31,33,16,31,22,36,37,21,22,36,34,17,19,11,22,21,40,32,27,15,29,33,27,29,23
|
||||||
|
Marquette,BE,"23-10",+1,28,>>,26,32,39,25,28,33,34,24,24,33,25,30,26,29,30,21,25,29,34,26,36,27,"--",28,27,30,27,27,31,31,25,26,29,28,28,21,20,24,23,29,26,27,32,28,31,30,29,18,22,20,24,31,28,29,26,40
|
||||||
|
UCLA,B10,"22-10",-2,29,>>,28,25,29,26,27,26,31,42,22,28,28,20,25,27,25,26,"--",28,29,28,34,36,"--",25,37,27,25,25,27,34,37,27,27,29,24,33,27,29,28,31,24,24,33,24,29,29,27,30,28,29,29,46,23,19,27,33
|
||||||
|
Memphis,AAC,"29-5",,30,>>,50,46,12,49,50,9,19,8,34,35,34,26,60,38,60,53,16,23,22,41,12,9,16,57,30,16,24,58,40,9,19,37,57,24,61,18,46,39,13,26,66,55,9,29,13,28,20,43,44,28,9,14,57,48,49,15
|
||||||
|
Mississippi St,SEC,"21-12",+1,31,>>,29,40,31,32,32,40,21,37,33,25,36,29,32,30,33,31,"--",30,20,30,22,38,"--",35,33,24,31,31,36,37,39,24,30,31,33,39,35,35,34,28,38,32,31,32,27,31,33,35,29,35,35,47,31,37,34,52
|
||||||
|
Connecticut,BE,"23-10",+1,32,>>,34,42,48,30,35,45,40,54,38,39,30,39,30,31,36,24,"--",36,42,34,47,42,"--",29,36,40,33,30,29,45,40,32,28,34,29,15,16,21,31,36,28,30,45,31,45,36,36,28,34,18,31,39,30,24,32,29
|
||||||
|
Creighton,BE,"24-10",+1,33,>>,38,35,33,35,36,34,36,34,42,36,33,41,37,35,34,34,"--",31,35,36,41,34,"--",37,38,38,30,36,33,35,38,39,34,30,36,32,26,32,24,38,30,36,36,33,37,34,34,26,36,25,26,30,38,36,38,25
|
||||||
|
VCU,A10,"28-6",+2,34,>>,36,43,40,34,31,29,55,28,20,48,32,49,42,32,31,36,"--",50,53,33,42,11,"--",30,16,41,50,39,26,29,10,42,35,50,35,20,34,17,46,45,31,35,35,48,33,37,39,34,31,46,50,10,37,30,31,18
|
||||||
|
Georgia,SEC,"20-12",-4,35,>>,33,29,34,37,34,35,23,41,29,24,35,27,34,37,28,37,"--",33,22,35,26,28,"--",36,35,33,32,32,37,40,51,30,36,33,34,43,38,42,35,32,37,33,37,36,38,35,32,37,38,45,37,51,34,32,33,43
|
||||||
|
North Carolina,ACC,"22-13",+2,36,>>,31,28,42,29,30,60,43,25,28,41,37,50,35,36,32,29,"--",42,41,32,43,32,"--",32,42,43,44,34,34,39,45,33,25,43,32,46,25,28,38,41,34,31,44,44,54,32,41,27,33,33,39,50,35,31,36,30
|
||||||
|
Baylor,B12,"19-14",,37,>>,27,38,49,27,29,65,42,55,35,38,31,38,23,33,27,19,"--",40,45,31,50,50,"--",24,41,45,39,23,32,56,48,36,26,39,25,47,19,26,40,43,27,25,58,35,52,39,46,29,30,30,40,71,21,26,30,46
|
||||||
|
New Mexico,MWC,"26-7",-3,38,>>,41,51,28,40,43,24,38,27,37,40,38,36,43,39,43,44,"--",34,36,37,35,29,"--",41,32,28,34,41,38,25,28,34,42,36,44,48,49,36,33,33,48,41,28,34,32,38,31,41,39,39,34,26,41,53,42,36
|
||||||
|
UC San Diego,BWC,"30-4",+5,39,>>,40,37,37,43,37,16,50,36,25,52,40,44,57,34,48,51,"--",45,49,38,23,47,"--",34,22,35,51,43,41,33,16,61,43,47,39,26,57,41,47,44,33,42,24,49,40,33,40,64,37,59,45,20,42,45,35,32
|
||||||
|
Arkansas,SEC,"20-13",,40,>>,39,39,43,38,40,53,30,65,39,32,42,33,36,42,42,39,"--",39,32,39,39,94,"--",42,46,44,40,37,39,52,65,38,37,41,37,55,42,40,45,39,42,38,46,39,43,41,42,38,41,42,44,62,36,42,40,35
|
||||||
|
Utah St,MWC,"26-7",-2,41,>>,53,49,38,51,54,23,39,29,36,44,41,42,49,40,50,50,"--",38,37,51,33,41,"--",51,43,32,37,49,44,30,44,48,49,37,51,31,44,55,36,34,50,53,26,37,35,40,37,63,55,38,36,28,48,50,37,41
|
||||||
|
Oklahoma,SEC,"20-13",+3,42,>>,37,34,36,41,38,49,24,61,61,26,44,37,40,43,46,43,"--",32,25,44,28,91,"--",47,40,39,35,42,43,47,56,35,44,35,43,58,43,47,37,35,45,37,41,38,42,46,38,54,43,41,38,61,45,41,43,49
|
||||||
|
Colorado St,MWC,"25-9",+8,43,>>,49,30,35,46,44,39,47,43,58,49,45,51,50,41,39,54,"--",47,43,40,44,46,"--",38,45,50,46,45,35,38,49,49,39,48,38,41,53,38,49,53,39,44,40,51,44,42,43,46,46,43,46,22,50,35,47,20
|
||||||
|
Xavier,BE,"21-11",-2,44,>>,43,33,56,39,42,55,52,59,44,46,39,46,39,44,37,38,"--",49,54,43,57,40,"--",40,47,55,48,38,42,60,46,44,38,46,40,56,39,34,43,51,35,39,60,46,60,44,48,32,40,36,42,52,43,38,45,39
|
||||||
|
Drake,MVC,"30-3",+3,45,>>,67,54,25,69,58,12,41,22,71,50,53,53,77,53,56,76,"--",41,37,56,19,35,"--",60,34,29,43,74,49,19,23,60,67,40,67,25,73,49,32,40,64,68,15,41,34,43,35,92,63,37,33,19,66,55,56,22
|
||||||
|
Vanderbilt,SEC,"20-12",-3,46,>>,46,47,41,50,48,36,27,58,50,34,48,31,44,46,41,56,"--",37,27,50,30,105,"--",53,58,37,36,44,51,49,83,46,48,38,46,57,56,54,41,37,46,52,39,42,46,47,47,56,51,52,41,68,49,54,48,60
|
||||||
|
Ohio St,B10,"17-15",-6,47,>>,35,52,58,36,39,67,48,78,41,43,43,40,29,45,40,33,"--",55,50,42,59,49,"--",39,50,56,54,35,47,63,58,41,40,52,41,61,37,44,56,48,40,40,64,55,53,48,55,39,35,44,55,86,32,39,41,70
|
||||||
|
Indiana,B10,"19-13",-2,48,>>,48,44,45,45,47,59,44,51,48,42,46,43,46,49,55,45,"--",48,45,46,52,44,"--",50,49,49,42,50,45,44,55,50,50,44,47,64,52,46,50,47,52,46,51,43,36,50,51,45,45,48,47,63,53,46,54,45
|
||||||
|
Texas,SEC,"19-15",+4,49,>>,42,36,53,42,41,62,35,87,54,37,52,35,38,47,49,40,"--",46,37,52,45,113,"--",44,60,54,47,40,48,64,87,40,41,49,42,53,33,43,52,42,47,43,57,50,57,53,45,50,48,40,52,74,39,43,39,51
|
||||||
|
West Virginia,B12,"19-13",-3,50,>>,44,45,50,54,51,64,46,57,49,45,47,47,41,51,35,47,"--",43,48,49,55,45,"--",43,62,48,41,47,54,55,72,54,51,42,48,62,51,51,42,50,44,47,59,40,48,49,52,42,47,49,43,66,40,52,51,68
|
||||||
|
Boise St,MWC,"24-10",-1,51,>>,52,53,47,52,49,41,51,45,47,55,51,48,51,48,51,55,"--",53,51,48,49,61,"--",45,51,47,55,52,46,48,43,45,46,54,50,40,48,53,55,52,53,50,48,47,50,52,44,49,52,50,51,40,46,58,44,37
|
||||||
|
San Diego St,MWC,"21-9",-3,52,>>,59,68,44,53,53,31,45,47,53,47,50,45,52,52,59,57,"--",44,43,47,46,37,"--",52,52,42,45,55,50,43,54,43,59,45,55,38,54,57,48,46,51,54,43,45,39,51,57,62,53,47,49,84,44,59,52,62
|
||||||
|
SMU,ACC,"23-10",-1,53,>>,45,56,54,44,46,58,53,62,46,53,49,57,45,50,47,42,"--",58,51,45,58,66,"--",46,54,52,56,46,52,50,53,47,45,53,49,45,45,52,51,49,41,45,53,62,62,45,49,47,42,54,53,34,52,44,46,61
|
||||||
|
Cincinnati,B12,"18-15",,54,>>,47,58,67,47,56,92,58,94,67,58,54,55,47,56,44,41,"--",61,61,53,67,86,"--",48,69,64,61,51,60,75,84,52,47,58,53,70,40,45,59,59,43,48,73,58,66,58,58,44,49,53,57,73,51,56,50,74
|
||||||
|
Northwestern,B10,"17-16",+3,55,>>,51,41,64,48,45,74,59,95,60,56,55,54,48,54,53,48,"--",70,59,54,68,73,"--",49,66,68,62,48,53,73,79,51,54,61,45,71,47,50,71,58,49,49,71,72,65,64,60,48,50,57,63,101,47,47,53,78
|
||||||
|
San Francisco,WCC,"24-9",-1,56,>>,68,70,55,64,65,44,56,46,52,59,58,66,65,58,61,67,"--",52,55,67,53,33,"--",68,55,53,53,66,58,51,57,64,69,55,70,50,75,74,54,54,75,64,47,53,58,63,50,71,68,60,54,42,63,76,64,58
|
||||||
|
Nebraska,B10,"17-14",-1,57,>>,55,50,61,58,55,68,54,69,59,51,61,52,58,57,63,58,"--",57,57,55,63,79,"--",58,53,60,60,57,61,65,63,56,55,57,56,72,55,63,60,57,63,57,65,57,55,59,69,58,54,58,58,83,56,62,59,96
|
||||||
|
UC Irvine,BWC,"28-6",-1,58,>>,65,66,52,68,67,37,65,31,56,71,56,58,85,55,81,77,"--",54,56,58,40,65,"--",69,39,46,57,76,68,41,26,87,86,56,76,35,95,79,57,56,81,72,42,59,41,54,53,85,58,71,56,21,74,87,62,63
|
||||||
|
Liberty,CUSA,"28-6",+5,59,>>,63,67,46,71,60,42,75,50,65,73,57,74,83,61,54,82,"--",60,57,57,48,53,"--",66,44,57,58,75,56,42,42,82,71,66,72,49,85,69,62,62,57,67,49,63,49,56,56,96,64,74,66,37,72,71,60,48
|
||||||
|
Wake Forest,ACC,"21-11",-1,60,>>,69,60,51,66,70,48,49,63,106,54,63,72,73,63,70,64,"--",51,47,66,51,90,"--",72,70,51,49,68,64,54,89,53,56,51,68,66,62,66,44,55,65,63,54,52,59,61,59,66,69,55,48,70,76,63,69,56
|
||||||
|
McNeese St,SLC,"27-6",+2,61,>>,62,71,63,65,59,51,84,48,57,82,78,71,78,60,62,73,"--",59,79,59,62,52,"--",61,48,59,67,64,66,59,32,75,64,63,66,44,66,62,64,65,70,66,56,64,77,55,65,88,57,96,82,45,67,67,58,47
|
||||||
|
Villanova,BE,"19-14",-2,62,>>,58,63,78,55,57,94,73,109,70,69,59,61,55,62,52,46,"--",71,77,61,91,87,"--",55,74,76,72,53,55,85,76,55,52,68,54,75,41,48,61,67,55,51,83,56,95,68,63,36,61,51,61,82,54,51,55,73
|
||||||
|
Santa Clara,WCC,"20-12",-1,63,>>,54,61,75,59,52,76,81,76,43,78,62,59,56,59,45,61,"--",84,79,60,80,43,"--",54,68,71,76,54,57,72,64,66,53,79,52,73,70,64,88,68,60,56,72,60,61,65,62,53,62,80,78,59,55,57,57,79
|
||||||
|
George Mason,A10,"26-8",+5,64,>>,84,64,57,79,78,54,74,30,64,77,65,86,87,67,73,80,"--",56,62,71,54,22,"--",79,56,58,52,85,59,46,52,73,83,62,84,51,69,71,53,63,80,84,50,65,47,60,54,79,75,72,59,55,83,74,68,42
|
||||||
|
Dayton,A10,"22-10",-4,65,>>,78,80,60,74,75,56,69,56,62,72,64,73,75,70,79,72,"--",62,68,72,65,23,"--",77,65,63,59,82,62,58,68,70,73,65,85,63,72,60,58,60,69,77,62,54,51,70,68,60,76,68,67,87,80,65,67,57
|
||||||
|
Iowa,B10,"17-16",+1,66,>>,60,48,71,60,64,78,57,124,76,57,67,62,59,68,66,59,"--",63,60,68,69,118,"--",64,78,74,64,59,67,81,115,59,65,64,57,79,59,68,69,61,71,61,77,69,79,72,72,73,66,56,64,92,60,49,63,81
|
||||||
|
Penn St,B10,"16-15",-1,67,>>,56,62,83,56,62,77,68,133,66,60,60,56,53,64,64,52,"--",82,75,62,94,120,"--",56,64,89,78,56,69,94,73,62,60,77,58,68,58,67,80,69,54,58,90,82,86,71,76,59,56,62,80,95,59,40,66,84
|
||||||
|
USC,B10,"16-17",+2,68,>>,61,69,73,61,63,70,63,103,72,61,68,60,61,69,58,60,"--",81,68,65,78,75,"--",63,80,75,77,60,65,80,104,57,62,69,59,85,60,59,83,66,61,60,80,85,69,73,75,57,65,65,71,91,62,60,70,89
|
||||||
|
Pittsburgh,ACC,"17-15",-4,69,>>,57,79,77,57,61,100,77,108,63,68,66,63,54,65,72,49,"--",89,72,63,89,106,"--",59,72,77,82,61,76,83,74,58,58,78,62,76,50,56,79,70,58,62,86,74,92,69,77,51,59,69,79,90,58,61,61,135
|
||||||
|
Kansas St,B12,"16-17",+1,70,>>,64,55,72,62,66,93,64,118,100,65,73,64,63,71,57,62,"--",72,70,69,75,115,"--",62,83,73,66,62,72,96,114,63,61,67,60,106,63,61,72,76,56,59,85,75,74,78,70,55,67,63,68,113,64,66,75,75
|
||||||
|
UCF,B12,"17-16",+4,71,>>,73,65,70,63,68,83,61,105,91,62,70,65,67,76,69,65,"--",67,62,70,73,123,"--",67,87,70,63,69,77,74,122,71,63,60,63,87,64,78,65,72,59,70,75,71,75,81,71,52,78,64,60,108,68,64,71,87
|
||||||
|
North Texas,AAC,"24-8",-4,72,>>,79,94,66,83,72,61,85,52,68,83,75,79,86,75,74,85,"--",68,75,81,64,51,"--",76,61,61,68,86,71,62,47,76,80,72,87,60,80,72,63,75,79,81,63,70,73,77,66,84,83,73,70,60,78,97,65,69
|
||||||
|
Yale,Ivy,"22-7",+5,73,>>,74,81,84,76,73,63,104,38,45,100,69,85,93,66,78,75,"--",75,97,64,66,64,"--",83,59,80,80,78,63,68,30,90,70,87,77,59,68,58,74,85,77,79,68,81,68,57,82,109,60,85,91,107,85,68,72,50
|
||||||
|
High Point,BSo,"29-5",+3,74,>>,90,101,68,87,84,47,92,53,55,94,77,90,101,74,85,89,"--",66,84,74,61,60,"--",86,57,65,69,89,75,61,41,91,78,80,83,54,81,73,67,71,88,89,61,87,71,62,64,111,71,94,76,36,93,86,82,44
|
||||||
|
Stanford,ACC,"20-13",+4,75,>>,81,73,65,84,79,75,70,68,84,74,79,83,76,79,71,83,"--",73,67,76,70,74,"--",82,88,69,71,81,78,66,105,68,72,71,78,83,88,85,70,74,82,78,67,61,76,74,74,77,84,76,69,75,82,72,81,71
|
||||||
|
TCU,B12,"16-16",-3,76,>>,75,57,69,77,87,81,60,96,95,66,71,68,66,72,75,68,"--",64,62,78,74,139,"--",74,117,66,65,70,81,77,176,79,75,59,75,102,67,80,68,73,67,74,78,73,70,75,84,65,86,61,62,123,70,91,78,99
|
||||||
|
Bradley,MVC,"26-8",-1,77,>>,93,102,59,96,95,50,79,49,73,81,72,81,94,78,97,92,"--",69,66,88,56,69,"--",90,77,62,75,98,74,53,69,97,101,70,97,52,92,114,73,64,101,96,52,68,56,67,61,102,92,75,65,49,94,82,80,59
|
||||||
|
Rutgers,B10,"15-17",-4,78,>>,72,74,76,70,74,82,66,111,93,64,80,70,69,80,68,66,"--",78,71,75,79,132,"--",73,85,78,73,67,73,86,116,65,68,73,71,112,76,77,77,77,78,65,87,80,83,80,79,67,73,70,73,139,75,70,77,80
|
||||||
|
St Joseph's PA,A10,"22-12",+1,79,>>,85,84,82,78,80,88,95,73,51,89,81,82,84,77,82,81,"--",111,90,77,88,59,"--",81,71,85,95,83,70,71,62,74,76,94,82,77,71,70,92,80,73,80,70,67,64,76,67,70,72,95,88,56,88,79,76,72
|
||||||
|
Utah,B12,"16-16",-8,80,>>,66,75,86,67,76,96,67,164,85,70,76,67,62,73,67,63,"--",77,73,73,97,140,"--",65,102,81,79,63,83,107,142,67,66,74,65,86,61,75,75,78,76,69,100,78,96,84,85,68,74,67,74,105,65,75,73,103
|
||||||
|
Grand Canyon,WAC,"26-7",+7,81,>>,92,87,74,90,92,57,93,82,80,95,82,92,100,88,83,91,"--",76,88,90,71,84,"--",93,76,72,74,91,80,69,66,86,82,85,91,42,87,65,78,87,89,88,66,89,94,79,78,99,89,83,84,44,96,89,92,55
|
||||||
|
Akron,MAC,"28-6",+5,82,>>,99,88,62,100,97,52,94,35,74,97,89,94,113,85,95,106,"--",65,82,87,60,57,"--",110,63,67,70,105,79,57,50,109,98,76,111,65,112,98,66,81,96,106,55,79,63,66,73,112,90,88,72,58,116,111,91,54
|
||||||
|
Arizona St,B12,"13-19",-2,83,>>,70,85,90,72,71,109,72,106,97,75,74,69,64,82,65,69,"--",80,79,80,98,89,"--",71,101,83,84,65,92,112,136,85,85,75,73,129,77,86,81,82,62,75,110,92,82,87,100,72,80,78,75,164,61,83,74,125
|
||||||
|
LSU,SEC,"14-18",-2,84,>>,82,86,87,82,89,90,62,157,90,63,90,77,71,81,84,71,"--",74,62,94,77,149,"--",87,115,84,83,77,95,113,167,77,89,83,80,109,74,87,85,79,85,87,104,108,105,93,81,87,95,81,86,129,77,93,89,122
|
||||||
|
Minnesota,B10,"15-17",-2,85,>>,91,90,79,88,91,72,71,115,117,76,87,75,82,96,87,88,"--",86,73,92,96,133,"--",89,109,79,87,84,86,95,140,72,87,81,79,117,90,89,89,83,87,85,92,100,67,88,86,80,97,82,81,142,87,88,96,102
|
||||||
|
South Carolina,SEC,"12-20",-2,86,>>,71,77,94,73,69,124,76,138,94,67,86,78,72,86,76,74,"--",99,77,79,104,119,"--",78,90,103,113,71,82,122,135,69,74,103,69,144,79,83,109,84,68,71,120,131,106,91,88,78,77,86,104,160,69,73,87,115
|
||||||
|
Colorado,B12,"14-20",+12,87,>>,77,59,96,80,83,102,78,169,112,79,83,76,68,90,80,79,"--",93,84,83,112,150,"--",70,133,121,101,73,84,128,183,84,77,84,64,130,82,84,91,86,74,76,122,95,100,99,92,61,91,66,83,157,71,69,86,88
|
||||||
|
Arkansas St,SBC,"24-10",-2,88,>>,89,127,102,92,86,69,119,67,69,112,97,96,104,93,88,94,"--",108,115,89,99,56,"--",95,73,94,98,97,99,84,59,106,79,110,98,67,91,81,104,100,97,98,84,77,89,85,80,100,79,113,110,54,99,98,94,83
|
||||||
|
Oregon St,WCC,"20-12",+2,89,>>,83,93,106,89,85,85,97,136,81,92,91,87,80,83,90,95,"--",90,104,93,113,104,"--",85,81,93,91,87,96,104,77,100,91,101,90,74,98,102,108,91,95,90,102,66,113,98,97,90,87,102,103,76,79,78,85,132
|
||||||
|
Florida St,ACC,"17-15",-5,90,>>,86,96,93,85,90,115,87,130,103,84,84,89,79,91,91,84,"--",116,89,86,117,114,"--",88,96,102,102,88,98,99,103,81,88,92,89,94,86,88,93,88,90,86,108,106,122,90,95,86,85,84,90,102,86,80,90,112
|
||||||
|
Butler,BE,"14-19",+1,91,>>,76,76,117,75,77,119,91,152,82,85,85,80,70,87,77,70,"--",118,97,85,138,99,"--",75,113,123,122,72,88,134,138,80,84,97,74,131,65,76,97,95,72,73,134,111,135,101,104,69,81,77,89,143,73,77,83,121
|
||||||
|
UNC Wilmington,CAA,"27-7",+4,92,>>,112,104,88,111,106,66,107,60,89,111,98,116,120,92,108,113,"--",83,100,98,76,63,"--",112,79,86,97,113,89,67,61,117,102,99,110,69,111,95,84,90,122,113,69,101,88,82,83,121,96,106,97,48,120,95,102,64
|
||||||
|
Nevada,MWC,"17-16",,93,>>,80,98,107,81,81,123,90,154,77,88,92,84,74,84,89,78,"--",126,100,82,123,125,"--",80,86,113,137,79,90,120,99,78,81,108,86,103,78,82,128,94,83,82,121,119,126,100,91,81,82,87,109,94,81,90,79,133
|
||||||
|
UNLV,MWC,"18-15",-4,94,>>,96,103,85,98,94,107,82,107,122,86,100,91,91,95,92,102,"--",102,86,95,101,129,"--",94,98,88,115,94,94,93,124,89,104,91,94,110,96,100,103,89,86,94,94,76,97,96,96,89,107,92,87,99,90,108,98,91
|
||||||
|
"Loyola-Chicago",A10,"22-11",+3,95,>>,120,89,81,104,109,87,98,81,99,99,101,110,111,97,102,103,"--",103,94,104,90,67,"--",106,91,92,93,114,85,76,96,104,93,100,107,81,101,99,95,92,99,104,76,104,78,105,89,91,118,101,96,98,115,85,107,65
|
||||||
|
Georgetown,BE,"17-15",-7,96,>>,88,91,118,86,88,116,89,161,109,91,88,88,81,94,93,86,"--",98,100,91,127,143,"--",84,124,100,96,80,107,124,119,83,92,86,81,105,84,112,82,93,84,83,119,86,129,102,93,74,88,89,85,118,84,81,88,153
|
||||||
|
Lipscomb,ASUN,"25-9",,97,>>,87,106,119,91,82,91,129,101,75,114,93,98,105,89,98,99,"--",92,143,84,102,70,"--",91,67,101,92,93,100,106,60,114,106,112,95,78,106,103,114,103,108,97,99,91,104,83,107,107,70,122,123,53,91,116,84,93
|
||||||
|
St Bonaventure,A10,"22-11",-3,98,>>,118,122,101,108,122,80,101,85,86,101,99,105,109,99,103,110,"--",91,97,109,87,55,"--",108,84,90,90,111,102,82,81,103,130,90,116,82,110,119,87,99,98,111,79,83,84,107,101,105,101,103,100,78,101,114,97,107
|
||||||
|
Oklahoma St,B12,"15-17",-5,99,>>,97,78,92,97,99,108,80,151,187,80,95,95,92,106,86,96,"--",85,82,100,107,148,"--",96,127,95,81,96,104,116,191,93,90,82,92,133,103,101,76,98,94,93,113,114,112,117,103,83,116,79,77,128,95,100,95,90
|
||||||
|
UAB,AAC,"22-12",+9,100,>>,105,83,95,99,102,110,111,89,78,109,109,108,107,103,100,98,"--",122,107,106,111,54,"--",105,94,108,118,106,87,89,80,98,94,119,105,89,99,90,115,116,107,99,95,118,102,106,98,97,111,99,107,69,110,99,106,66
|
||||||
|
Georgia Tech,ACC,"17-16",+3,101,>>,101,72,99,95,100,106,86,176,115,90,104,93,90,100,99,93,"--",113,92,97,121,145,"--",92,132,114,103,92,97,118,157,95,97,95,88,120,94,91,94,96,91,91,118,88,121,103,94,82,109,93,94,109,97,84,109,98
|
||||||
|
Northern Iowa,MVC,"20-12",-2,102,>>,100,113,97,102,101,114,105,86,79,105,96,99,102,98,115,104,"--",129,96,99,103,81,"--",97,95,105,123,100,93,87,86,110,108,121,103,101,113,110,141,97,100,105,91,103,80,97,90,103,100,111,111,93,107,94,93,95
|
||||||
|
Troy,SBC,"23-10",+4,103,>>,98,95,111,101,93,97,128,91,88,117,103,111,112,102,101,108,"--",97,119,96,106,77,"--",100,75,119,106,103,101,100,70,112,95,122,100,93,109,92,102,109,104,101,101,96,107,92,108,120,93,116,122,89,106,107,99,86
|
||||||
|
Utah Valley,WAC,"25-8",-1,104,>>,103,100,100,114,111,71,115,80,130,122,94,100,121,105,110,114,"--",87,112,102,81,127,"--",104,100,87,86,110,106,91,82,118,110,89,102,80,126,97,86,107,133,112,88,98,120,86,106,124,105,104,92,72,111,124,108,76
|
||||||
|
MTSU,CUSA,"22-11",-3,105,>>,115,116,80,121,121,105,100,64,92,104,102,117,116,101,116,123,"--",110,86,105,72,98,"--",114,99,82,99,115,105,70,95,115,116,98,119,104,141,127,111,101,117,118,74,94,72,89,87,128,113,119,101,179,113,119,105,110
|
||||||
|
Chattanooga,SC,"24-9",,106,>>,107,120,115,118,103,84,121,71,110,120,107,118,139,104,132,119,"--",88,120,107,85,83,"--",121,82,91,89,124,108,98,75,122,99,104,118,90,134,111,96,112,121,116,93,93,87,94,117,126,98,117,105,65,133,132,115,67
|
||||||
|
Virginia,ACC,"15-17",-6,107,>>,102,82,98,103,104,113,88,122,132,93,108,106,96,108,94,100,"--",114,90,103,120,107,"--",101,134,107,114,99,103,111,165,94,100,102,99,152,100,107,100,102,105,100,117,130,124,111,112,93,120,91,99,131,98,113,110,111
|
||||||
|
St Louis,A10,"19-14",-3,108,>>,123,107,116,109,123,132,109,83,83,107,106,107,108,111,123,111,"--",132,112,113,118,58,"--",102,107,115,125,107,91,105,100,99,109,118,108,127,108,96,121,111,103,102,107,97,85,122,115,104,114,115,116,116,108,106,101,97
|
||||||
|
Washington St,WCC,"19-14",+2,109,>>,116,129,103,117,125,128,96,117,140,98,112,103,106,109,106,116,"--",105,100,120,114,78,"--",119,114,110,112,118,122,108,125,107,121,96,125,95,114,129,106,104,124,119,111,90,116,123,116,106,124,90,93,85,112,115,112,120
|
||||||
|
Notre Dame,ACC,"15-18",+2,110,>>,95,92,120,93,96,134,99,173,141,96,111,109,89,107,96,87,"--",142,107,101,142,130,"--",99,142,136,132,95,110,139,170,88,96,115,96,140,89,94,117,106,92,95,139,173,146,118,118,76,103,100,112,168,92,101,103,113
|
||||||
|
Belmont,MVC,"22-11",+2,111,>>,134,140,91,129,129,99,102,90,116,108,105,123,122,113,129,137,"--",117,94,126,86,93,"--",125,121,97,120,131,109,78,121,119,133,109,131,92,162,144,116,105,125,128,82,121,93,112,102,119,140,108,98,111,137,103,129,85
|
||||||
|
CS Northridge,BWC,"22-10",-4,112,>>,106,105,121,119,119,98,112,113,104,119,110,101,118,115,137,129,"--",107,116,110,92,183,"--",117,97,104,108,116,125,114,94,121,136,113,114,100,133,132,120,118,113,115,109,110,117,109,126,138,104,146,124,79,114,143,104,124
|
||||||
|
Furman,SC,"25-9",-3,113,>>,133,125,113,132,137,79,122,74,126,130,117,124,150,110,142,128,"--",94,116,117,84,111,"--",138,112,96,88,144,121,88,101,138,126,105,132,88,136,128,99,110,147,139,89,107,81,95,105,171,121,114,106,106,138,127,127,100
|
||||||
|
Washington,B10,"13-18",,114,>>,104,99,112,107,107,117,83,166,165,87,114,97,95,121,119,105,"--",112,93,129,126,144,"--",113,158,116,107,101,123,133,203,96,113,93,109,153,107,116,105,108,116,107,131,109,109,140,124,117,138,98,102,200,100,110,117,145
|
||||||
|
Samford,SC,"22-10",+3,115,>>,110,166,134,115,112,101,138,93,87,134,119,112,130,122,136,115,"--",106,139,108,108,95,"--",130,89,112,94,126,132,117,67,129,114,117,129,91,115,121,112,121,132,124,112,105,99,104,129,133,94,125,126,112,123,142,116,136
|
||||||
|
G Washington,A10,"21-12",+1,116,>>,129,111,127,116,116,126,123,135,105,118,120,119,114,120,117,117,"--",134,126,116,125,101,"--",118,105,129,124,123,113,115,97,113,124,128,120,115,116,108,126,113,111,117,116,125,119,131,111,108,119,130,128,81,117,125,124,117
|
||||||
|
FL Atlantic,AAC,"18-15",-2,117,>>,109,131,129,110,113,147,130,104,96,126,113,113,110,127,109,107,"--",157,124,114,133,112,"--",111,128,130,164,112,111,127,120,105,111,133,115,119,102,115,138,126,119,114,132,123,139,125,121,115,115,105,121,117,104,104,111,114
|
||||||
|
Jacksonville St,CUSA,"22-12",+7,118,>>,113,112,89,130,105,121,113,70,138,115,122,125,135,112,121,143,"--",123,105,119,95,135,"--",122,110,99,116,127,114,90,113,127,120,116,130,137,153,153,135,115,129,123,103,120,90,116,99,129,130,127,118,150,125,144,122,101
|
||||||
|
N Colorado,BSC,"25-9",+3,119,>>,124,108,133,124,124,112,135,116,128,136,121,104,128,126,118,130,"--",104,133,123,115,126,"--",123,116,118,109,121,137,129,98,131,131,111,112,97,128,122,110,129,109,122,123,99,143,113,128,134,112,124,113,88,119,126,114,118
|
||||||
|
Providence,BE,"12-20",-4,120,>>,94,97,151,94,98,159,114,196,114,103,116,102,88,130,105,90,"--",161,130,112,170,141,"--",98,130,150,161,90,116,171,146,92,105,127,93,156,83,93,131,124,93,92,167,160,149,145,130,75,102,97,127,191,89,96,100,177
|
||||||
|
Col Charleston,CAA,"24-9",-2,121,>>,148,148,105,149,152,73,117,75,121,124,123,144,158,116,159,140,"--",109,107,136,93,88,"--",156,106,98,104,156,119,79,102,139,145,106,158,84,123,131,98,114,155,147,81,124,91,114,119,142,142,118,108,67,159,135,150,94
|
||||||
|
Robert Morris,HL,"26-8",+8,122,>>,144,110,110,152,138,95,131,92,129,135,130,139,152,117,148,171,"--",95,124,133,100,124,"--",139,108,111,105,139,112,92,92,144,138,114,126,98,168,137,101,119,144,138,96,115,110,108,113,140,137,131,115,64,151,123,139,77
|
||||||
|
North Alabama,ASUN,"24-10",+1,123,>>,117,124,143,122,108,122,159,114,111,145,133,122,127,118,111,132,"--",119,155,111,131,102,"--",116,92,127,110,119,127,131,78,156,135,130,117,99,155,135,132,137,110,121,129,112,144,120,134,132,99,154,144,57,124,129,113,127
|
||||||
|
Syracuse,ACC,"14-19",-1,124,>>,119,109,124,106,114,139,103,172,147,102,135,135,103,125,107,101,"--",148,110,122,150,117,"--",109,154,145,146,108,115,141,180,102,112,120,104,167,97,105,123,122,118,103,145,186,147,138,132,95,132,107,119,172,109,102,133,123
|
||||||
|
Kent,MAC,"22-11",-5,125,>>,127,143,123,136,120,111,134,72,101,138,128,141,140,128,120,135,"--",120,126,131,109,68,"--",141,122,125,131,141,120,101,106,124,118,142,142,116,129,126,130,117,128,140,106,116,115,119,110,143,135,136,133,103,135,147,128,104
|
||||||
|
Louisiana Tech,CUSA,"20-12",-5,126,>>,125,142,114,125,126,118,120,98,113,116,124,129,126,114,133,127,"--",135,112,127,116,134,"--",120,93,117,127,128,117,109,90,130,119,132,134,121,140,120,150,130,136,120,115,138,103,137,120,161,128,128,134,120,136,128,126,147
|
||||||
|
Montana,BSC,"25-9",+15,127,>>,158,114,109,165,161,89,116,66,152,128,129,136,168,135,135,173,"--",79,110,142,82,108,"--",154,123,109,85,154,141,102,109,173,157,88,143,114,173,159,90,123,139,156,97,102,125,121,127,187,158,123,95,77,161,140,143,82
|
||||||
|
Miami OH,MAC,"25-9",+8,128,>>,152,132,104,153,149,86,133,88,143,133,138,142,162,134,145,154,"--",101,122,137,105,96,"--",157,104,120,111,160,130,97,88,155,150,125,156,107,143,148,107,120,150,154,98,117,111,110,122,158,139,134,120,80,165,139,147,108
|
||||||
|
DePaul,BE,"14-19",+4,129,>>,114,118,148,112,117,144,110,222,155,110,115,120,97,123,112,109,"--",137,130,124,175,147,"--",107,180,166,145,104,140,169,198,111,122,123,106,176,105,118,118,127,102,110,166,177,170,150,133,94,129,110,117,161,103,92,119,168
|
||||||
|
California,ACC,"14-19",-1,130,>>,108,115,132,113,110,140,108,201,148,106,127,127,99,119,122,112,"--",162,116,115,161,201,"--",103,162,144,160,102,133,155,188,101,103,134,101,173,104,109,140,125,114,108,158,189,154,144,137,98,125,120,132,169,105,105,125,162
|
||||||
|
St Thomas MN,SL,"24-10",-3,131,>>,121,136,147,131,128,127,143,112,124,144,118,114,136,133,114,141,"--",121,147,130,124,137,"--",135,118,124,119,120,144,135,93,146,139,124,135,96,149,133,133,142,112,131,135,113,142,129,131,125,117,143,129,148,126,169,118,150
|
||||||
|
Wichita St,AAC,"19-14",-1,132,>>,135,146,125,127,135,143,124,140,137,125,125,126,117,132,140,122,"--",145,122,134,137,136,"--",131,139,126,143,134,129,119,134,116,132,129,138,136,120,124,129,132,152,126,127,122,140,146,109,118,153,112,125,114,127,146,134,144
|
||||||
|
Cornell,Ivy,"18-11",+4,133,>>,130,126,155,120,131,138,162,120,108,155,136,152,138,124,126,118,"--",143,160,118,147,85,"--",132,111,154,140,125,118,145,85,151,115,156,121,134,117,106,134,144,106,125,141,155,141,128,160,165,108,149,158,196,144,112,120,119
|
||||||
|
Illinois St,MVC,"19-14",-2,134,>>,138,170,128,140,141,151,132,129,120,129,131,134,124,136,131,139,"--",164,126,138,130,76,"--",134,135,131,156,135,135,130,127,132,144,141,137,135,124,149,155,128,120,137,130,156,123,136,123,116,141,129,131,127,141,120,121,138
|
||||||
|
UC Riverside,BWC,"21-12",-9,135,>>,157,130,108,157,158,104,106,77,171,121,126,128,154,138,164,169,"--",96,106,147,83,180,"--",151,137,106,100,151,146,103,139,149,178,107,150,142,200,174,119,131,142,150,105,84,98,130,114,145,157,144,114,115,146,195,142,131
|
||||||
|
Towson,CAA,"22-11",-9,136,>>,160,167,126,150,151,129,139,79,135,147,134,168,172,141,168,147,"--",124,133,143,110,100,"--",159,125,122,126,161,124,110,108,158,142,126,157,118,145,141,124,134,167,152,114,128,114,115,125,135,145,132,130,97,168,133,151,92
|
||||||
|
South Alabama,SBC,"21-11",-3,137,>>,126,141,145,126,115,135,156,137,107,151,142,157,132,129,134,131,"--",130,150,121,144,156,"--",126,126,138,147,130,138,138,117,133,117,161,127,132,138,117,136,138,137,132,140,127,158,132,144,139,122,150,154,104,122,136,123,151
|
||||||
|
NC State,ACC,"12-19",,138,>>,111,119,153,105,127,166,125,247,150,113,144,133,98,139,113,97,"--",175,133,128,187,146,"--",115,169,165,158,109,139,180,207,108,107,152,113,139,93,104,148,136,115,109,181,203,179,159,148,101,127,109,148,199,102,109,132,170
|
||||||
|
Kennesaw,CUSA,"19-14",+1,139,>>,136,128,122,146,130,150,127,99,154,127,137,140,143,137,124,163,"--",158,120,135,119,110,"--",133,129,128,134,137,131,121,143,147,140,131,133,168,185,158,158,139,140,134,128,142,101,142,139,152,151,152,136,156,130,145,137,143
|
||||||
|
WI Milwaukee,HL,"21-11",+1,140,>>,137,160,146,143,144,133,152,119,127,149,145,138,146,140,162,145,"--",140,150,140,135,121,"--",142,120,133,139,140,143,136,110,135,141,144,147,126,146,138,144,140,148,142,137,139,133,134,149,151,123,160,146,145,152,151,135,134
|
||||||
|
S Dakota St,SL,"20-12",+2,141,>>,122,173,164,134,134,145,157,163,123,156,132,115,119,131,130,136,"--",131,162,149,156,163,"--",136,143,142,133,117,151,163,112,161,129,143,145,111,158,145,146,162,127,135,162,126,169,154,140,130,136,136,152,122,121,177,130,169
|
||||||
|
Wofford,SC,"19-15",+6,142,>>,128,137,175,123,118,183,176,125,98,167,147,137,155,143,143,126,"--",187,182,125,158,82,"--",128,119,167,171,136,142,172,91,154,127,169,124,175,139,113,187,159,146,130,170,132,134,135,163,162,106,159,167,119,143,121,131,139
|
||||||
|
Tulane,AAC,"19-14",+11,143,>>,139,121,136,137,139,170,154,165,142,153,141,155,123,145,138,133,"--",174,153,146,163,167,"--",129,163,169,170,133,126,148,150,128,137,162,128,145,127,130,154,151,123,133,155,164,174,161,146,114,156,126,145,124,129,122,145,105
|
||||||
|
Bryant,AEC,"23-11",+13,144,>>,146,153,172,135,148,162,185,110,102,171,143,169,171,146,153,121,"--",139,179,132,151,80,"--",155,103,162,154,150,136,154,71,157,123,170,144,124,131,125,143,161,135,143,149,134,164,127,159,153,110,165,165,174,157,118,141,106
|
||||||
|
N Dakota St,SL,"21-11",+1,145,>>,131,150,162,144,133,136,158,156,125,161,139,121,134,150,125,152,"--",136,160,153,152,92,"--",140,138,137,130,122,154,157,128,162,158,137,146,125,174,140,151,163,145,141,154,135,151,151,142,148,143,164,147,130,128,228,136,182
|
||||||
|
Winthrop,BSo,"23-11",-1,146,>>,163,145,130,154,163,131,145,100,134,154,154,149,169,151,169,150,"--",125,143,144,122,153,"--",161,147,132,135,164,145,123,148,153,159,135,149,138,156,154,127,133,159,161,124,133,136,126,135,181,155,153,138,188,173,150,163,109
|
||||||
|
James Madison,SBC,"20-12",,147,>>,164,134,131,159,159,137,147,84,136,150,156,159,170,153,155,158,"--",146,139,160,128,71,"--",175,141,134,128,178,153,126,126,143,148,146,190,122,137,163,145,145,160,165,125,144,108,141,154,173,165,142,139,144,181,198,158,126
|
||||||
|
Rhode Island,A10,"18-13",-13,148,>>,156,163,144,147,153,142,136,141,119,132,149,154,129,156,163,142,"--",156,139,157,146,142,"--",152,156,147,138,153,159,132,149,123,167,147,165,123,135,152,139,135,151,153,133,158,127,162,150,137,163,148,143,135,142,130,152,183
|
||||||
|
New Mexico St,CUSA,"17-15",-10,149,>>,132,139,141,139,132,152,146,153,149,139,146,130,137,155,104,148,"--",173,145,139,149,109,"--",124,149,149,166,129,134,156,168,136,125,159,123,177,164,151,180,156,131,129,156,140,131,165,165,144,149,163,163,184,118,160,144,164
|
||||||
|
UC Santa Barbara,BWC,"21-13",+10,150,>>,145,135,149,151,147,156,137,175,163,146,150,132,144,144,150,156,"--",150,137,159,134,189,"--",145,160,146,155,146,152,147,159,145,170,149,148,146,157,150,171,149,138,148,143,148,160,158,136,155,162,151,153,110,134,171,140,146
|
||||||
|
NE Omaha,SL,"22-12",,151,>>,151,123,152,172,157,153,155,126,151,164,140,145,167,142,127,185,"--",138,157,156,145,164,"--",144,151,151,144,142,147,149,129,189,161,138,136,143,211,157,149,165,130,146,148,129,156,147,153,163,161,158,141,96,158,162,160,116
|
||||||
|
Murray St,MVC,"16-17",-3,152,>>,140,138,150,133,142,154,148,145,156,143,148,131,141,154,160,125,"--",210,147,145,153,193,"--",137,157,160,201,145,149,165,151,137,154,167,140,171,121,146,201,147,143,144,161,193,138,149,138,123,152,140,151,175,140,117,146,165
|
||||||
|
Loy Marymount,WCC,"17-15",-1,153,>>,161,156,140,156,156,146,126,167,166,131,159,161,133,147,147,155,"--",133,132,168,157,138,"--",150,183,141,142,148,156,144,210,140,149,139,154,161,169,167,161,143,134,157,146,150,153,168,143,141,191,133,135,134,154,141,162,176
|
||||||
|
UNC Greensboro,SC,"20-12",+2,154,>>,141,151,169,145,143,141,165,147,139,165,155,143,163,148,171,146,"--",147,166,141,154,205,"--",149,144,152,141,157,157,160,131,169,151,157,155,149,125,143,152,153,154,158,157,141,137,139,168,168,126,161,161,209,149,164,138,152
|
||||||
|
Virginia Tech,ACC,"13-19",-11,155,>>,155,117,139,141,162,155,118,209,216,123,152,153,115,149,144,120,"--",185,129,151,171,216,"--",146,215,156,176,138,150,166,254,120,128,140,139,181,122,142,147,141,141,136,169,199,166,169,158,110,185,121,137,214,147,131,167,154
|
||||||
|
Davidson,A10,"17-16",-6,156,>>,154,165,158,138,146,178,151,180,159,142,151,158,131,157,146,134,"--",184,150,158,172,116,"--",147,155,163,180,147,148,158,155,125,153,163,152,151,130,139,164,150,149,145,159,183,157,174,169,122,160,135,156,187,139,134,153,179
|
||||||
|
Duquesne,A10,"13-19",-2,157,>>,143,144,180,128,136,188,168,189,118,158,164,156,125,166,128,124,"--",257,179,150,200,62,"--",127,150,194,230,132,128,196,123,126,134,194,122,209,118,123,275,168,126,127,188,212,145,189,161,113,144,166,185,197,131,138,149,158
|
||||||
|
UTEP,CUSA,"18-15",+5,158,>>,150,175,137,161,154,157,142,139,146,140,153,148,157,159,141,165,"--",177,139,167,141,128,"--",158,152,139,152,155,160,143,154,163,152,151,170,179,196,164,176,170,158,159,144,161,128,177,157,172,176,156,155,194,148,215,157,206
|
||||||
|
WKU,CUSA,"17-15",-6,159,>>,153,186,135,158,155,160,141,143,145,137,160,150,153,152,154,159,"--",172,133,163,148,131,"--",169,159,140,150,163,163,140,164,142,169,155,188,154,198,166,174,158,170,160,142,168,132,172,141,174,179,155,157,163,156,203,159,193
|
||||||
|
Princeton,Ivy,"19-11",+1,160,>>,185,157,138,170,179,120,149,97,176,160,157,171,189,162,207,160,"--",128,145,176,129,184,"--",199,171,135,129,187,161,125,158,164,160,136,207,128,132,147,125,146,180,181,126,146,118,153,156,203,184,141,142,244,191,196,166,130
|
||||||
|
IL Chicago,MVC,"18-14",+3,161,>>,168,171,142,167,175,148,140,132,167,141,158,147,160,164,191,161,"--",166,137,175,140,182,"--",165,165,153,159,166,168,142,187,160,181,148,178,148,154,211,153,148,181,172,138,145,130,157,155,167,167,157,140,241,176,155,154,184
|
||||||
|
Radford,BSo,"20-13",+4,162,>>,165,174,157,166,150,161,161,131,168,162,165,174,186,172,152,178,"--",144,157,152,139,173,"--",170,136,155,153,170,165,150,133,175,173,150,160,163,176,175,142,152,156,167,152,143,155,143,175,198,148,176,159,146,180,173,161,172
|
||||||
|
ETSU,SC,"19-13",+2,163,>>,142,161,183,148,140,174,187,174,144,175,163,160,164,161,165,151,"--",182,191,148,173,206,"--",148,148,173,163,152,162,182,111,166,143,174,153,147,151,136,175,175,162,155,180,174,152,167,167,166,131,169,174,132,145,170,148,148
|
||||||
|
Cleveland St,HL,"21-12",-2,164,>>,167,184,159,169,167,149,163,159,180,163,167,163,175,167,174,172,"--",154,162,164,155,157,"--",167,145,158,151,165,155,153,130,165,162,168,164,160,170,172,157,154,177,171,151,152,150,152,162,175,159,168,168,126,184,191,174,161
|
||||||
|
Norfolk St,MEAC,"24-10",+3,165,>>,172,183,163,178,180,125,183,128,181,194,161,167,201,173,195,174,"--",115,182,154,143,199,"--",183,140,157,121,184,176,152,118,194,199,145,179,113,171,160,122,164,202,191,150,136,168,124,151,202,134,183,162,100,182,183,183,128
|
||||||
|
PFW,HL,"19-13",+3,166,>>,149,180,177,155,164,171,173,160,160,170,169,162,165,160,176,149,"--",168,176,155,162,160,"--",162,146,172,162,158,173,173,132,170,156,173,167,157,148,161,172,167,164,163,173,157,167,155,181,192,133,179,176,159,170,182,156,196
|
||||||
|
Temple,AAC,"17-15",-9,167,>>,169,194,161,160,171,163,160,179,172,159,162,146,149,175,158,153,"--",191,157,177,176,203,"--",164,185,171,175,169,169,164,204,148,176,165,173,141,142,173,165,166,175,162,165,165,180,186,152,127,187,138,150,186,150,152,164,157
|
||||||
|
Central Conn,NEC,"25-7",-9,168,>>,190,181,165,186,183,103,178,155,164,186,179,194,208,163,194,191,"--",100,175,161,136,197,"--",195,131,143,117,199,175,137,107,199,201,154,186,108,167,170,113,155,198,203,136,137,183,133,145,194,147,199,172,167,196,192,168,137
|
||||||
|
Marshall,SBC,"20-13",+1,169,>>,175,152,166,173,166,172,177,146,162,173,171,177,178,169,166,176,"--",176,171,165,166,122,"--",172,164,175,173,175,158,162,137,172,146,177,171,165,179,156,169,171,176,169,164,166,163,171,164,177,172,170,171,125,186,161,177,149
|
||||||
|
East Carolina,AAC,"19-14",-3,170,>>,179,149,154,171,176,164,153,184,173,157,168,179,159,165,182,167,"--",180,153,180,168,219,"--",173,189,159,172,171,164,151,201,141,155,160,176,162,159,185,156,157,179,166,153,169,162,191,147,159,202,147,149,203,169,167,176,140
|
||||||
|
Lamar,SLC,"20-13",+3,171,>>,162,147,168,182,165,177,181,134,169,197,183,182,180,158,172,202,"--",149,172,166,179,192,"--",166,168,164,165,168,167,161,161,186,187,164,161,187,214,187,160,177,189,174,171,147,187,156,183,200,170,196,178,154,155,187,169,163
|
||||||
|
Nicholls St,SLC,"20-13",-1,172,>>,170,185,171,176,173,169,179,144,191,188,189,170,181,171,170,179,"--",151,172,170,167,170,"--",168,172,161,148,167,170,167,163,184,193,158,163,184,180,178,162,173,182,179,168,149,165,160,172,213,164,188,177,206,177,184,171,186
|
||||||
|
Cal Baptist,WAC,"17-15",-1,173,>>,171,154,174,163,170,187,167,197,175,166,166,166,161,174,157,162,"--",194,165,172,184,169,"--",174,181,178,191,162,178,175,193,167,168,176,172,188,166,162,358,169,173,164,179,179,190,175,177,147,175,172,170,153,164,188,172,173
|
||||||
|
San Jose St,MWC,"15-19",+3,174,>>,166,155,160,174,169,158,150,218,210,148,172,173,142,170,156,180,"--",200,149,173,194,210,"--",160,201,180,212,149,166,183,228,159,172,172,159,221,181,202,179,174,172,151,190,197,194,201,166,146,192,162,164,211,162,153,175,185
|
||||||
|
UNC Asheville,BSo,"21-11",+1,175,>>,195,224,156,199,200,130,166,102,229,174,175,186,226,177,226,192,"--",127,162,181,132,200,"--",213,161,148,136,210,187,146,162,198,208,153,210,159,190,206,137,160,206,201,147,151,148,148,190,246,174,180,160,136,218,249,192,156
|
||||||
|
TAM C. Christi,SLC,"20-14",-3,176,>>,159,169,197,162,160,203,212,190,179,201,208,164,166,168,149,166,"--",169,199,169,207,154,"--",153,166,187,168,159,177,191,156,195,182,184,151,174,160,181,246,181,186,176,202,153,206,166,191,197,154,206,221,216,153,149,165,225
|
||||||
|
Seattle,WAC,"14-18",-2,177,>>,147,164,217,142,145,201,207,215,133,193,170,151,147,181,139,138,"--",241,212,162,225,165,"--",143,188,221,232,143,171,228,185,150,147,215,141,212,144,134,325,197,153,149,229,207,212,190,194,154,150,181,211,238,132,159,155,191
|
||||||
|
Appalachian St,SBC,"17-14",+1,178,>>,177,178,181,168,168,198,189,162,157,185,180,190,184,182,161,168,"--",188,182,184,188,97,"--",191,177,181,194,183,180,181,172,176,164,204,194,164,163,168,254,179,199,180,182,182,175,183,213,207,177,182,188,170,171,189,170,207
|
||||||
|
FGCU,ASUN,"18-14",-1,179,>>,173,219,184,177,172,194,188,195,178,183,178,176,177,176,167,181,"--",186,189,179,181,178,"--",171,182,183,181,177,186,186,179,183,185,178,175,170,178,176,248,184,178,184,184,175,176,180,174,185,169,192,180,138,163,205,173,190
|
||||||
|
Jacksonville,ASUN,"19-13",+1,180,>>,176,208,178,192,178,168,184,158,198,177,174,196,196,180,189,210,"--",152,182,182,164,175,"--",187,153,168,149,195,194,174,174,188,209,166,199,183,225,213,168,187,183,197,175,154,172,182,193,201,182,191,173,121,175,243,181,197
|
||||||
|
Boston College,ACC,"12-19",+1,181,>>,193,158,170,175,182,184,144,259,250,152,177,172,148,204,173,164,"--",199,155,196,208,222,"--",177,246,190,185,176,191,193,271,134,174,171,166,205,161,183,166,172,163,170,195,208,203,215,173,150,234,145,166,231,160,176,202,204
|
||||||
|
Youngstown St,HL,"21-13",+1,182,>>,194,191,173,198,202,180,174,178,193,180,181,185,205,179,210,190,"--",183,176,186,165,227,"--",201,179,174,182,196,174,170,184,182,186,175,198,155,188,207,178,176,194,199,172,178,182,170,170,188,188,178,175,141,211,238,190,142
|
||||||
|
Cal Poly,BWC,"16-19",+12,183,>>,178,133,179,202,184,173,164,181,183,172,173,165,176,178,186,221,"--",225,169,183,174,265,"--",163,204,195,215,174,190,203,217,190,198,185,162,229,236,209,188,188,157,178,193,213,177,194,171,176,199,203,179,177,172,163,180,175
|
||||||
|
Ohio,MAC,"16-16",-4,184,>>,186,187,182,184,196,181,192,170,131,191,201,180,187,183,180,170,"--",234,189,188,192,152,"--",193,192,185,226,188,181,185,160,168,166,222,196,195,152,165,216,180,161,189,185,221,161,185,186,178,186,190,202,201,195,202,179,219
|
||||||
|
Drexel,CAA,"18-15",+1,185,>>,188,188,204,181,185,218,204,198,177,200,176,184,197,184,184,177,"--",231,204,185,198,221,"--",184,174,204,222,190,172,195,152,202,179,201,174,169,175,171,274,190,190,183,192,202,197,187,188,170,173,186,199,166,189,137,185,155
|
||||||
|
Oakland,HL,"16-18",-1,186,>>,182,197,185,188,177,191,190,171,188,190,184,192,191,187,192,201,"--",216,192,189,189,166,"--",182,190,188,200,179,182,197,200,180,171,197,181,201,206,190,315,195,191,182,194,220,171,193,192,157,195,185,191,181,194,185,193,166
|
||||||
|
E Kentucky,ASUN,"18-14",+2,187,>>,181,210,193,197,181,199,197,186,200,195,186,200,198,190,175,211,"--",170,198,174,186,186,"--",180,173,186,178,192,193,192,181,207,205,187,187,191,224,198,181,199,174,196,199,172,201,192,179,191,168,195,187,147,188,241,187,200
|
||||||
|
Merrimack,MAAC,"18-15",-4,188,>>,196,212,196,190,187,209,208,142,153,202,185,225,212,193,198,193,"--",196,196,187,180,151,"--",198,170,200,206,201,179,184,141,206,188,208,200,185,201,177,355,182,192,194,183,176,181,178,182,186,171,216,200,137,199,175,182,171
|
||||||
|
Quinnipiac,MAAC,"20-13",+1,189,>>,211,237,194,215,213,208,215,121,158,221,190,237,234,191,211,212,"--",181,196,202,169,155,"--",222,175,177,198,213,183,178,144,200,183,203,216,158,202,188,183,186,219,208,178,162,195,176,185,219,183,213,196,176,215,212,191,159
|
||||||
|
S Illinois,MVC,"15-19",+1,190,>>,200,196,187,196,193,186,171,187,182,169,182,189,179,195,179,196,"--",254,169,204,197,158,"--",186,219,202,247,194,185,199,230,181,189,211,197,223,207,221,197,193,213,193,201,238,186,214,180,169,217,173,183,242,190,156,195,188
|
||||||
|
SE Missouri St,OVC,"21-12",+2,191,>>,197,179,200,214,203,197,225,150,161,218,203,201,215,186,196,220,"--",167,204,178,183,171,"--",197,176,191,188,202,195,188,147,244,204,190,185,207,243,215,324,185,184,210,186,163,198,164,187,212,166,229,201,171,207,216,188,189
|
||||||
|
Sam Houston St,CUSA,"13-19",-5,192,>>,174,195,189,179,174,204,186,208,207,178,194,178,190,196,151,183,"--",238,182,190,199,204,"--",181,197,211,220,185,188,219,223,179,163,210,191,235,205,192,323,214,168,177,218,229,178,220,222,210,197,193,206,305,166,231,178,198
|
||||||
|
Northeastern,CAA,"17-15",+3,193,>>,207,260,198,203,209,220,194,177,197,199,187,205,209,200,197,205,"--",220,194,200,185,223,"--",214,194,184,217,212,209,187,175,203,197,198,217,192,193,204,206,192,210,209,187,209,191,197,184,196,201,200,189,173,213,186,207,212
|
||||||
|
Queens NC,ASUN,"19-14",+3,194,>>,202,162,202,217,204,200,209,194,228,208,197,202,217,203,190,230,"--",171,204,191,190,194,"--",200,199,189,167,204,213,200,202,232,218,179,195,186,231,216,182,203,200,204,196,171,188,195,211,230,190,207,186,190,202,217,199,220
|
||||||
|
S Carolina St,MEAC,"20-13",+4,195,>>,183,198,228,189,190,229,258,223,206,247,192,181,211,185,185,186,"--",179,257,171,224,245,"--",179,167,219,179,181,197,225,145,246,206,217,169,193,197,184,328,216,188,188,227,184,223,163,217,211,146,255,241,133,201,174,196,195
|
||||||
|
Toledo,MAC,"18-15",+10,196,>>,235,199,167,231,235,179,172,127,208,189,220,218,239,188,251,215,"--",178,166,217,159,174,"--",242,208,176,190,246,210,159,209,209,213,183,254,202,212,237,177,178,237,247,163,181,159,188,178,228,227,174,169,158,251,232,238,192
|
||||||
|
Indiana St,MVC,"14-18",+4,197,>>,205,182,205,194,201,202,191,225,217,182,193,204,195,192,203,184,"--",242,192,198,213,231,"--",185,205,215,244,200,184,217,196,196,177,221,193,200,182,220,227,204,165,195,216,241,210,223,216,190,205,167,203,252,208,157,205,201
|
||||||
|
Vermont,AEC,"21-12",-10,198,>>,247,215,192,218,242,167,211,148,230,220,204,254,265,222,232,206,"--",159,199,215,177,162,"--",256,187,179,169,259,192,179,171,215,191,188,247,166,184,169,159,194,256,231,177,180,185,184,201,255,222,194,194,234,268,211,232,129
|
||||||
|
Wyoming,MWC,"12-20",-5,199,>>,184,239,195,187,189,207,175,251,236,168,196,183,156,206,193,189,"--",211,166,192,229,243,"--",189,224,213,210,172,207,218,239,178,190,189,189,249,199,208,353,207,196,175,230,225,217,230,208,160,212,171,182,237,178,194,197,269
|
||||||
|
Elon,CAA,"17-15",+2,200,>>,189,275,223,201,199,214,216,204,170,205,188,203,202,189,228,203,"--",219,222,197,204,215,"--",207,178,207,202,205,215,207,173,205,212,205,212,182,208,203,278,201,220,205,206,198,208,200,200,189,178,221,205,165,192,179,184,256
|
||||||
|
South Florida,AAC,"13-19",-3,201,>>,203,204,209,183,198,222,199,231,215,198,211,197,174,201,202,175,"--",244,204,208,232,224,"--",190,233,222,236,193,200,216,240,174,180,226,192,210,147,195,194,211,195,187,224,239,207,227,196,179,221,175,204,225,185,190,189,232
|
||||||
|
Montana St,BSC,"15-18",+1,202,>>,180,159,242,185,186,244,227,245,192,209,195,175,183,213,188,187,"--",245,230,194,233,229,"--",188,198,230,239,182,217,247,189,204,202,219,184,213,172,180,209,221,171,186,244,244,239,207,223,182,181,205,219,192,183,166,186,230
|
||||||
|
La Salle,A10,"14-19",+9,203,>>,224,203,186,211,223,176,170,191,212,176,198,211,193,209,212,200,"--",229,176,225,201,177,"--",212,232,212,208,223,214,194,241,187,229,191,222,225,165,233,289,183,226,212,189,228,173,222,189,156,235,184,184,261,210,178,214,208
|
||||||
|
SIUE,OVC,"22-11",+3,204,>>,220,200,208,228,215,193,230,183,204,226,219,220,236,194,216,236,"--",153,214,193,193,214,"--",216,186,208,183,228,199,190,166,256,228,192,205,178,240,222,185,196,204,232,191,170,225,179,199,245,189,217,210,208,216,206,216,178
|
||||||
|
Portland St,BSC,"19-13",-13,205,>>,204,168,225,209,207,213,213,226,232,211,199,188,206,198,187,209,"--",190,217,209,211,239,"--",202,202,205,193,198,218,222,186,216,207,186,183,194,229,199,318,210,205,200,222,191,244,196,206,222,198,197,193,180,193,223,200,228
|
||||||
|
Brown,Ivy,"14-13",-1,206,>>,216,201,212,207,208,192,217,192,189,215,200,235,221,208,201,208,"--",165,217,203,202,202,"--",226,193,203,174,217,198,202,178,213,211,213,221,196,191,194,170,202,211,207,200,206,189,208,239,278,204,214,222,262,231,219,215,187
|
||||||
|
Mt St Mary's,MAAC,"22-12",+26,207,>>,251,227,176,245,249,182,196,123,225,217,206,262,264,202,264,243,"--",160,182,218,160,232,"--",255,195,182,189,258,196,168,169,259,252,180,249,172,239,250,167,206,242,249,160,185,184,181,176,242,225,204,181,162,255,210,236,141
|
||||||
|
Valparaiso,MVC,"15-19",,208,>>,212,193,188,208,210,185,180,228,211,187,191,195,192,212,217,207,"--",255,179,212,206,246,"--",194,242,216,245,206,204,206,249,197,222,214,201,236,203,246,342,189,185,206,205,237,200,212,198,184,228,189,192,233,209,148,206,211
|
||||||
|
Texas St,SBC,"16-16",+1,209,>>,201,218,213,193,195,210,220,216,202,214,213,207,199,199,205,188,"--",233,217,206,222,236,"--",208,217,220,227,208,226,220,215,192,184,223,218,197,195,197,242,215,201,202,214,224,216,218,209,208,203,202,213,227,198,180,198,222
|
||||||
|
Longwood,BSo,"18-14",+1,210,>>,210,252,211,206,211,189,202,210,201,216,215,198,213,207,229,204,"--",192,204,213,196,212,"--",215,209,199,187,216,227,201,220,210,219,199,215,189,189,196,292,191,231,226,197,190,193,203,220,214,206,219,215,247,206,236,210,239
|
||||||
|
Dartmouth,Ivy,"14-14",-11,211,>>,209,214,236,210,205,227,232,205,174,232,210,224,214,215,177,213,"--",207,234,201,219,188,"--",196,218,214,221,189,189,226,205,211,210,238,168,224,187,189,211,198,169,190,223,219,219,202,240,244,196,240,233,317,200,172,209,215
|
||||||
|
American Univ,PL,"22-12",+13,212,>>,248,238,191,240,238,195,203,149,231,219,230,255,251,218,243,241,"--",163,195,223,182,185,"--",248,207,193,177,248,211,176,194,225,247,181,242,180,227,217,163,200,257,240,176,167,214,198,195,249,230,226,197,185,247,213,226,160
|
||||||
|
Hampton,CAA,"17-16",+1,213,>>,217,217,216,224,214,205,221,185,194,223,212,213,222,216,204,234,"--",228,228,214,212,179,"--",210,206,218,211,211,201,212,190,234,217,212,204,222,222,200,285,218,203,213,209,214,202,209,218,216,216,248,217,205,219,193,212,205
|
||||||
|
SE Louisiana,SLC,"18-14",+5,214,>>,192,206,220,213,194,228,229,219,243,229,232,199,207,197,208,226,"--",195,226,199,215,259,"--",204,200,206,195,197,224,210,192,228,234,193,206,220,232,230,184,222,197,215,215,192,236,205,205,237,194,236,224,195,203,239,208,258
|
||||||
|
Miami FL,ACC,"7-24",+2,215,>>,187,176,224,164,192,300,198,287,234,184,209,221,145,205,183,144,"--",263,214,195,287,226,"--",176,267,267,256,180,208,251,282,152,165,258,180,286,119,155,300,223,187,173,272,271,251,241,212,131,218,177,257,276,167,158,225,214
|
||||||
|
N Kentucky,HL,"17-16",+2,216,>>,226,190,199,235,233,206,200,207,226,207,222,212,218,210,249,233,"--",221,204,221,203,207,"--",217,222,209,213,221,202,205,224,212,192,207,225,211,234,205,202,217,222,222,204,210,192,216,226,218,237,210,209,183,241,214,229,174
|
||||||
|
UT San Antonio,AAC,"12-19",-8,217,>>,198,192,230,195,191,248,224,224,184,210,205,191,182,225,181,199,"--",252,228,216,242,181,"--",178,228,233,246,186,212,239,227,191,195,233,182,245,186,210,339,228,166,185,236,242,227,240,214,180,220,218,226,269,187,197,201,259
|
||||||
|
Maine,AEC,"20-14",+6,218,>>,214,245,246,205,220,251,243,188,205,243,202,229,244,226,235,197,"--",204,244,205,210,228,"--",230,184,228,214,230,221,221,153,222,216,220,220,190,183,193,237,212,228,219,213,187,224,199,197,229,180,228,220,178,214,181,203,199
|
||||||
|
Seton Hall,BE,"7-25",-4,219,>>,199,177,238,180,206,302,193,292,264,181,207,187,151,219,220,157,"--",253,204,222,281,267,"--",203,273,251,254,173,206,259,302,171,175,218,177,259,150,191,326,227,209,168,261,223,240,258,204,136,238,139,207,294,174,165,211,243
|
||||||
|
Massachusetts,A10,"12-20",-16,220,>>,218,223,221,200,217,231,195,237,214,192,224,216,185,229,218,182,"--",276,212,228,237,208,"--",205,234,227,259,207,203,232,233,177,200,235,211,228,177,182,207,213,208,198,226,250,204,250,221,149,233,198,228,274,204,208,221,210
|
||||||
|
Bucknell,PL,"18-15",,221,>>,228,240,226,221,226,255,236,203,203,237,225,248,224,224,213,219,"--",202,231,210,223,168,"--",218,210,217,224,219,205,208,182,217,221,225,208,198,215,186,261,219,232,224,207,195,243,206,203,199,213,254,239,149,222,199,213,202
|
||||||
|
Hawaii,BWC,"15-16",-2,222,>>,221,221,190,230,227,196,169,243,209,179,221,206,194,211,237,237,"--",206,172,239,205,217,"--",223,229,198,199,222,234,189,231,193,241,206,239,199,256,236,195,208,217,220,203,231,199,243,229,239,252,201,208,202,224,245,223,231
|
||||||
|
William & Mary,CAA,"17-15",-1,223,>>,227,247,206,229,229,211,206,168,223,206,216,232,240,223,221,217,"--",215,199,220,195,159,"--",241,196,196,197,238,223,198,195,227,214,202,241,204,218,241,350,205,233,234,198,205,196,204,207,225,215,230,195,228,235,226,218,233
|
||||||
|
Rice,AAC,"13-19",-8,224,>>,191,233,240,191,188,262,237,272,196,225,217,208,173,220,178,195,"--",261,244,229,269,225,"--",192,211,232,248,191,228,236,222,201,194,240,203,218,194,179,221,248,193,192,235,263,281,269,233,164,226,215,242,217,179,227,204,284
|
||||||
|
Southern Univ,SWAC,"20-12",-12,225,>>,230,249,214,233,234,175,248,211,263,257,233,209,249,244,214,227,"--",141,236,207,216,279,"--",235,203,192,157,235,241,204,206,231,251,196,229,208,220,227,186,220,270,241,217,159,228,173,224,265,193,241,218,140,228,235,224,237
|
||||||
|
South Dakota,SL,"19-14",+1,226,>>,236,189,210,247,240,224,201,221,240,222,218,214,232,214,236,248,"--",189,199,241,209,283,"--",225,240,201,186,225,238,211,245,255,238,182,231,217,257,242,220,226,248,235,210,188,220,224,230,247,249,224,190,193,230,266,233,213
|
||||||
|
Pepperdine,WCC,"13-22",+2,227,>>,222,226,218,227,216,223,205,260,247,203,226,217,188,217,200,232,"--",239,204,233,261,198,"--",206,262,252,251,209,222,238,279,214,223,228,209,247,238,249,316,229,212,216,248,232,254,247,210,183,253,187,225,221,205,168,227,224
|
||||||
|
Abilene Chr,WAC,"16-16",-2,228,>>,225,211,222,223,218,216,223,242,256,212,214,219,233,236,199,224,"--",217,217,224,228,213,"--",233,213,224,205,229,233,230,229,219,225,216,230,237,244,212,249,237,239,214,232,227,238,236,243,260,231,208,212,275,233,240,228,203
|
||||||
|
UC Davis,BWC,"15-17",-1,229,>>,239,207,201,242,251,190,182,199,246,196,235,230,238,230,250,242,"--",218,182,246,191,240,"--",247,231,197,203,243,249,209,234,240,259,200,248,227,259,262,234,224,244,236,208,236,205,235,215,250,257,212,198,218,243,270,237,236
|
||||||
|
Hofstra,CAA,"15-18",+2,230,>>,213,248,254,204,219,234,241,240,227,235,228,231,216,231,225,194,"--",270,248,230,239,209,"--",221,216,237,269,220,232,246,219,220,203,243,224,215,204,201,286,234,235,217,239,253,250,231,219,220,208,209,237,286,226,154,217,273
|
||||||
|
Idaho St,BSC,"15-15",-8,231,>>,206,205,259,216,212,253,245,275,221,238,227,193,200,227,209,222,"--",214,248,226,251,297,"--",209,235,242,231,203,246,264,226,226,227,232,202,234,233,234,235,241,238,211,264,222,275,226,253,238,207,231,238,222,197,201,194,255
|
||||||
|
Wright St,HL,"15-18",+2,232,>>,219,228,241,225,222,217,233,234,224,227,237,215,220,232,219,223,"--",271,236,231,235,195,"--",228,212,236,252,227,237,240,208,218,215,249,236,226,216,225,352,236,215,229,234,251,218,239,228,205,219,233,249,210,223,230,220,261
|
||||||
|
Delaware,CAA,"16-20",+11,233,>>,233,229,247,236,231,212,239,200,186,241,223,242,237,237,234,231,"--",301,241,235,230,161,"--",229,221,250,281,233,219,235,214,235,224,245,233,253,228,224,191,238,227,228,231,262,213,238,225,209,229,223,236,236,237,209,235,223
|
||||||
|
Northwestern LA,SLC,"17-16",+3,234,>>,223,232,203,246,228,215,222,213,241,230,249,239,223,221,224,265,"--",193,217,234,218,257,"--",231,227,210,196,224,235,214,242,243,258,195,226,239,279,272,314,230,236,246,220,215,229,221,238,248,243,250,227,215,227,229,230,216
|
||||||
|
C Michigan,MAC,"14-17",,235,>>,208,172,233,212,197,221,254,254,218,236,238,228,210,235,215,218,"--",223,248,211,255,247,"--",211,223,246,233,218,239,255,216,208,196,262,219,270,221,223,266,243,207,218,254,235,246,233,251,227,200,252,262,254,217,242,219,275
|
||||||
|
Marist,MAAC,"20-10",-5,236,>>,269,287,207,263,272,165,218,182,244,234,234,271,276,233,285,254,"--",155,199,253,178,258,"--",280,225,170,184,273,244,177,212,247,263,209,285,150,263,261,173,209,296,268,174,196,211,210,202,269,254,235,214,155,275,280,246,229
|
||||||
|
Fordham,A10,"12-21",+6,237,>>,241,253,229,226,232,247,210,233,239,204,229,234,203,239,222,214,"--",282,224,242,240,191,"--",224,248,241,261,231,230,237,236,185,233,236,228,251,213,219,281,225,218,227,233,257,209,261,234,193,248,211,229,250,220,200,239,250
|
||||||
|
Ark Little Rock,OVC,"19-14",-2,238,>>,229,222,248,239,225,249,253,214,233,249,243,236,248,238,254,246,"--",198,232,219,217,211,"--",237,214,226,219,241,240,224,211,254,249,224,244,203,249,254,256,232,221,254,221,194,237,217,227,223,209,245,234,151,244,292,234,235
|
||||||
|
Manhattan,MAAC,"17-13",-9,239,>>,245,259,231,248,237,230,242,206,190,254,231,269,255,228,257,257,"--",197,234,236,214,238,"--",245,220,229,218,242,220,215,199,253,246,244,240,219,264,244,295,231,224,245,211,201,242,219,235,256,232,261,244,204,250,207,243,209
|
||||||
|
Campbell,CAA,"15-17",-1,240,>>,215,263,257,220,221,256,255,253,220,251,236,227,227,241,223,225,"--",249,256,232,245,241,"--",220,236,239,260,214,231,252,232,229,235,251,214,233,217,231,263,240,243,221,252,247,259,228,249,232,211,246,251,232,212,221,222,253
|
||||||
|
Ga Southern,SBC,"17-16",,241,>>,258,250,215,253,250,233,226,217,255,233,240,250,258,246,245,259,"--",227,214,254,220,220,"--",254,256,225,216,261,242,213,250,236,237,231,262,216,255,238,229,235,260,255,212,218,215,248,232,253,270,234,216,207,258,251,255,221
|
||||||
|
Richmond,A10,"10-22",-2,242,>>,246,213,252,234,241,293,234,235,235,228,247,251,219,245,227,228,"--",299,239,252,267,103,"--",238,258,258,288,236,225,256,265,223,230,268,237,282,223,226,224,254,214,225,260,285,221,280,256,204,261,222,260,281,245,222,253,240
|
||||||
|
MA Lowell,AEC,"17-15",+3,243,>>,242,264,267,219,244,265,262,244,195,252,252,266,256,247,265,198,"--",224,264,238,249,176,"--",266,191,247,235,260,253,249,177,237,220,261,261,206,192,214,293,233,249,238,240,211,248,234,266,257,210,259,266,291,261,204,242,272
|
||||||
|
Iona,MAAC,"17-17",+8,244,>>,264,243,239,259,259,254,250,212,219,256,244,274,273,243,244,252,"--",277,244,248,227,190,"--",263,237,244,284,262,216,229,225,258,232,257,259,230,251,229,238,247,240,252,225,249,234,237,231,233,255,242,247,198,279,233,252,167
|
||||||
|
Harvard,Ivy,"12-15",,245,>>,257,272,237,254,255,245,235,193,238,253,241,264,260,249,239,255,"--",212,236,257,226,218,"--",258,239,234,204,254,229,233,237,242,250,241,253,240,246,232,205,244,225,248,228,260,222,245,268,290,265,244,243,277,266,247,256,181
|
||||||
|
UT Arlington,WAC,"13-18",-8,246,>>,231,246,256,222,224,266,238,282,258,239,239,226,228,253,238,216,"--",267,244,244,258,287,"--",236,250,256,255,232,250,265,258,221,226,254,243,214,210,228,222,258,251,223,269,255,271,267,261,234,244,227,246,249,225,246,231,234
|
||||||
|
CS Bakersfield,BWC,"14-19",-5,247,>>,240,202,234,241,243,225,214,249,251,224,245,210,231,234,258,249,"--",272,222,249,231,270,"--",234,251,235,253,239,257,244,263,238,266,242,235,242,254,260,362,239,254,242,242,261,235,249,247,240,256,243,240,229,232,244,244,252
|
||||||
|
Northern Arizona,BSC,"18-15",-1,248,>>,238,216,258,244,247,270,247,270,261,248,242,223,242,242,248,244,"--",235,241,243,246,305,"--",240,255,248,237,234,263,257,246,251,254,229,227,232,248,247,313,250,234,243,255,217,277,244,260,259,236,238,232,223,234,250,248,257
|
||||||
|
UTRGV,SLC,"16-15",,249,>>,243,256,250,251,239,240,257,258,253,259,275,240,243,251,233,263,"--",201,248,251,252,230,"--",249,245,240,192,251,269,241,238,249,272,237,256,258,261,278,230,249,241,266,245,216,241,246,262,288,245,284,267,240,238,265,251,291
|
||||||
|
Evansville,MVC,"11-21",-2,250,>>,252,255,235,252,262,274,219,257,265,213,251,241,241,252,261,250,"--",297,224,256,241,249,"--",243,254,243,291,245,248,250,269,248,248,250,251,267,269,276,244,242,229,244,247,275,233,268,242,224,266,237,230,257,274,225,257,246
|
||||||
|
Presbyterian,BSo,"14-18",,251,>>,237,230,260,237,230,241,260,264,257,258,248,238,247,250,255,239,"--",281,261,237,248,315,"--",232,244,257,276,237,254,268,247,257,253,255,213,260,226,255,320,245,245,239,268,272,258,229,254,263,224,265,264,248,221,224,240,263
|
||||||
|
Jackson St,SWAC,"16-18",+13,252,>>,254,261,227,260,248,236,281,202,289,283,260,247,281,262,256,271,"--",208,270,227,243,251,"--",261,226,245,209,263,261,234,213,275,267,247,252,280,286,259,288,272,272,260,249,233,232,211,245,264,214,277,256,152,264,268,264,217
|
||||||
|
Tennessee St,OVC,"17-16",+2,253,>>,255,209,269,258,252,278,286,246,185,275,265,243,266,258,231,256,"--",256,278,240,259,172,"--",252,238,264,257,255,243,266,218,283,257,274,232,252,267,252,337,255,223,261,259,234,264,232,264,231,223,279,275,213,248,254,250,241
|
||||||
|
Monmouth NJ,CAA,"13-20",-4,254,>>,261,236,251,261,267,264,252,229,294,255,246,260,267,240,259,251,"--",287,254,261,238,281,"--",259,247,254,270,256,236,248,255,276,242,248,245,256,242,253,302,257,261,251,250,273,252,242,236,221,258,239,235,235,262,218,258,194
|
||||||
|
E Michigan,MAC,"16-16",-1,255,>>,277,235,219,284,276,226,228,220,269,244,257,261,279,255,269,290,"--",247,226,269,221,264,"--",274,257,223,242,280,259,223,251,266,265,234,275,254,281,280,277,246,265,275,219,248,226,254,244,267,290,256,223,219,291,261,268,226
|
||||||
|
Georgia St,SBC,"14-19",,256,>>,266,234,243,262,263,246,244,248,270,250,254,267,257,257,241,253,"--",264,239,260,253,234,"--",260,263,255,258,265,255,242,260,252,244,266,265,264,252,239,284,252,258,256,243,258,249,265,259,272,275,249,253,224,271,248,265,242
|
||||||
|
Tulsa,AAC,"13-20",+4,257,>>,268,241,253,257,268,242,240,294,272,242,256,244,235,261,240,245,"--",294,248,270,277,250,"--",246,277,277,279,253,251,263,296,230,240,260,255,257,235,243,218,262,247,250,262,278,262,293,246,215,296,225,248,243,257,255,271,227
|
||||||
|
Siena,MAAC,"14-18",-5,258,>>,249,291,264,255,254,257,264,227,199,263,253,296,254,254,270,258,"--",289,266,250,247,196,"--",257,230,253,298,249,247,254,197,260,255,279,260,250,278,235,327,251,262,257,246,281,247,253,248,235,240,288,269,212,254,258,259,287
|
||||||
|
North Florida,ASUN,"15-17",-1,259,>>,256,299,249,269,258,219,246,238,297,246,259,252,269,266,266,274,"--",226,241,255,234,256,"--",264,243,238,234,276,279,243,244,265,280,230,280,238,280,286,311,253,263,276,241,246,231,252,237,258,246,260,245,220,252,295,262,283
|
||||||
|
Missouri St,MVC,"9-23",-3,260,>>,234,225,282,238,245,311,249,310,237,231,250,222,204,260,206,235,"--",328,254,263,294,244,"--",219,266,289,308,226,252,294,278,224,231,293,234,289,237,269,334,271,216,230,293,317,269,297,263,195,263,232,268,284,236,220,245,300
|
||||||
|
Missouri KC,SL,"13-20",-2,261,>>,232,244,303,232,236,283,287,307,242,271,255,233,230,256,230,229,"--",302,297,258,305,252,"--",227,259,295,292,215,265,309,256,268,236,288,223,281,209,240,208,274,230,233,304,276,284,263,287,226,239,264,289,263,229,237,241,305
|
||||||
|
Alabama St,SWAC,"19-15",+10,262,>>,276,271,232,274,275,235,276,232,299,294,264,258,282,265,275,279,"--",203,266,247,244,322,"--",271,274,249,229,275,275,231,277,282,288,239,267,241,275,264,252,263,298,283,238,200,256,213,241,282,250,278,252,182,265,253,274,180
|
||||||
|
Incarnate Word,SLC,"17-16",-3,263,>>,244,262,270,250,246,263,273,278,260,269,279,245,246,248,246,261,"--",237,270,245,273,274,"--",244,249,262,228,240,262,261,253,272,268,253,238,271,258,271,361,261,252,262,270,226,257,251,276,286,241,287,276,309,242,274,249,267
|
||||||
|
Colgate,PL,"14-19",-2,264,>>,259,292,280,249,261,258,277,250,213,273,272,279,259,267,273,240,"--",300,283,262,265,233,"--",262,252,274,294,257,245,277,235,239,239,278,257,243,230,218,269,265,264,258,267,274,280,262,257,236,247,266,282,270,253,260,247,270
|
||||||
|
Charlotte,AAC,"11-22",+1,265,>>,253,269,262,243,256,296,251,293,248,245,258,256,225,259,260,238,"--",320,257,268,286,277,"--",239,276,272,304,244,258,274,288,233,243,269,246,274,219,248,307,266,268,237,277,302,276,295,255,217,283,220,258,265,240,234,267,265
|
||||||
|
Sacred Heart,MAAC,"15-18",+1,266,>>,263,278,278,266,265,261,282,239,222,276,261,292,277,264,247,266,"--",290,282,259,254,187,"--",268,241,260,290,266,256,270,221,271,260,284,263,263,265,251,322,267,253,263,257,277,261,260,258,261,242,285,277,256,263,257,254,251
|
||||||
|
SUNY Albany,AEC,"17-16",-4,267,>>,275,282,272,267,271,271,271,252,262,270,263,290,286,271,277,262,"--",258,275,265,250,253,"--",279,253,261,267,278,270,262,243,262,262,263,276,231,245,257,247,260,274,270,253,243,272,264,267,274,259,281,265,259,276,252,263,249
|
||||||
|
"Bethune-Cookman",SWAC,"17-16",-4,268,>>,281,290,244,290,288,239,265,230,322,286,267,257,294,273,296,284,"--",205,257,264,236,331,"--",291,269,231,207,289,288,227,275,295,313,227,298,244,287,293,259,256,305,298,237,204,255,225,250,268,268,276,231,189,283,302,277,218
|
||||||
|
Mercer,SC,"14-19",-1,269,>>,260,305,276,256,257,232,270,268,273,266,262,246,274,263,276,247,"--",288,275,267,262,318,"--",269,261,271,262,268,271,279,259,270,256,265,270,262,247,265,298,259,277,265,274,288,230,256,283,279,251,253,261,251,259,263,261,274
|
||||||
|
Portland,WCC,"12-20",-1,270,>>,286,231,245,282,269,260,231,280,316,240,268,272,253,279,252,294,"--",246,232,280,279,254,"--",265,296,259,243,271,260,253,294,245,261,246,266,291,310,284,317,269,259,272,266,264,265,292,252,243,317,257,250,280,278,278,288,244
|
||||||
|
Idaho,BSC,"14-19",,271,>>,267,254,275,276,279,252,261,276,266,264,266,249,261,272,253,277,"--",284,261,278,266,261,"--",272,283,270,282,264,287,283,300,267,277,252,268,276,285,285,196,273,285,267,282,270,282,271,269,271,278,262,254,246,256,269,269,279
|
||||||
|
Gardner Webb,BSo,"11-20",-2,272,>>,262,294,271,264,264,295,268,256,245,268,269,265,268,270,268,260,"--",295,269,266,260,242,"--",267,265,269,286,269,278,271,268,274,273,273,272,272,266,277,283,268,275,271,276,287,260,266,279,275,260,268,272,260,260,279,266,292
|
||||||
|
Austin Peay,ASUN,"14-19",+1,273,>>,273,265,268,278,273,238,269,263,287,265,277,278,280,289,282,286,"--",268,270,272,257,290,"--",273,260,265,265,279,286,272,267,288,284,259,278,277,290,283,257,279,279,278,271,265,267,275,265,287,271,263,263,230,280,311,282,278
|
||||||
|
SF Austin,SLC,"14-17",+1,274,>>,270,293,261,273,277,250,263,255,271,267,286,263,271,269,284,267,"--",240,261,273,272,292,"--",281,270,263,249,272,272,258,272,263,274,256,282,273,277,274,332,276,295,280,265,256,266,277,271,304,284,274,279,298,277,315,273,281
|
||||||
|
Florida Intl,CUSA,"10-23",+6,275,>>,250,242,273,265,253,308,266,313,267,262,276,259,245,268,262,272,"--",333,270,279,296,312,"--",253,279,296,316,250,266,295,295,241,245,300,264,303,292,268,280,289,246,253,296,327,270,304,293,252,287,272,287,296,249,264,260,289
|
||||||
|
Ball St,MAC,"14-17",+1,276,>>,274,279,277,272,270,259,275,302,254,272,278,268,263,275,271,269,"--",275,266,274,290,286,"--",270,293,288,274,270,268,286,287,250,270,294,274,269,260,258,258,280,282,269,283,282,288,285,294,283,282,267,283,310,267,281,276,288
|
||||||
|
Old Dominion,SBC,"15-20",-1,277,>>,293,220,255,285,282,237,256,265,283,260,281,291,287,280,292,287,"--",307,248,287,263,284,"--",283,290,273,301,287,267,260,290,269,264,277,283,288,288,279,231,270,292,277,256,284,253,291,275,270,310,251,259,304,300,283,293,248
|
||||||
|
North Dakota,SL,"12-21",,278,>>,265,270,289,271,266,292,279,296,268,282,270,253,252,285,242,278,"--",308,286,276,298,276,"--",251,303,286,296,252,281,300,310,280,271,276,258,297,283,290,210,294,255,264,297,293,285,290,280,241,280,273,281,282,246,318,275,295
|
||||||
|
Columbia,Ivy,"12-15",,279,>>,283,314,287,275,280,272,274,291,278,279,271,277,278,286,298,273,"--",222,275,284,271,296,"--",299,278,276,225,297,307,275,291,264,285,270,307,246,241,270,214,264,276,294,263,269,268,287,300,309,277,295,286,336,273,309,272,311
|
||||||
|
Navy,PL,"15-19",-7,280,>>,278,268,291,270,274,289,296,274,259,292,292,309,288,278,288,270,"--",313,302,275,282,294,"--",276,268,297,328,274,264,292,248,277,269,297,269,268,253,245,305,283,289,274,288,300,313,273,272,254,267,292,295,278,281,262,270,245
|
||||||
|
Bowling Green,MAC,"14-18",-1,281,>>,294,251,274,292,289,268,283,297,274,284,283,286,284,274,274,285,"--",285,278,289,293,291,"--",286,299,280,295,294,274,281,289,286,276,295,290,279,284,295,215,284,267,292,286,291,296,284,277,277,293,275,284,258,285,276,289,260
|
||||||
|
W Michigan,MAC,"12-20",+1,282,>>,292,267,266,298,290,280,272,269,288,274,282,285,285,281,278,300,"--",298,270,295,285,262,"--",282,294,293,299,291,276,280,298,284,279,291,287,296,305,306,348,281,281,293,279,283,274,286,274,266,300,286,278,267,292,272,279,262
|
||||||
|
Boston Univ,PL,"16-16",+2,283,>>,303,288,283,294,304,288,284,266,280,288,295,313,303,283,316,288,"--",259,286,288,270,271,"--",308,280,275,278,305,284,267,280,281,290,272,306,248,276,273,203,275,312,300,258,266,308,278,281,300,294,294,285,264,312,293,290,271
|
||||||
|
Tarleton St,WAC,"12-20",-2,284,>>,287,258,265,286,285,286,259,295,327,261,273,287,293,291,286,289,"--",273,257,285,275,289,"--",301,287,266,250,285,282,282,306,278,275,264,292,293,294,281,335,290,294,273,289,290,278,300,302,298,299,247,255,300,306,307,302,247
|
||||||
|
LIU Brooklyn,NEC,"17-16",+2,285,>>,295,257,292,288,286,290,305,284,276,302,294,298,302,282,281,293,"--",243,297,271,280,293,"--",292,271,278,283,293,280,278,262,303,300,290,273,265,291,288,364,278,273,301,280,240,301,257,273,291,269,307,301,306,284,259,280,266
|
||||||
|
Fresno St,MWC,"6-26",-2,286,>>,272,273,288,268,260,330,290,327,314,278,274,280,229,277,263,275,"--",315,283,290,330,295,"--",250,322,312,314,247,273,305,331,287,278,309,250,324,274,289,225,314,250,259,328,313,287,317,285,206,309,258,298,313,239,267,278,316
|
||||||
|
St Peter's,MAAC,"12-16",+1,287,>>,284,318,297,277,298,306,295,277,279,296,280,302,300,284,294,264,"--",265,299,292,274,282,"--",298,275,279,264,296,283,291,257,292,283,296,299,261,262,275,331,286,297,287,284,303,292,279,301,303,272,283,291,308,295,256,286,254
|
||||||
|
TX Southern,SWAC,"15-17",-2,288,>>,279,303,299,279,281,281,324,298,313,323,291,273,296,293,283,281,"--",232,318,277,315,330,"--",275,282,303,241,281,291,293,281,304,289,303,271,278,282,267,340,316,291,282,310,252,294,274,297,306,264,298,309,226,269,285,285,282
|
||||||
|
VMI,SC,"15-19",+1,289,>>,290,280,290,300,287,243,289,289,306,285,289,281,307,297,310,310,"--",291,293,283,284,298,"--",294,264,283,266,304,292,290,261,299,293,271,297,311,325,301,343,287,317,297,291,280,245,283,289,307,274,293,270,292,304,288,298,277
|
||||||
|
St Francis PA,NEC,"16-17",+15,290,>>,309,289,281,313,310,269,300,236,286,304,303,306,323,296,301,316,"--",236,290,281,264,269,"--",316,284,291,263,315,294,269,266,313,325,280,301,301,307,300,330,282,306,315,273,254,273,255,288,327,281,301,290,273,313,287,297,264
|
||||||
|
Penn,Ivy,"8-19",,291,>>,300,286,298,287,293,323,291,285,281,287,287,311,298,309,304,282,"--",274,294,301,302,260,"--",295,286,301,272,295,277,296,283,273,281,306,293,302,271,256,219,295,288,281,295,309,279,310,321,310,301,290,308,297,303,296,304,286
|
||||||
|
Houston Chr,SLC,"12-20",-3,292,>>,271,309,294,289,278,307,294,303,292,290,302,283,272,276,267,301,"--",292,299,294,308,268,"--",277,281,299,289,267,293,297,286,297,294,289,277,315,319,303,287,299,287,284,302,286,300,301,299,297,285,311,307,295,282,284,287,328
|
||||||
|
Lafayette,PL,"13-20",+2,293,>>,289,316,311,281,291,312,309,311,252,301,306,321,292,292,295,280,"--",323,313,293,307,263,"--",290,272,308,326,290,290,312,252,293,282,316,284,295,272,266,240,297,271,286,303,314,328,303,290,273,276,314,314,301,287,273,283,312
|
||||||
|
Army,PL,"16-15",,294,>>,324,337,279,321,324,277,280,241,295,289,310,317,321,287,313,312,"--",230,278,311,256,237,"--",330,289,268,240,329,301,245,276,302,314,267,332,266,301,310,245,277,334,323,251,245,286,281,284,328,313,300,280,321,327,320,307,296
|
||||||
|
Louisiana,SBC,"12-21",+1,295,>>,320,276,263,310,313,275,267,261,300,280,298,301,301,301,303,305,"--",312,264,321,291,235,"--",317,315,282,309,316,289,273,314,289,297,283,324,304,298,304,236,291,311,306,275,301,263,315,278,280,334,270,271,272,323,319,320,268
|
||||||
|
TN Martin,OVC,"14-19",+2,296,>>,288,277,313,295,292,276,315,286,249,314,308,282,306,302,287,295,"--",304,315,282,300,248,"--",288,288,307,315,299,297,313,270,308,291,311,291,294,293,308,336,296,266,305,305,295,306,276,304,289,262,302,311,271,296,300,291,301
|
||||||
|
Rider,MAAC,"14-19",,297,>>,308,312,284,304,316,273,288,267,321,297,284,323,314,288,307,298,"--",293,286,305,268,309,"--",311,298,287,317,311,285,284,293,309,295,285,309,275,300,298,321,293,321,304,278,292,298,289,282,294,311,282,274,253,314,286,314,238
|
||||||
|
Tennessee Tech,OVC,"15-17",+1,298,>>,299,302,296,312,303,297,301,288,298,300,299,294,305,294,289,317,"--",260,290,300,283,275,"--",304,295,292,277,306,298,287,284,311,306,286,304,284,326,307,338,292,284,311,287,267,299,288,295,293,295,304,294,245,297,332,292,302
|
||||||
|
Delaware St,MEAC,"16-14",-7,299,>>,307,331,301,305,307,282,308,301,312,319,290,270,315,290,314,299,"--",213,306,296,295,352,"--",305,301,285,223,307,299,288,309,318,326,275,288,255,289,305,271,288,302,313,290,230,293,259,311,341,288,315,306,283,302,294,305,285
|
||||||
|
Weber St,BSC,"12-22",,300,>>,285,266,314,280,300,313,302,315,282,293,296,275,283,299,290,268,"--",326,305,302,313,306,"--",293,308,314,327,288,309,319,305,298,292,299,286,305,250,291,345,302,283,285,322,311,318,294,306,296,291,271,293,287,293,271,301,309
|
||||||
|
Pacific,WCC,"9-24",,301,>>,291,301,293,296,284,318,285,329,328,281,293,284,250,304,279,302,"--",310,283,297,327,317,"--",278,331,319,311,277,295,310,330,261,299,304,279,329,316,325,226,307,269,288,317,297,309,322,270,251,316,296,303,311,272,282,295,324
|
||||||
|
Lehigh,PL,"11-19",,302,>>,280,307,325,283,283,324,316,304,277,311,312,326,295,310,300,283,"--",296,326,286,309,272,"--",285,291,315,313,284,296,318,264,279,286,320,281,307,270,263,290,309,290,279,313,304,330,305,317,308,273,324,321,338,289,289,281,330
|
||||||
|
Southern Utah,WAC,"12-19",-10,303,>>,297,297,304,297,296,298,278,317,332,277,285,289,299,315,325,297,"--",278,278,299,301,304,"--",318,304,281,268,313,321,298,317,291,315,281,327,292,306,309,223,301,327,303,301,298,304,316,312,314,315,269,273,288,311,321,306,320
|
||||||
|
E Washington,BSC,"10-22",,304,>>,282,285,316,293,295,326,297,331,307,295,297,276,275,303,280,292,"--",325,302,308,316,328,"--",289,324,313,307,283,315,326,332,296,298,302,294,309,308,321,243,313,278,290,323,321,315,313,323,276,304,280,299,299,270,327,284,318
|
||||||
|
Southern Miss,SBC,"11-22",+2,305,>>,296,295,302,299,294,309,293,309,284,291,304,303,290,295,306,296,"--",327,294,318,304,285,"--",302,310,311,321,302,300,308,307,290,287,312,312,314,296,287,329,310,315,295,306,325,297,325,305,285,319,289,297,285,298,314,299,323
|
||||||
|
Charleston So,BSo,"10-22",,306,>>,304,310,295,302,302,315,292,290,317,299,300,297,304,305,308,303,"--",317,289,313,292,311,"--",300,314,300,302,300,305,303,320,306,303,298,303,322,297,318,267,300,309,307,308,315,283,296,298,295,318,310,300,302,299,330,294,304
|
||||||
|
Florida A&M,SWAC,"14-17",-4,307,>>,325,320,285,325,317,267,319,279,338,327,307,293,328,312,326,328,"--",209,313,291,306,316,"--",322,297,290,238,323,320,276,297,332,331,292,315,318,329,316,192,312,324,325,298,259,290,270,291,334,286,316,302,239,320,306,321,299
|
||||||
|
Lindenwood,OVC,"16-17",+2,308,>>,328,283,286,331,326,285,299,271,305,305,311,307,327,308,320,329,"--",250,290,303,276,303,"--",325,317,284,273,325,316,285,313,323,318,282,318,310,332,333,356,285,314,332,281,268,295,272,286,317,307,312,288,268,331,324,313,280
|
||||||
|
UMBC,AEC,"13-19",-1,309,>>,301,326,324,291,299,294,317,306,275,309,305,319,308,320,318,276,"--",305,322,298,318,266,"--",309,285,316,318,308,302,315,274,294,308,321,313,287,273,282,296,305,303,302,309,308,302,307,314,312,279,317,322,329,308,277,296,319
|
||||||
|
Binghamton,AEC,"15-17",-1,310,>>,315,300,307,316,319,287,306,281,290,307,313,327,329,306,317,309,"--",280,307,309,288,300,"--",323,292,298,285,320,304,302,285,310,305,301,316,283,309,299,260,306,326,308,294,296,307,306,326,333,302,306,296,348,322,301,311,293
|
||||||
|
Morehead St,OVC,"15-17",,311,>>,327,319,300,323,327,279,304,262,308,306,320,312,332,327,322,321,"--",262,294,316,278,255,"--",335,311,294,287,330,318,289,303,314,323,287,329,285,312,328,303,298,316,330,285,279,289,298,296,320,314,291,292,266,332,349,317,306
|
||||||
|
Denver,SL,"11-21",,312,>>,302,284,309,317,309,316,298,323,301,303,288,288,297,300,272,325,"--",318,299,325,314,301,"--",284,328,309,310,282,308,321,321,315,304,305,295,320,334,317,272,323,286,299,321,319,305,327,313,284,328,297,305,314,290,326,300,315
|
||||||
|
F Dickinson,NEC,"13-20",+2,313,>>,312,306,327,309,308,310,332,318,311,326,328,315,312,311,305,308,"--",309,328,304,317,335,"--",307,309,323,320,303,306,323,301,322,311,324,289,319,295,297,213,319,299,314,319,310,327,299,316,305,289,329,331,343,301,275,303,310
|
||||||
|
Holy Cross,PL,"13-19",+2,314,>>,316,330,315,320,320,304,307,283,291,310,319,328,317,318,329,318,"--",306,312,315,297,302,"--",321,305,304,312,317,326,306,292,307,321,307,320,308,315,311,204,304,323,321,300,307,310,312,308,321,306,326,310,351,316,322,310,342
|
||||||
|
Loyola MD,PL,"12-19",+2,315,>>,310,322,323,308,305,319,312,314,296,315,316,325,311,316,309,311,"--",311,322,312,311,299,"--",313,300,318,319,312,314,317,299,300,307,317,310,313,302,292,294,315,307,309,312,323,333,319,320,311,303,327,316,312,309,290,308,327
|
||||||
|
Howard,MEAC,"12-20",-2,316,>>,313,344,320,314,312,320,331,308,285,337,301,304,313,298,302,307,"--",266,338,328,333,278,"--",310,307,310,280,314,319,311,311,325,327,315,322,300,314,294,190,333,293,318,311,320,338,326,325,316,324,339,338,293,305,337,316,329
|
||||||
|
Stonehill,NEC,"15-17",+2,317,>>,323,315,308,326,322,284,311,312,309,318,325,316,325,317,328,331,"--",269,307,317,299,310,"--",333,306,305,297,328,329,299,304,321,329,308,330,299,330,319,228,308,318,331,299,289,317,302,307,331,312,334,312,324,328,328,312,326
|
||||||
|
NC Central,MEAC,"14-19",,318,>>,318,335,326,307,323,291,330,319,310,330,317,295,324,307,321,291,"--",303,332,310,319,324,"--",314,313,320,324,321,322,314,308,329,324,314,314,306,268,313,306,303,319,322,316,299,323,282,309,330,297,322,324,289,318,325,319,298
|
||||||
|
Air Force,MWC,"4-28",+3,319,>>,305,329,312,303,311,340,323,328,323,328,309,329,262,314,293,304,"--",340,309,319,344,280,"--",306,334,334,338,286,311,325,334,285,296,334,305,343,304,302,250,331,322,296,334,344,312,331,292,281,332,303,326,325,294,310,323,336
|
||||||
|
Niagara,MAAC,"11-20",,320,>>,317,324,318,318,321,325,320,299,293,320,321,335,322,313,327,314,"--",319,325,320,310,288,"--",320,302,322,330,318,303,316,273,320,301,326,321,316,299,312,239,320,310,312,314,324,314,324,318,326,308,323,320,319,319,304,322,313
|
||||||
|
E Illinois,OVC,"12-19",,321,>>,319,274,319,322,315,314,321,316,319,317,318,318,320,323,311,327,"--",286,320,306,312,326,"--",319,312,321,300,319,317,320,312,326,320,318,308,325,321,323,276,317,304,320,315,318,322,309,322,322,298,319,315,342,321,299,318,290
|
||||||
|
Fairfield,MAAC,"12-20",-9,322,>>,335,333,305,329,333,305,303,273,303,312,322,343,337,326,336,323,"--",324,304,331,289,273,"--",337,321,302,322,334,312,301,324,317,322,313,333,298,303,324,279,311,330,327,292,326,291,320,315,323,331,305,304,320,335,305,327,276
|
||||||
|
Long Beach St,BWC,"7-25",,323,>>,306,281,321,306,306,335,310,322,329,298,315,308,289,325,315,315,"--",334,309,322,332,319,"--",296,318,330,333,301,313,329,323,319,319,331,300,326,324,329,232,330,300,289,333,332,324,332,324,292,323,299,328,333,310,308,326,331
|
||||||
|
IUPUI,HL,"10-22",,324,>>,311,298,329,319,314,328,328,325,302,321,323,299,310,319,312,322,"--",331,328,314,325,307,"--",303,319,329,323,310,324,334,319,312,309,328,311,334,335,334,198,322,301,316,332,328,316,323,332,302,305,340,330,303,317,297,315,325
|
||||||
|
San Diego,WCC,"6-27",,325,>>,314,304,328,311,297,341,318,349,324,308,324,339,270,328,291,319,"--",345,320,330,345,313,"--",287,337,337,344,298,310,332,338,301,310,340,296,333,322,327,233,334,280,310,339,336,341,340,310,262,337,308,336,337,286,303,324,322
|
||||||
|
Utah Tech,WAC,"7-26",+1,326,>>,298,296,331,301,301,342,329,343,315,313,314,314,291,321,299,306,"--",350,326,323,334,323,"--",297,327,335,342,292,325,341,329,305,302,338,302,338,318,296,363,335,313,291,340,338,335,333,330,299,321,309,329,340,288,313,309,338
|
||||||
|
Alcorn St,SWAC,"11-21",-1,327,>>,329,328,306,328,325,321,338,305,347,346,326,300,336,324,324,335,"--",279,333,324,331,354,"--",327,316,317,275,324,327,307,316,337,334,319,323,321,328,315,253,338,328,326,318,312,321,318,319,329,320,331,325,255,324,333,330,297
|
||||||
|
Mercyhurst,NEC,"15-16",,328,>>,338,332,310,340,342,301,322,300,339,331,333,330,346,322,333,342,"--",248,315,327,303,334,"--",345,325,306,271,339,330,304,327,347,344,310,335,290,345,332,299,321,337,341,307,305,319,308,328,346,327,335,313,335,346,312,336,294
|
||||||
|
Grambling,SWAC,"12-22",+7,329,>>,326,327,338,315,318,322,351,330,320,349,332,305,318,332,323,313,"--",321,351,307,343,342,"--",315,330,342,334,322,333,333,315,340,328,341,317,330,313,314,354,336,320,328,335,316,340,314,303,301,292,332,341,279,315,316,325,308
|
||||||
|
Coastal Car,SBC,"10-22",-1,330,>>,321,308,330,324,328,329,325,337,318,316,329,322,316,329,319,324,"--",335,322,332,328,320,"--",324,323,332,336,327,332,331,322,316,312,332,331,328,331,320,241,327,336,317,331,334,331,335,337,319,329,313,318,323,325,335,328,339
|
||||||
|
Morgan St,MEAC,"14-18",+1,331,>>,334,345,333,332,331,303,334,335,330,336,330,320,340,331,338,330,"--",283,336,326,326,348,"--",326,320,324,305,336,328,327,325,342,336,322,325,317,327,322,304,324,329,333,325,306,332,321,331,344,322,341,332,290,333,323,332,303
|
||||||
|
Stony Brook,CAA,"8-24",-2,332,>>,331,323,337,330,332,336,326,320,325,324,331,336,333,334,331,326,"--",344,328,334,324,327,"--",331,329,327,340,331,323,330,326,328,317,327,328,323,317,331,333,328,339,324,329,340,325,330,327,318,330,321,323,350,334,291,340,307
|
||||||
|
Oral Roberts,SL,"7-23",-2,333,>>,322,317,343,327,329,345,336,352,326,335,327,310,309,330,297,320,"--",322,341,338,346,332,"--",312,340,336,306,309,331,343,351,330,316,335,319,332,320,326,217,344,308,319,343,341,347,342,342,332,335,320,342,339,307,336,334,343
|
||||||
|
Southern Indiana,OVC,"10-20",-1,334,>>,332,325,342,335,336,331,335,340,304,332,338,333,334,335,335,334,"--",330,334,333,329,314,"--",336,326,333,332,337,341,339,318,344,330,333,337,331,333,336,199,325,331,338,330,345,342,329,336,325,325,337,334,307,336,339,331,349
|
||||||
|
Wagner,NEC,"14-16",-1,335,>>,342,336,335,333,347,299,337,326,331,340,336,337,349,336,340,333,"--",251,334,329,320,356,"--",351,332,326,293,341,340,322,328,343,340,325,341,312,311,330,344,318,338,345,320,294,336,311,333,349,326,333,333,327,352,329,339,332
|
||||||
|
Detroit,HL,"8-24",-1,336,>>,337,338,322,337,337,332,314,324,335,322,334,324,331,337,346,337,"--",342,317,337,321,325,"--",338,333,325,331,335,336,328,341,335,341,329,342,335,347,351,273,329,335,337,327,337,320,334,329,313,339,325,319,318,338,338,329,344
|
||||||
|
Buffalo,MAC,"9-22",,337,>>,345,321,317,346,339,327,313,321,345,325,337,332,341,339,345,345,"--",329,309,342,323,333,"--",344,338,328,329,348,335,324,335,331,338,330,347,337,352,337,262,332,343,346,324,330,311,338,334,343,351,328,317,352,345,331,341,334
|
||||||
|
W Illinois,OVC,"12-19",,338,>>,341,311,334,341,348,317,333,332,333,333,342,334,343,341,342,340,"--",316,331,335,322,343,"--",343,336,331,325,343,339,335,336,338,339,323,339,327,340,340,347,326,340,342,326,329,337,328,341,342,336,330,327,322,344,345,337,314
|
||||||
|
NC A&T,CAA,"7-25",,339,>>,333,346,341,334,335,344,339,339,337,334,335,340,326,338,339,332,"--",349,341,336,338,351,"--",332,335,339,343,332,334,339,337,339,333,342,334,340,323,335,310,337,342,329,337,343,334,336,335,315,333,342,337,331,330,317,333,337
|
||||||
|
W Carolina,SC,"8-22",,340,>>,346,349,339,342,338,334,341,334,348,338,339,331,350,344,341,341,"--",314,337,340,340,340,"--",342,339,338,303,347,338,336,333,333,332,336,346,336,341,338,349,340,332,339,338,331,303,339,344,352,342,318,340,330,348,341,342,317
|
||||||
|
Cent Arkansas,ASUN,"9-24",,341,>>,339,339,336,345,346,333,342,342,341,341,340,338,338,340,351,346,"--",332,338,341,337,344,"--",339,342,341,335,340,343,338,344,348,350,339,343,341,350,345,265,339,350,343,336,333,326,337,340,340,341,343,339,316,339,343,343,333
|
||||||
|
East Texas A&M,SLC,"5-26",,342,>>,330,341,340,336,330,352,340,344,"--",339,347,344,319,333,332,338,"--",347,343,339,341,338,"--",329,341,343,345,326,337,342,339,327,337,343,326,353,349,339,357,341,341,335,344,349,343,341,338,"--",338,348,347,341,326,298,335,346
|
||||||
|
WI Green Bay,HL,"4-28",,343,>>,336,340,344,338,334,357,344,350,334,343,341,345,330,343,330,339,"--",363,344,346,350,321,"--",328,347,346,351,333,342,347,345,324,335,351,336,350,337,342,351,354,333,334,350,358,352,349,343,324,347,350,350,344,329,350,338,341
|
||||||
|
CS Fullerton,BWC,"6-26",,344,>>,351,347,332,351,351,339,327,333,355,329,343,342,347,348,354,354,"--",338,318,354,336,346,"--",354,350,340,337,353,351,337,350,334,358,337,356,344,355,354,282,345,354,351,342,335,329,351,339,347,358,336,335,332,351,363,348,340
|
||||||
|
CS Sacramento,BSC,"7-25",,345,>>,340,334,354,339,344,350,347,356,336,345,344,341,335,346,349,336,"--",353,348,343,353,357,"--",346,355,352,355,338,353,357,353,349,342,349,340,347,336,349,189,346,347,336,356,353,358,345,353,336,340,338,345,353,342,348,344,357
|
||||||
|
West Georgia,ASUN,"6-25",,346,>>,343,313,348,347,349,349,349,345,342,348,345,347,344,342,343,348,"--",352,338,347,342,336,"--",341,351,347,349,344,348,348,348,346,348,348,345,346,343,352,346,347,345,348,349,347,346,344,347,337,345,352,344,328,341,352,345,347
|
||||||
|
Stetson,ASUN,"8-24",+1,347,>>,352,350,347,352,352,343,348,353,358,344,348,346,351,349,352,352,"--",343,344,352,348,361,"--",348,344,348,339,351,345,344,346,352,352,345,351,342,354,350,193,351,344,350,348,339,344,352,350,338,354,344,348,326,350,355,353,335
|
||||||
|
ULM,SBC,"7-25",-1,348,>>,349,352,346,344,345,346,343,354,343,342,350,349,342,345,344,343,"--",358,346,351,349,350,"--",350,349,350,353,349,344,349,355,336,346,347,350,348,338,347,308,343,349,344,346,354,350,350,346,335,353,345,343,334,347,334,349,345
|
||||||
|
Bellarmine,ASUN,"5-26",+1,349,>>,344,348,359,343,341,358,358,360,344,355,349,354,339,353,337,344,"--",357,355,344,359,339,"--",334,354,359,358,342,349,359,349,341,345,358,338,354,348,344,200,356,325,340,359,357,361,356,351,339,343,351,359,345,337,353,351,356
|
||||||
|
Le Moyne,NEC,"9-23",-1,350,>>,353,351,350,354,354,338,350,341,346,353,355,353,353,351,348,351,"--",341,352,348,335,329,"--",352,343,344,354,354,354,346,342,354,351,346,352,339,344,346,291,342,352,355,341,342,351,343,348,348,348,355,349,360,349,344,350,354
|
||||||
|
SC Upstate,BSo,"6-26",,351,>>,348,353,349,349,340,348,352,346,349,350,346,348,348,350,334,347,"--",359,348,345,347,349,"--",340,353,351,347,346,346,350,358,351,347,352,344,351,339,355,360,348,348,349,354,348,339,346,349,345,344,346,351,361,340,342,347,351
|
||||||
|
N Illinois,MAC,"6-25",,352,>>,350,343,352,348,343,351,353,351,340,347,351,352,352,352,347,350,"--",355,353,349,355,337,"--",349,345,356,356,350,347,353,343,345,343,355,349,355,342,348,312,349,346,347,353,322,349,347,354,350,346,347,354,357,354,340,354,355
|
||||||
|
New Orleans,SLC,"4-27",,353,>>,347,342,345,353,350,354,346,336,356,351,353,351,345,347,350,353,"--",348,347,350,351,347,"--",347,352,349,350,345,352,345,347,350,356,344,348,356,353,356,309,352,351,353,347,346,345,348,345,351,350,354,352,347,343,354,346,362
|
||||||
|
New Hampshire,AEC,"8-24",,354,>>,356,354,351,355,355,347,345,348,353,352,354,355,358,355,356,355,"--",351,348,358,339,355,"--",359,346,345,352,355,350,351,352,355,353,350,354,345,351,341,212,350,356,354,345,350,348,354,356,357,359,349,346,362,356,346,355,321
|
||||||
|
NJIT,AEC,"6-25",+1,355,>>,354,356,357,350,353,356,354,357,350,354,352,359,354,354,353,349,"--",361,354,356,352,353,"--",353,348,353,361,352,355,358,340,353,349,356,353,352,346,343,359,353,353,352,351,360,360,355,355,354,352,353,353,359,355,347,352,348
|
||||||
|
Alabama A&M,SWAC,"10-22",-1,356,>>,360,355,353,360,360,337,359,359,357,359,361,350,359,357,358,358,"--",336,359,353,358,341,"--",360,356,355,341,362,361,352,356,357,357,354,361,349,358,353,251,355,360,358,355,352,353,353,357,359,355,356,356,315,360,359,360,352
|
||||||
|
Canisius,MAAC,"3-28",,357,>>,357,359,358,357,359,363,356,338,351,356,356,363,356,356,355,356,"--",364,355,362,357,308,"--",356,357,358,364,357,356,356,354,356,354,359,359,358,356,358,264,358,355,356,358,361,354,361,358,353,360,358,358,355,358,356,357,353
|
||||||
|
Coppin St,MEAC,"6-24",,358,>>,362,361,355,362,361,353,355,355,361,358,357,360,362,358,362,362,"--",339,358,360,356,359,"--",361,361,354,346,361,357,354,362,360,362,353,360,360,362,362,270,357,361,361,352,351,359,357,360,360,362,359,355,346,362,358,359,350
|
||||||
|
Chicago St,NEC,"4-28",,359,>>,361,357,356,361,362,360,357,347,359,357,360,361,361,361,361,361,"--",362,357,361,354,345,"--",362,360,357,362,360,360,355,357,359,359,357,362,359,359,360,268,359,359,362,357,356,355,359,352,356,361,360,357,356,361,361,358,358
|
||||||
|
MD E Shore,MEAC,"6-25",,360,>>,358,358,361,358,358,355,360,358,354,361,358,358,360,360,359,360,"--",337,361,355,360,358,"--",355,358,360,348,359,359,360,360,362,361,360,355,362,361,359,297,360,358,359,360,359,357,358,361,361,349,362,361,364,359,357,361,359
|
||||||
|
Citadel,SC,"5-25",,361,>>,355,360,363,356,356,359,361,362,352,360,359,356,355,359,360,357,"--",356,360,357,362,360,"--",358,359,363,357,358,358,362,359,358,355,362,357,357,360,357,341,361,362,357,"--",364,356,362,363,358,357,357,362,358,357,351,362,360
|
||||||
|
Prairie View,SWAC,"5-27",,362,>>,359,362,360,359,357,362,362,361,360,362,362,357,357,362,357,359,"--",360,362,359,361,362,"--",357,362,361,359,356,362,361,361,361,360,361,358,361,357,361,319,362,357,360,361,362,362,360,359,355,356,361,360,349,353,362,356,363
|
||||||
|
Ark Pine Bluff,SWAC,"6-25",,363,>>,363,363,362,363,363,361,363,364,362,363,363,362,363,363,363,363,"--",346,363,363,363,364,"--",363,363,362,360,363,363,363,363,363,363,363,363,363,363,363,255,363,363,363,362,355,363,363,362,362,363,363,363,354,363,360,363,361
|
||||||
|
MS Valley St,SWAC,"3-28",,364,>>,364,364,364,364,364,364,364,363,363,364,364,364,364,364,364,364,"--",354,364,364,364,363,"--",364,364,364,363,364,364,364,364,364,364,364,364,364,364,364,301,364,364,364,"--",363,364,364,364,363,364,364,364,363,364,364,364,364
|
||||||
|
183
2025/src/main.rs
Normal file
183
2025/src/main.rs
Normal file
@@ -0,0 +1,183 @@
|
|||||||
|
use color_eyre::Result;
|
||||||
|
use crossterm::event::{self, Event, KeyCode, KeyEvent, KeyEventKind, KeyModifiers};
|
||||||
|
use ratatui::{
|
||||||
|
DefaultTerminal, Frame,
|
||||||
|
prelude::*,
|
||||||
|
style::Stylize,
|
||||||
|
text::Line,
|
||||||
|
widgets::{Block, Paragraph, Widget},
|
||||||
|
};
|
||||||
|
use std::fs;
|
||||||
|
|
||||||
|
fn main() -> Result<()> {
|
||||||
|
color_eyre::install()?;
|
||||||
|
let terminal = ratatui::init();
|
||||||
|
let result = BracketApp::new().run(terminal);
|
||||||
|
ratatui::restore();
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default, PartialEq)]
|
||||||
|
enum Input {
|
||||||
|
#[default]
|
||||||
|
Team1,
|
||||||
|
Team2,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The main application which holds the state and logic of the application.
|
||||||
|
#[derive(Debug, Default)]
|
||||||
|
pub struct BracketApp {
|
||||||
|
/// Is the application running?
|
||||||
|
running: bool,
|
||||||
|
selected_input: Input,
|
||||||
|
team1: String,
|
||||||
|
team2: String,
|
||||||
|
differential: f32,
|
||||||
|
winner: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl BracketApp {
|
||||||
|
/// Construct a new instance of [`BracketApp`].
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self::default()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Run the application's main loop.
|
||||||
|
pub fn run(mut self, mut terminal: DefaultTerminal) -> Result<()> {
|
||||||
|
self.running = true;
|
||||||
|
while self.running {
|
||||||
|
terminal.draw(|frame| self.draw(frame))?;
|
||||||
|
self.handle_crossterm_events()?;
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Draw the application to the terminal.
|
||||||
|
fn draw(&self, frame: &mut Frame) {
|
||||||
|
frame.render_widget(self, frame.area());
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Reads the crossterm events and updates the state of [`BracketApp`].
|
||||||
|
///
|
||||||
|
/// If your application needs to perform work in between handling events, you can use the
|
||||||
|
/// [`event::poll`] function to check if there are any events available with a timeout.
|
||||||
|
fn handle_crossterm_events(&mut self) -> Result<()> {
|
||||||
|
match event::read()? {
|
||||||
|
// it's important to check KeyEventKind::Press to avoid handling key release events
|
||||||
|
Event::Key(key) if key.kind == KeyEventKind::Press => self.on_key_event(key),
|
||||||
|
Event::Mouse(_) => {}
|
||||||
|
Event::Resize(_, _) => {}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Handles the key events and updates the state of [`BracketApp`].
|
||||||
|
fn on_key_event(&mut self, key: KeyEvent) {
|
||||||
|
match (key.modifiers, key.code) {
|
||||||
|
(_, KeyCode::Esc | KeyCode::Char('q'))
|
||||||
|
| (KeyModifiers::CONTROL, KeyCode::Char('c') | KeyCode::Char('C')) => self.quit(),
|
||||||
|
(_, KeyCode::Tab) => {
|
||||||
|
self.selected_input = match self.selected_input {
|
||||||
|
Input::Team1 => Input::Team2,
|
||||||
|
Input::Team2 => Input::Team1,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
(_, KeyCode::Enter) => {
|
||||||
|
self.calculate_differential();
|
||||||
|
}
|
||||||
|
(_, KeyCode::Backspace) => match self.selected_input {
|
||||||
|
Input::Team1 => {
|
||||||
|
self.team1.pop();
|
||||||
|
}
|
||||||
|
Input::Team2 => {
|
||||||
|
self.team2.pop();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
(_, KeyCode::Char(c)) => match self.selected_input {
|
||||||
|
Input::Team1 => self.team1.push(c),
|
||||||
|
Input::Team2 => self.team2.push(c),
|
||||||
|
},
|
||||||
|
// Add other key handlers here.
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn calculate_differential(&mut self) {
|
||||||
|
// Calculate the differential based on the teams
|
||||||
|
let rankings_file =
|
||||||
|
fs::read_to_string("data/kenpom.csv").expect("Should have been able to read the file");
|
||||||
|
let team1_line: Vec<&str> = rankings_file
|
||||||
|
.lines()
|
||||||
|
.find(|line| line.contains(&self.team1))
|
||||||
|
.unwrap()
|
||||||
|
.split(',')
|
||||||
|
.collect();
|
||||||
|
let team2_line: Vec<&str> = rankings_file
|
||||||
|
.lines()
|
||||||
|
.find(|line| line.contains(&self.team2))
|
||||||
|
.unwrap()
|
||||||
|
.split(',')
|
||||||
|
.collect();
|
||||||
|
let team1_power: f32 = team1_line[4].parse().unwrap();
|
||||||
|
let team2_power: f32 = team2_line[4].parse().unwrap();
|
||||||
|
if team1_power > team2_power {
|
||||||
|
self.winner = self.team1.clone();
|
||||||
|
} else {
|
||||||
|
self.winner = self.team2.clone();
|
||||||
|
};
|
||||||
|
self.differential = (team1_power - team2_power).abs();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Set running to false to quit the application.
|
||||||
|
fn quit(&mut self) {
|
||||||
|
self.running = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Widget for &BracketApp {
|
||||||
|
fn render(self, area: Rect, buf: &mut Buffer) {
|
||||||
|
let title = Line::from("Simple Bracket Chooser")
|
||||||
|
.bold()
|
||||||
|
.blue()
|
||||||
|
.centered();
|
||||||
|
let text = "Choose two teams \n\
|
||||||
|
Press `Esc`, `Ctrl-C` or `q` to stop running.";
|
||||||
|
Paragraph::new(text)
|
||||||
|
.block(Block::bordered().title(title))
|
||||||
|
.centered()
|
||||||
|
.render(Rect::new(0, 0, area.width, 3), buf);
|
||||||
|
let selected = Style::new().blue().on_light_cyan().bold().italic();
|
||||||
|
let pane1 = Rect::new(0, 3, area.width / 2, 5);
|
||||||
|
let pane2 = Rect::new(area.width / 2, 3, area.width / 2, 5);
|
||||||
|
let input1 = Rect::new(0, 4, area.width / 2, 5);
|
||||||
|
let input2 = Rect::new(area.width / 2, 4, area.width, 5);
|
||||||
|
if self.selected_input == Input::Team1 {
|
||||||
|
Block::bordered()
|
||||||
|
.title("Team 1")
|
||||||
|
.style(selected)
|
||||||
|
.render(pane1, buf);
|
||||||
|
Block::bordered().title("Team 2").render(pane2, buf);
|
||||||
|
} else {
|
||||||
|
Block::bordered().title("Team 1").render(pane1, buf);
|
||||||
|
Block::bordered()
|
||||||
|
.title("Team 2")
|
||||||
|
.style(selected)
|
||||||
|
.render(pane2, buf);
|
||||||
|
}
|
||||||
|
Line::from(self.team1.clone())
|
||||||
|
.centered()
|
||||||
|
.render(input1, buf);
|
||||||
|
Line::from(self.team2.clone())
|
||||||
|
.centered()
|
||||||
|
.render(input2, buf);
|
||||||
|
let results = format!(
|
||||||
|
"{} should win by {:.1} points",
|
||||||
|
self.winner, self.differential,
|
||||||
|
);
|
||||||
|
Paragraph::new(results)
|
||||||
|
.block(Block::bordered())
|
||||||
|
.centered()
|
||||||
|
.render(Rect::new(0, 8, area.width, 10), buf);
|
||||||
|
}
|
||||||
|
}
|
||||||
69
main.py
69
main.py
@@ -1,69 +0,0 @@
|
|||||||
import csv
|
|
||||||
from statistics import mean
|
|
||||||
|
|
||||||
rankings_file = 'rankings.csv'
|
|
||||||
matchups_file = 'matchups.csv'
|
|
||||||
# Some rounds modified to measure expectations better
|
|
||||||
r1_seeds = [[1,28], [8,9], [5, 12], [4,16], [6,11], [3,18], [7,10], [2,24]]
|
|
||||||
r2_seeds = [[1,10], [5,4], [6,3], [9,2]]
|
|
||||||
r3_seeds = [[1,4], [3,2]]
|
|
||||||
r4_seeds = [[1,4], [3,2]]
|
|
||||||
r5_seeds = [[1,4], [3,2]]
|
|
||||||
r6_seeds = [[1,2]]
|
|
||||||
systems = ['LEF', 'DOK', 'INC', 'LMC', 'TPR']
|
|
||||||
|
|
||||||
def pick_winners(matchups, seeds, multiplier):
|
|
||||||
j = 0
|
|
||||||
winners = []
|
|
||||||
out_matchups = []
|
|
||||||
for matchup in matchups:
|
|
||||||
if matchup != []:
|
|
||||||
expected_ranks = [ multiplier*seed for seed in seeds[j%len(seeds)] ]
|
|
||||||
matchup_rankings = [rankings[teams.index(matchup[0])], rankings[teams.index(matchup[1])]]
|
|
||||||
for k in range(2):
|
|
||||||
if matchup_rankings[k] < 0.75*expected_ranks[k]:
|
|
||||||
matchup_rankings[k] *= 0.5
|
|
||||||
elif matchup_rankings[k] < expected_ranks[k]:
|
|
||||||
matchup_rankings[k] *= 0.9
|
|
||||||
elif matchup_rankings[k] > 1.5*expected_ranks[k]:
|
|
||||||
matchup_rankings[k] *= 2.5
|
|
||||||
elif matchup_rankings[k] > expected_ranks[k]:
|
|
||||||
matchup_rankings[k] *= 1.1
|
|
||||||
if matchup_rankings[0] >= matchup_rankings[1]:
|
|
||||||
winner = matchup[1]
|
|
||||||
else:
|
|
||||||
winner = matchup[0]
|
|
||||||
winners.append(winner)
|
|
||||||
j += 1
|
|
||||||
for i in range(0,len(winners), 2):
|
|
||||||
out_matchups.append([ winners[i], winners[i+1] ])
|
|
||||||
print(winners)
|
|
||||||
return winners, out_matchups
|
|
||||||
|
|
||||||
def convert_float(string): return 400 if (string.strip() == '') else float(string)
|
|
||||||
|
|
||||||
with open(rankings_file, newline='\n') as rankings_csv:
|
|
||||||
reader = csv.reader(rankings_csv, delimiter=',', quotechar='"')
|
|
||||||
teams = []
|
|
||||||
rankings = []
|
|
||||||
for team in reader:
|
|
||||||
if team[0] == "Team":
|
|
||||||
sys_indices = []
|
|
||||||
for system in systems: sys_indices.append([ sys.strip() for sys in team ].index(system))
|
|
||||||
else:
|
|
||||||
rankings.append(mean([ convert_float(team[sys_index]) for sys_index in sys_indices ]))
|
|
||||||
teams.append(team[0].strip())
|
|
||||||
|
|
||||||
with open(matchups_file, newline='\n') as matchups_csv:
|
|
||||||
reader = csv.reader(matchups_csv, delimiter=',', quotechar='"')
|
|
||||||
|
|
||||||
r2_teams, r2_matchups = pick_winners(reader, r1_seeds, 4)
|
|
||||||
r3_teams, r3_matchups = pick_winners(r2_matchups, r2_seeds, 4)
|
|
||||||
r4_teams, r4_matchups = pick_winners(r3_matchups, r3_seeds, 4)
|
|
||||||
r5_teams, r5_matchups = pick_winners(r4_matchups, r4_seeds, 2)
|
|
||||||
r6_teams, r6_matchups = pick_winners(r5_matchups, r5_seeds, 1)
|
|
||||||
|
|
||||||
final_rankings = [rankings[teams.index(r6_matchups[0][0])], rankings[teams.index(r6_matchups[0][1])]]
|
|
||||||
winner = r6_matchups[0][1] if (final_rankings[0] >= final_rankings[1]) else r6_matchups[0][0]
|
|
||||||
|
|
||||||
print(winner)
|
|
||||||
35
matchups.csv
35
matchups.csv
@@ -1,35 +0,0 @@
|
|||||||
Gonzaga,Appalachian St
|
|
||||||
Oklahoma,Missouri
|
|
||||||
Creighton,UC Santa Barbara
|
|
||||||
Virginia,Ohio
|
|
||||||
USC,Wichita St
|
|
||||||
Kansas,E Washington,
|
|
||||||
Oregon,VCU
|
|
||||||
Iowa,Grand Canyon
|
|
||||||
|
|
||||||
Baylor,Hartford
|
|
||||||
North Carolina,Wisconsin
|
|
||||||
Villanova,Winthrop
|
|
||||||
Purdue,North Texas
|
|
||||||
Texas Tech,Utah St
|
|
||||||
Arkansas,Colgate
|
|
||||||
Florida,Virginia Tech
|
|
||||||
Ohio St,Oral Roberts
|
|
||||||
|
|
||||||
Michigan,Chicago St
|
|
||||||
LSU,St Bonaventure
|
|
||||||
Colorado,Georgetown
|
|
||||||
Florida St,UNC Greensboro
|
|
||||||
BYU,UCLA
|
|
||||||
Texas,Abilene Chr
|
|
||||||
Connecticut,Maryland
|
|
||||||
Alabama,Iona
|
|
||||||
|
|
||||||
Illinois,Drexel
|
|
||||||
Loyola-Chicago,Georgia Tech
|
|
||||||
Tennessee,Oregon St
|
|
||||||
Oklahoma St,Liberty
|
|
||||||
San Diego St,Syracuse
|
|
||||||
West Virginia,Morehead St
|
|
||||||
Clemson,Rutgers
|
|
||||||
Houston,Cleveland St
|
|
||||||
|
87
old/main.py
Normal file
87
old/main.py
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
import csv
|
||||||
|
from statistics import mean
|
||||||
|
|
||||||
|
rankings_file = "rankings.csv"
|
||||||
|
matchups_file = "matchups.csv"
|
||||||
|
|
||||||
|
# Some rounds modified to measure expectations better
|
||||||
|
r1_seeds = [[1, 28], [8, 9], [5, 12], [4, 16], [6, 11], [3, 18], [7, 10], [2, 24]]
|
||||||
|
r2_seeds = [[1, 10], [5, 4], [6, 3], [9, 2]]
|
||||||
|
r3_seeds = [[1, 4], [3, 2]]
|
||||||
|
r4_seeds = [[1, 4], [3, 2]]
|
||||||
|
r5_seeds = [[1, 4], [3, 2]]
|
||||||
|
r6_seeds = [[1, 2]]
|
||||||
|
systems = ["DOK", "INC", "LMC", "TPR"]
|
||||||
|
|
||||||
|
|
||||||
|
def pick_winners(matchups, seeds, multiplier):
|
||||||
|
j = 0
|
||||||
|
winners = []
|
||||||
|
out_matchups = []
|
||||||
|
for matchup in matchups:
|
||||||
|
if matchup != []:
|
||||||
|
expected_ranks = [multiplier * seed for seed in seeds[j % len(seeds)]]
|
||||||
|
matchup_rankings = [
|
||||||
|
rankings[teams.index(matchup[0])],
|
||||||
|
rankings[teams.index(matchup[1])],
|
||||||
|
]
|
||||||
|
for k in range(2):
|
||||||
|
if matchup_rankings[k] < 0.75 * expected_ranks[k]:
|
||||||
|
matchup_rankings[k] *= 0.5
|
||||||
|
elif matchup_rankings[k] < expected_ranks[k]:
|
||||||
|
matchup_rankings[k] *= 0.9
|
||||||
|
elif matchup_rankings[k] > 1.5 * expected_ranks[k]:
|
||||||
|
matchup_rankings[k] *= 2.5
|
||||||
|
elif matchup_rankings[k] > expected_ranks[k]:
|
||||||
|
matchup_rankings[k] *= 1.1
|
||||||
|
if matchup_rankings[0] >= matchup_rankings[1]:
|
||||||
|
winner = matchup[1]
|
||||||
|
else:
|
||||||
|
winner = matchup[0]
|
||||||
|
winners.append(winner)
|
||||||
|
j += 1
|
||||||
|
for i in range(0, len(winners), 2):
|
||||||
|
out_matchups.append([winners[i], winners[i + 1]])
|
||||||
|
print(winners)
|
||||||
|
return winners, out_matchups
|
||||||
|
|
||||||
|
|
||||||
|
def convert_float(string):
|
||||||
|
return 400 if (string.strip() == "") else float(string)
|
||||||
|
|
||||||
|
|
||||||
|
with open(rankings_file, newline="\n") as rankings_csv:
|
||||||
|
reader = csv.reader(rankings_csv, delimiter=",", quotechar='"')
|
||||||
|
teams = []
|
||||||
|
rankings = []
|
||||||
|
for team in reader:
|
||||||
|
if team[0][1:] == 'Team':
|
||||||
|
sys_indices = []
|
||||||
|
for system in systems:
|
||||||
|
sys_indices.append([sys.strip() for sys in team].index(system))
|
||||||
|
else:
|
||||||
|
rankings.append(
|
||||||
|
mean([convert_float(team[sys_index]) for sys_index in sys_indices])
|
||||||
|
)
|
||||||
|
teams.append(team[0].strip())
|
||||||
|
|
||||||
|
with open(matchups_file, newline="\n") as matchups_csv:
|
||||||
|
reader = csv.reader(matchups_csv, delimiter=",", quotechar='"')
|
||||||
|
|
||||||
|
r2_teams, r2_matchups = pick_winners(reader, r1_seeds, 4)
|
||||||
|
r3_teams, r3_matchups = pick_winners(r2_matchups, r2_seeds, 4)
|
||||||
|
r4_teams, r4_matchups = pick_winners(r3_matchups, r3_seeds, 4)
|
||||||
|
r5_teams, r5_matchups = pick_winners(r4_matchups, r4_seeds, 2)
|
||||||
|
r6_teams, r6_matchups = pick_winners(r5_matchups, r5_seeds, 1)
|
||||||
|
|
||||||
|
final_rankings = [
|
||||||
|
rankings[teams.index(r6_matchups[0][0])],
|
||||||
|
rankings[teams.index(r6_matchups[0][1])],
|
||||||
|
]
|
||||||
|
winner = (
|
||||||
|
r6_matchups[0][1]
|
||||||
|
if (final_rankings[0] >= final_rankings[1])
|
||||||
|
else r6_matchups[0][0]
|
||||||
|
)
|
||||||
|
|
||||||
|
print(winner)
|
||||||
35
old/matchups.csv
Normal file
35
old/matchups.csv
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
Connecticut,Stetson
|
||||||
|
FL Atlantic,Northwestern
|
||||||
|
San Diego St,UAB
|
||||||
|
Auburn,Yale
|
||||||
|
BYU,Duquesne
|
||||||
|
Illinois,Morehead St
|
||||||
|
Washington St,Drake
|
||||||
|
Iowa St,S Dakota St
|
||||||
|
|
||||||
|
North Carolina,IUPUI
|
||||||
|
Mississippi St,Michigan St
|
||||||
|
St Mary's CA,Grand Canyon
|
||||||
|
Alabama,Col Charleston
|
||||||
|
Clemson,New Mexico
|
||||||
|
Baylor,Colgate
|
||||||
|
Dayton,Nevada
|
||||||
|
Arizona,Long Beach St
|
||||||
|
|
||||||
|
Houston,Longwood
|
||||||
|
Nebraska,Texas A&M
|
||||||
|
Wisconsin,James Madison
|
||||||
|
Duke,Vermont
|
||||||
|
Texas Tech,NC State
|
||||||
|
Kentucky,Oakland
|
||||||
|
Florida,IUPUI
|
||||||
|
Marquette,WKU
|
||||||
|
|
||||||
|
Purdue,IUPUI
|
||||||
|
Utah St,TCU
|
||||||
|
Gonzaga,McNeese St
|
||||||
|
Kansas,Samford
|
||||||
|
South Carolina,Oregon
|
||||||
|
Creighton,Akron
|
||||||
|
Texas,Virginia
|
||||||
|
Tennessee,St Peter's
|
||||||
|
363
old/rankings.csv
Normal file
363
old/rankings.csv
Normal file
@@ -0,0 +1,363 @@
|
|||||||
|
Team,Conf,W-L,Δ,CMP,Sort,PGH,PIR,POM,RMS,RPI,RT,SEL,SFX,SMS,SPR,SRS,STH,STY,TPR,TRK,TRP,USA,WIL,WLK,7OT,AP,ARG,BAR,BBT,BIH,BMN,BNZ,BWE,COL,DCI,DES,DII,DOK,DOL,DP,DUN,EBP,EMK,ESR,FAS,HAS,INC,JJK,JNG,KPI,KPK,LMC,LOG,MAS,MB,MGS,MMG,MOR,NET,NOL,OMN,OMY,PAC
|
||||||
|
Houston,B12,28-3,,1,>>,2,1,1,2,2,1,2,1,1,1,1,2,1,2,1,1,1,2,1,2,1,1,1,2,2,2,1,1,2,2,1,1,1,1,1,2,1,2,2,2,1,2,2,1,2,2,3,1,2,3,1,1,1,1,2,2,3,1
|
||||||
|
Purdue,B10,28-3,,2,>>,1,2,3,1,1,2,1,4,2,2,3,1,3,3,3,2,3,1,3,1,3,2,3,1,1,1,4,2,1,3,2,2,3,2,3,3,2,3,1,1,3,3,1,2,1,1,5,2,1,1,2,2,3,2,1,5,2,3
|
||||||
|
Connecticut,BE,28-3,,3,>>,3,4,2,3,5,8,3,1,3,3,4,6,4,1,2,4,2,3,2,12,2,3,2,3,3,3,3,3,3,1,3,3,2,3,2,1,3,1,3,3,2,1,3,3,4,3,4,4,3,2,3,4,2,3,3,1,1,2
|
||||||
|
Tennessee,SEC,24-7,+1,4,>>,4,5,5,4,3,5,4,3,5,5,5,4,5,4,6,5,5,4,5,8,5,4,5,4,4,5,6,4,4,4,6,4,5,5,5,6,5,5,5,4,6,6,4,4,3,5,2,6,4,5,8,6,6,5,4,4,4,5
|
||||||
|
Arizona,P12,24-7,-1,5,>>,6,3,6,13,8,3,6,4,4,7,2,3,2,6,4,3,7,10,4,3,6,5,4,5,7,8,2,5,6,5,14,5,4,10,4,4,4,4,12,6,5,4,11,6,6,4,1,3,5,7,4,3,4,4,12,3,6,6
|
||||||
|
North Carolina,ACC,25-6,,6,>>,5,7,8,5,6,12,5,8,6,4,9,5,9,5,8,9,4,5,7,5,4,6,9,7,5,4,7,6,5,7,4,7,10,4,9,5,11,8,4,5,10,7,5,5,5,6,7,7,6,4,9,8,7,7,5,9,5,7
|
||||||
|
Auburn,SEC,24-7,,7,>>,7,6,4,10,13,7,7,4,7,10,6,7,6,7,5,6,12,10,6,10,12,7,6,6,9,16,5,7,8,6,5,6,6,15,6,8,6,6,16,7,4,5,8,16,8,7,6,5,8,14,5,7,5,6,15,6,7,4
|
||||||
|
Duke,ACC,24-7,+2,8,>>,10,9,7,14,25,14,10,7,9,13,10,8,10,9,9,8,11,10,8,20,11,9,8,8,8,14,9,8,14,10,8,8,8,14,7,9,7,7,14,9,9,8,14,12,15,9,9,8,14,16,10,10,12,10,11,7,8,9
|
||||||
|
Iowa St,B12,24-7,-1,9,>>,12,12,12,6,14,6,8,11,12,6,8,14,7,11,7,11,8,6,13,28,7,8,7,12,6,10,10,10,16,12,11,12,14,6,8,7,10,15,6,8,12,13,9,8,12,10,8,13,11,8,13,5,9,9,9,11,16,8
|
||||||
|
Creighton,BE,23-8,+2,10,>>,15,11,9,12,22,15,12,8,8,8,12,12,13,8,10,10,6,10,10,23,8,10,10,14,15,11,11,12,17,8,13,11,11,12,10,14,8,9,11,12,7,9,15,9,13,12,11,11,12,12,18,13,14,11,7,8,11,12
|
||||||
|
Marquette,BE,23-8,,11,>>,11,13,13,7,15,22,9,18,13,11,15,11,11,12,11,13,10,8,12,34,10,11,11,13,10,7,15,15,12,11,21,14,16,7,14,13,14,12,7,10,8,12,13,7,18,13,14,12,7,6,19,15,16,13,10,12,10,15
|
||||||
|
Alabama,SEC,21-10,-3,12,>>,14,8,11,17,11,4,11,15,10,16,7,9,8,16,15,7,19,18,11,4,19,12,15,10,17,15,8,9,13,15,--,10,7,16,11,11,9,14,15,11,17,10,19,14,7,8,10,10,16,17,17,9,15,8,19,16,13,19
|
||||||
|
Illinois,B10,23-8,,13,>>,17,10,10,15,20,10,13,11,14,18,14,10,15,10,12,12,14,15,9,9,13,13,14,9,18,13,13,11,15,14,10,9,12,13,12,15,12,10,13,13,13,11,17,15,16,11,12,9,13,11,15,14,13,15,13,14,9,10
|
||||||
|
Baylor,B12,22-9,,14,>>,19,16,14,11,17,9,15,11,11,12,13,15,14,14,17,15,13,14,15,17,14,15,13,15,13,9,12,13,21,18,18,17,17,8,13,25,13,16,10,14,14,16,20,10,10,15,13,16,15,13,32,12,17,14,20,15,18,13
|
||||||
|
Kansas,B12,22-9,,15,>>,18,18,18,8,12,17,14,18,15,9,16,16,16,15,13,17,17,9,18,11,16,17,16,19,11,6,17,16,18,16,19,15,13,9,19,22,17,17,8,15,18,18,16,11,9,18,17,19,9,10,34,18,20,18,21,19,17,16
|
||||||
|
Kentucky,SEC,23-8,+1,16,>>,16,17,17,16,32,23,18,15,16,15,17,13,18,13,20,18,9,15,14,22,9,19,22,17,20,17,16,14,20,13,9,13,15,18,18,16,20,13,17,16,16,15,18,13,17,14,16,14,17,15,22,23,11,19,6,13,12,11
|
||||||
|
Gonzaga,WCC,24-6,-1,17,>>,25,14,15,22,38,13,24,8,18,22,19,20,17,18,14,16,15,24,16,16,17,18,18,11,21,33,18,17,25,9,12,16,9,23,17,10,15,11,26,19,11,14,23,24,44,19,19,17,10,20,14,21,10,16,8,10,14,14
|
||||||
|
BYU,B12,22-9,,18,>>,27,15,16,20,42,11,21,18,17,14,11,18,12,17,18,14,21,20,17,45,20,16,12,24,25,18,14,18,37,17,--,19,18,19,15,23,16,19,20,17,15,17,31,17,29,17,18,15,19,21,21,11,8,12,30,17,29,18
|
||||||
|
Clemson,ACC,21-10,+1,19,>>,22,25,24,23,23,31,22,31,27,20,22,17,21,19,26,27,--,21,19,15,--,24,28,22,26,26,24,27,24,35,--,29,29,31,27,35,23,26,31,23,24,24,33,20,14,20,26,20,28,27,39,33,28,26,47,27,19,26
|
||||||
|
Texas Tech,B12,22-9,+15,20,>>,30,27,25,21,35,33,25,15,20,25,23,34,23,37,29,26,23,23,27,75,25,27,21,51,30,19,22,20,31,20,16,23,30,20,22,29,24,23,18,24,25,23,32,26,30,25,32,33,18,22,38,22,18,30,24,21,40,22
|
||||||
|
Dayton,A10,24-6,+2,21,>>,20,38,28,26,4,21,20,39,24,35,42,23,42,28,36,39,24,21,22,6,24,14,35,18,19,28,37,21,9,46,23,32,40,21,38,27,26,36,19,21,30,41,12,25,11,16,41,23,35,24,20,36,63,21,31,44,21,56
|
||||||
|
St Mary's CA,WCC,24-7,-1,22,>>,40,20,22,44,52,16,35,11,25,28,20,39,20,45,16,20,20,48,36,27,21,21,17,41,39,53,20,19,36,19,22,31,19,44,16,20,18,34,58,27,21,22,36,32,35,22,27,37,24,51,23,16,22,17,17,18,50,30
|
||||||
|
San Diego St,MWC,22-9,-4,23,>>,21,28,20,27,10,24,23,23,22,23,33,27,30,24,25,33,--,26,26,13,--,29,23,16,22,31,23,22,23,40,--,21,25,29,31,34,35,22,37,30,37,26,26,19,23,37,43,35,29,35,44,20,59,20,38,24,23,35
|
||||||
|
Texas,B12,20-11,+1,24,>>,37,21,23,25,51,25,34,18,28,31,21,38,24,38,19,21,--,29,28,37,--,37,20,43,41,32,21,23,47,22,--,25,23,25,20,32,21,20,22,26,23,20,43,30,39,35,31,29,21,26,48,19,19,24,27,20,35,17
|
||||||
|
Nevada,MWC,26-6,+8,25,>>,13,39,35,19,21,47,19,31,19,17,46,19,38,36,34,45,22,19,30,39,23,23,38,20,16,22,40,25,10,21,--,46,45,22,42,24,51,43,25,22,34,38,10,22,20,30,46,41,23,19,12,43,52,31,14,29,22,21
|
||||||
|
Florida,SEC,21-10,-4,26,>>,32,26,30,28,34,30,29,23,36,32,32,24,32,21,22,29,--,28,25,19,--,38,39,25,29,25,30,26,39,34,--,20,22,32,33,42,28,21,27,28,38,21,37,28,32,26,23,24,26,31,37,39,39,35,32,31,20,25
|
||||||
|
Michigan St,B10,18-13,-1,27,>>,50,19,19,45,60,19,43,23,35,38,18,21,19,20,21,19,--,49,20,21,--,40,19,36,49,42,19,24,56,32,--,18,20,48,21,46,19,18,51,39,19,19,58,35,42,32,15,18,33,47,56,17,24,25,48,23,30,23
|
||||||
|
Wisconsin,B10,19-12,,28,>>,36,23,21,29,29,27,30,46,31,33,25,22,26,23,28,23,--,29,23,32,--,33,34,35,38,21,31,32,41,56,--,24,24,30,32,50,22,30,23,31,31,25,48,23,24,31,25,22,22,29,51,24,35,22,59,40,24,27
|
||||||
|
South Carolina,SEC,25-6,-5,29,>>,9,52,47,9,30,84,16,39,32,21,57,29,49,33,39,59,16,6,41,43,15,28,52,23,12,12,53,35,11,27,7,42,52,11,49,28,46,54,9,18,48,51,7,18,19,24,49,50,27,9,29,59,42,49,18,49,15,29
|
||||||
|
Nebraska,B10,22-9,-1,30,>>,31,34,32,24,37,42,28,31,23,26,36,28,27,26,24,36,--,25,24,44,--,35,33,33,35,23,35,31,34,23,--,39,37,24,28,37,38,32,24,29,26,32,34,36,27,33,30,27,34,23,25,35,34,37,33,34,28,20
|
||||||
|
FL Atlantic,AAC,24-7,+1,31,>>,26,33,37,37,16,20,26,46,29,42,38,25,35,25,53,30,--,33,31,14,--,22,41,29,31,30,38,34,22,39,15,22,21,34,44,17,31,25,34,25,49,34,28,38,26,21,45,26,38,25,24,42,37,34,22,52,26,38
|
||||||
|
Colorado,P12,22-9,+5,32,>>,34,22,27,38,31,34,36,23,30,36,24,26,25,31,27,22,--,38,21,41,--,36,30,39,42,36,29,30,33,29,--,27,26,36,30,33,49,33,42,36,22,30,41,41,34,27,21,21,30,36,26,34,26,27,28,25,37,28
|
||||||
|
Utah St,MWC,26-5,-2,33,>>,8,50,44,18,7,43,17,46,21,19,50,35,44,48,51,52,18,15,32,47,18,20,44,34,14,20,46,29,7,44,17,41,43,17,52,18,66,58,21,20,56,49,6,21,21,23,77,46,20,18,28,47,53,32,16,43,42,24
|
||||||
|
TCU,B12,20-11,,34,>>,58,24,33,36,80,35,47,23,41,29,27,43,22,29,35,24,--,41,38,70,--,46,25,42,45,39,25,36,59,38,--,34,27,37,25,36,29,28,35,42,29,28,55,34,59,47,24,28,31,42,57,26,23,40,57,22,43,39
|
||||||
|
Boise St,MWC,22-9,+1,35,>>,23,40,38,30,26,28,33,22,34,24,39,47,34,50,37,46,--,29,42,31,--,43,29,46,28,40,34,28,27,28,--,48,48,40,34,44,42,48,44,35,32,42,29,29,25,42,53,52,41,41,60,37,51,23,25,26,57,44
|
||||||
|
Washington St,P12,23-8,-9,36,>>,29,47,45,35,43,56,31,46,37,34,41,32,39,39,45,47,25,29,43,89,22,41,42,40,34,29,42,38,29,33,24,45,44,27,43,30,43,41,36,37,45,43,35,27,31,34,20,43,36,30,31,44,43,45,26,39,49,34
|
||||||
|
New Mexico,MWC,22-9,+2,37,>>,35,31,34,42,24,18,37,46,26,27,34,42,31,30,31,35,--,41,33,18,--,39,32,38,37,58,28,41,35,53,--,28,31,59,39,39,59,39,71,40,42,33,38,46,33,38,47,34,57,46,33,31,45,28,60,37,39,51
|
||||||
|
Indiana St,MVC,28-6,+5,38,>>,38,43,43,51,28,26,40,39,39,44,48,33,40,46,40,50,--,40,40,35,--,31,48,21,23,43,41,45,30,49,--,57,38,38,47,19,40,52,38,33,36,48,25,45,43,28,68,32,50,34,7,46,33,29,41,38,31,71
|
||||||
|
Northwestern,B10,21-10,+6,39,>>,39,42,42,32,53,63,39,23,40,40,47,41,48,35,32,42,--,35,46,46,--,48,47,45,43,24,48,44,42,24,--,36,42,35,37,47,39,35,29,41,39,37,45,37,36,41,36,45,32,28,52,48,38,50,37,32,25,42
|
||||||
|
St John's,BE,19-12,+4,40,>>,61,29,31,50,82,44,49,23,46,47,26,36,28,22,23,28,--,52,37,38,--,50,27,53,57,52,27,39,65,30,--,33,32,49,23,59,30,29,46,50,27,31,66,43,70,45,28,36,44,48,63,27,27,39,54,33,36,36
|
||||||
|
Drake,MVC,28-6,+5,41,>>,24,53,50,46,9,36,27,46,38,37,63,37,46,44,47,62,--,35,49,24,--,32,53,28,27,37,51,33,19,36,--,67,53,41,53,21,54,46,40,34,46,53,22,44,22,29,71,44,53,37,6,53,44,47,23,50,34,45
|
||||||
|
Oklahoma,B12,20-11,-4,42,>>,45,35,40,31,62,46,41,39,42,41,30,45,41,42,42,32,--,37,44,79,--,44,36,48,40,27,36,47,52,57,--,38,39,28,36,40,34,42,28,32,41,36,50,33,46,48,34,39,25,32,50,29,25,43,58,45,45,33
|
||||||
|
Colorado St,MWC,22-9,-1,43,>>,28,46,36,34,18,29,32,59,33,30,43,31,52,34,41,51,--,33,39,7,--,42,40,27,32,35,44,43,26,68,--,30,41,42,51,51,70,44,56,38,43,45,30,31,28,46,52,40,49,44,49,38,62,36,64,51,32,47
|
||||||
|
Mississippi St,SEC,19-12,-14,44,>>,46,37,39,41,47,40,42,39,47,46,40,30,47,43,38,34,--,45,35,26,--,47,46,30,47,46,43,46,48,62,--,35,28,57,41,57,37,31,53,47,40,35,53,42,40,40,40,31,45,49,53,41,41,42,65,42,27,40
|
||||||
|
Wake Forest,ACC,19-12,-4,45,>>,55,32,26,53,70,32,54,31,50,39,29,40,36,27,33,37,--,52,29,62,--,51,31,44,64,65,26,37,60,51,--,26,34,67,26,63,27,27,62,49,28,27,65,57,51,43,22,25,58,65,54,30,29,38,70,35,41,49
|
||||||
|
Villanova,BE,17-14,-6,46,>>,70,30,29,62,84,41,63,23,49,43,28,53,29,32,30,25,--,66,34,61,--,53,24,47,67,60,32,42,82,31,--,40,35,65,24,71,25,24,60,57,20,29,84,52,66,54,35,30,42,62,79,25,32,33,62,30,38,31
|
||||||
|
Pittsburgh,ACC,21-10,+1,47,>>,44,45,46,43,75,45,46,31,45,45,37,44,33,64,46,43,--,41,45,84,--,45,37,54,53,48,39,40,51,26,--,50,49,45,35,43,33,45,43,45,33,40,54,58,55,39,38,42,51,52,36,45,30,44,34,36,48,32
|
||||||
|
Cincinnati,B12,18-13,+2,48,>>,71,36,41,63,79,37,64,31,52,51,31,46,37,40,44,31,--,66,47,48,--,52,26,57,73,69,33,48,77,45,--,43,36,64,29,60,32,38,65,52,35,39,69,66,69,55,37,38,55,68,73,28,21,41,75,28,61,52
|
||||||
|
Ohio St,B10,19-12,+4,49,>>,56,49,49,57,72,50,53,31,48,48,44,62,50,47,43,41,--,55,48,49,--,54,43,69,65,50,49,49,57,25,--,44,47,54,40,58,41,37,61,53,44,44,62,61,48,52,55,47,40,57,62,40,36,54,44,41,53,46
|
||||||
|
Texas A&M,SEC,18-13,+12,50,>>,60,48,48,48,69,61,51,46,57,52,51,48,55,41,48,44,--,49,51,118,--,56,51,62,61,55,52,52,64,43,--,37,33,60,50,65,36,40,47,54,47,47,64,47,47,56,48,49,47,53,77,51,40,46,49,48,33,37
|
||||||
|
Grand Canyon,WAC,27-4,,51,>>,43,62,55,49,27,48,44,46,44,61,69,58,67,55,68,69,--,41,53,52,--,30,55,37,33,44,63,54,32,64,--,52,55,47,64,26,60,55,55,43,62,62,24,56,57,44,85,54,62,43,16,61,71,53,43,57,47,54
|
||||||
|
Iowa,B10,18-13,-5,52,>>,65,41,52,58,74,51,62,46,51,54,45,52,45,56,49,38,--,64,50,50,--,57,50,59,59,51,47,50,72,47,--,49,46,52,48,66,45,49,52,56,50,46,75,50,67,51,44,48,39,50,70,49,50,60,55,47,52,50
|
||||||
|
Virginia,ACC,22-9,+1,53,>>,33,67,66,33,49,73,38,74,53,50,64,55,53,74,55,61,--,26,55,100,--,49,65,75,44,34,66,53,38,60,--,62,56,33,66,45,50,68,32,44,59,64,39,40,37,49,75,67,37,38,41,65,60,51,36,74,62,59
|
||||||
|
Seton Hall,BE,20-11,+2,54,>>,49,59,56,40,67,74,50,66,56,49,59,49,57,57,52,60,--,45,56,111,--,63,58,70,51,38,59,51,55,42,--,51,64,39,55,56,65,57,33,51,51,52,56,39,61,60,50,64,43,40,58,57,49,62,42,55,51,43
|
||||||
|
Princeton,Ivy,24-3,,55,>>,42,69,57,54,19,53,48,59,43,55,90,82,81,67,71,78,--,49,52,55,--,25,70,31,24,49,73,59,28,61,--,69,68,26,71,31,48,67,30,46,70,74,21,63,49,36,120,51,65,39,116,68,96,48,29,67,46,63
|
||||||
|
James Madison,SBC,30-3,-4,56,>>,63,64,68,65,76,58,69,39,54,60,84,70,77,58,69,64,--,69,60,102,--,34,72,26,36,59,67,68,50,71,20,70,54,43,73,12,53,47,39,48,66,67,27,65,88,50,76,55,60,33,11,72,64,55,35,69,55,41
|
||||||
|
Utah,P12,18-13,-8,57,>>,66,44,51,67,71,39,60,59,55,53,35,54,43,53,50,40,--,66,54,97,--,59,49,81,66,63,45,65,70,75,--,47,51,66,46,73,57,51,69,62,58,50,79,59,56,59,29,53,59,64,72,32,48,52,107,54,72,74
|
||||||
|
Virginia Tech,ACC,18-13,+3,58,>>,62,55,53,60,78,64,66,46,68,57,55,59,61,52,54,56,--,61,57,81,--,66,54,71,72,70,54,55,74,67,--,53,59,68,54,82,44,53,70,61,54,57,73,54,60,66,54,58,63,70,66,54,56,56,72,58,60,64
|
||||||
|
Providence,BE,19-12,-1,59,>>,67,57,61,52,85,80,61,74,59,58,56,50,59,49,64,53,--,59,58,116,--,69,59,66,60,56,60,64,69,58,--,60,67,51,60,64,52,69,45,58,73,55,68,48,71,68,56,63,54,58,71,60,55,64,69,70,54,76
|
||||||
|
Memphis,AAC,22-9,-3,60,>>,53,66,71,64,48,82,52,59,62,69,70,51,74,66,93,65,--,55,61,78,--,55,71,58,54,66,69,57,44,55,--,63,58,61,69,41,73,63,57,63,89,66,52,62,50,58,66,66,46,54,55,70,68,69,46,66,59,82
|
||||||
|
Kansas St,B12,18-13,+2,61,>>,68,61,67,56,91,72,67,39,63,59,58,67,56,61,65,57,--,61,70,110,--,72,57,86,74,45,61,61,78,41,--,56,60,50,56,70,56,56,48,66,72,61,74,53,68,73,65,76,48,60,88,63,46,70,61,63,68,48
|
||||||
|
Oregon,P12,20-11,-3,62,>>,54,60,69,61,64,94,56,59,58,63,62,56,63,71,62,55,--,55,64,60,--,67,66,73,62,61,64,66,54,85,--,55,57,56,62,62,69,61,66,68,74,63,60,64,62,67,39,69,52,59,67,64,57,68,66,60,76,73
|
||||||
|
UCF,B12,16-14,+10,63,>>,83,58,60,73,100,52,77,31,70,62,49,68,51,60,58,58,--,76,65,99,--,75,45,91,92,76,50,60,94,37,--,73,66,74,45,79,55,62,75,72,57,58,90,73,77,76,67,65,69,76,99,50,31,61,79,46,79,55
|
||||||
|
Washington,P12,17-14,+12,64,>>,76,54,59,78,97,60,72,46,69,66,54,61,62,51,59,54,--,74,62,80,--,84,60,94,82,80,57,73,84,59,--,61,70,77,58,84,62,59,90,78,60,60,89,72,79,79,33,60,71,75,93,55,47,67,73,53,78,53
|
||||||
|
Butler,BE,18-13,+9,65,>>,69,65,63,59,99,93,68,97,64,56,53,66,58,62,57,67,--,64,67,131,--,78,63,88,70,54,62,76,80,70,--,64,72,53,63,77,77,74,54,69,61,59,80,49,73,80,61,71,64,61,85,56,58,66,85,73,66,66
|
||||||
|
Syracuse,ACC,20-11,,66,>>,41,83,79,39,36,100,45,82,67,64,77,60,96,90,74,89,--,39,74,59,--,71,87,74,50,41,85,69,43,84,--,71,99,46,83,74,100,84,41,55,85,78,49,55,41,63,72,89,61,45,68,82,79,79,63,83,63,57
|
||||||
|
Bradley,MVC,23-11,+8,67,>>,75,70,64,89,46,38,71,46,75,72,71,57,68,75,56,76,--,77,66,30,--,70,64,65,76,95,65,63,63,72,--,77,65,88,61,69,72,70,98,79,53,69,70,76,63,70,88,62,96,93,47,66,66,59,86,56,73,108
|
||||||
|
Xavier,BE,15-16,-1,68,>>,90,51,54,77,106,59,79,82,80,67,52,64,54,59,63,48,--,81,59,74,--,82,56,80,88,78,55,70,97,73,--,54,63,78,57,91,47,65,76,77,64,56,100,89,89,84,51,57,66,82,110,52,54,65,94,61,56,69
|
||||||
|
Richmond,A10,23-8,-5,69,>>,51,86,81,66,55,85,58,97,74,74,83,72,73,79,73,86,--,52,73,68,--,58,79,56,56,68,84,62,49,90,--,84,97,62,82,61,75,96,64,59,82,86,46,51,38,61,60,77,74,69,42,81,78,71,50,82,71,77
|
||||||
|
McNeese St,SLC,28-3,-1,70,>>,74,80,65,81,56,57,75,66,73,65,97,92,82,65,84,96,--,77,63,69,--,26,67,32,46,67,77,95,61,119,--,88,84,63,75,49,58,80,59,64,81,84,42,69,93,53,100,56,109,67,64,74,82,58,89,85,44,67
|
||||||
|
UNLV,MWC,19-11,+6,71,>>,59,73,72,71,59,69,70,66,76,68,75,69,69,63,67,72,--,70,72,42,--,76,69,79,68,73,72,58,58,50,--,96,74,80,68,83,64,86,84,73,65,73,72,60,65,78,79,83,80,79,96,71,98,75,53,65,58,65
|
||||||
|
South Florida,AAC,23-6,-7,72,>>,47,94,88,69,44,86,57,82,65,87,93,71,89,72,94,99,--,61,76,92,--,60,83,63,52,64,92,67,40,66,25,86,103,69,81,67,96,82,63,65,91,89,44,68,52,57,94,84,79,66,45,95,97,78,39,90,65,62
|
||||||
|
SMU,AAC,20-11,-5,73,>>,95,63,62,95,94,55,83,66,83,75,60,63,64,68,60,66,--,93,68,56,--,74,61,60,91,92,58,71,86,96,--,65,61,91,65,72,68,60,94,85,67,65,92,88,101,81,57,61,84,91,65,58,76,57,104,72,64,81
|
||||||
|
San Francisco,WCC,23-9,+5,74,>>,82,68,70,83,103,68,84,74,77,76,68,83,60,86,70,68,--,84,77,125,--,73,68,67,80,79,68,79,89,69,--,68,62,81,70,52,63,66,87,75,52,72,77,82,112,83,73,74,70,77,40,67,61,63,76,68,84,61
|
||||||
|
Samford,SC,28-5,+6,75,>>,64,85,80,79,33,54,73,74,66,71,102,88,84,98,87,94,--,71,69,40,--,61,95,49,48,62,82,78,46,78,--,101,88,70,99,38,99,101,73,70,102,92,40,85,75,62,105,70,87,63,30,103,103,74,56,86,74,79
|
||||||
|
Indiana,B10,18-13,+12,76,>>,57,81,86,55,63,98,65,66,72,85,81,79,92,89,78,80,--,55,86,109,--,89,85,106,71,47,86,72,62,48,--,66,79,55,77,85,94,79,49,71,78,76,67,67,64,82,87,100,56,56,97,84,72,93,45,77,77,60
|
||||||
|
Mississippi,SEC,20-11,-17,77,>>,52,78,84,47,58,108,55,97,71,79,79,73,85,85,76,73,--,45,84,82,--,80,96,77,55,57,83,85,53,114,--,59,69,58,90,68,93,85,50,60,103,80,51,75,53,74,78,86,67,55,74,85,90,90,100,109,70,83
|
||||||
|
Maryland,B10,15-16,-7,78,>>,108,56,58,92,140,78,99,59,81,70,61,65,65,54,61,49,--,104,71,141,--,94,62,78,102,93,56,74,118,83,--,58,50,93,59,96,61,50,97,95,55,54,115,115,98,92,42,59,68,89,117,62,65,77,109,59,67,70
|
||||||
|
Loyola-Chicago,A10,23-8,+7,79,>>,48,95,93,68,40,70,59,82,78,93,95,86,88,96,83,97,--,59,82,115,--,62,82,90,58,71,94,56,45,65,--,80,89,71,78,75,101,81,67,67,77,90,47,71,45,64,95,97,85,71,59,89,95,84,51,79,80,80
|
||||||
|
Appalachian St,SBC,27-6,-10,80,>>,78,84,78,94,57,66,85,66,61,80,101,90,87,69,98,87,--,90,75,77,--,64,88,50,63,72,88,77,66,91,--,93,73,73,92,53,74,76,74,74,92,87,57,70,85,65,92,72,89,72,27,90,89,72,67,95,81,103
|
||||||
|
UC Irvine,BWC,24-8,+1,81,>>,86,75,73,99,54,67,86,66,60,77,89,76,79,77,81,81,--,90,79,58,--,65,77,52,77,81,74,81,79,74,--,95,81,82,84,54,76,73,88,91,96,75,78,86,104,71,97,68,92,87,43,77,75,73,71,71,69,97
|
||||||
|
NC State,ACC,17-14,-4,82,>>,79,72,76,70,109,90,74,74,85,73,66,80,75,70,79,71,--,71,80,142,--,90,74,89,79,83,70,84,90,89,--,72,71,79,74,89,71,78,79,76,69,71,86,77,84,89,59,79,73,78,101,75,70,80,102,76,88,85
|
||||||
|
Minnesota,B10,18-13,-11,83,>>,89,76,75,75,133,95,87,97,82,82,67,78,66,73,77,75,--,84,78,146,--,93,76,83,85,74,71,83,96,76,--,76,78,75,72,78,85,92,80,82,86,68,94,79,102,91,58,78,77,73,81,76,67,86,91,80,83,68
|
||||||
|
VCU,A10,19-12,-4,84,>>,80,91,87,86,65,49,81,82,93,90,82,77,76,87,90,92,--,81,83,33,--,88,81,76,84,105,87,75,76,80,--,90,85,96,86,81,87,87,100,80,75,88,76,80,58,86,70,82,90,99,76,86,93,76,81,78,89,93
|
||||||
|
LSU,SEC,17-14,-2,85,>>,73,82,91,72,110,105,78,74,91,78,76,85,86,80,82,77,--,74,91,133,--,96,89,99,87,77,81,82,92,94,--,75,77,84,80,108,80,83,77,83,71,81,88,74,82,90,89,99,78,80,113,83,77,92,80,96,96,72
|
||||||
|
Florida St,ACC,16-15,+5,86,>>,77,77,82,74,89,87,76,109,95,83,72,75,71,76,92,79,--,73,85,91,--,91,80,102,86,86,78,88,85,99,--,79,93,85,79,120,81,94,83,81,93,79,91,90,76,88,86,85,86,83,112,80,74,95,103,94,90,88
|
||||||
|
Massachusetts,A10,20-10,,87,>>,91,92,85,98,83,65,91,97,94,92,86,81,78,82,88,95,--,92,81,36,--,81,84,72,97,100,90,86,81,101,--,89,98,103,87,80,86,98,104,86,79,93,82,93,72,87,82,75,108,107,69,88,81,83,88,81,87,101
|
||||||
|
Penn St,B10,15-16,+8,88,>>,102,74,77,88,139,88,100,59,86,88,74,96,83,84,75,74,--,101,87,130,--,106,73,119,111,97,75,80,115,54,--,82,91,99,67,106,84,77,96,97,63,70,114,104,95,100,64,80,76,95,129,69,69,89,87,64,85,58
|
||||||
|
Col Charleston,CAA,25-7,+5,89,>>,96,103,100,103,68,83,92,46,84,107,113,105,103,102,96,103,--,96,90,53,--,86,104,85,78,85,104,87,71,52,--,100,83,83,97,48,97,95,78,90,87,102,63,101,81,77,108,92,91,84,35,110,91,100,40,75,99,87
|
||||||
|
USC,P12,14-17,+12,90,>>,100,71,83,97,129,103,104,66,92,84,73,93,70,83,72,63,--,104,89,85,--,109,78,130,116,110,79,94,117,63,--,78,76,104,76,129,79,64,116,104,68,77,122,112,105,105,63,91,82,101,139,78,73,91,83,62,104,75
|
||||||
|
Yale,Ivy,20-9,-6,91,>>,101,90,89,111,39,77,106,74,87,96,111,112,97,100,85,88,--,107,88,51,--,77,97,55,83,94,97,91,91,95,--,104,75,98,89,88,67,72,85,99,84,96,85,84,90,72,122,73,101,106,192,97,108,87,78,89,82,114
|
||||||
|
Duquesne,A10,20-11,+6,92,>>,72,101,101,87,45,71,80,109,90,95,99,95,101,105,95,102,--,77,92,25,--,85,98,95,81,89,103,92,67,86,--,97,104,86,102,99,105,104,86,84,104,104,71,92,54,85,102,101,106,94,80,100,104,98,74,101,95,78
|
||||||
|
Georgia,SEC,16-15,+2,93,>>,84,89,92,76,105,102,82,109,97,86,80,84,90,91,80,90,--,77,96,63,--,100,94,104,90,90,89,98,93,105,--,81,92,89,88,123,83,102,82,87,88,85,93,106,83,97,69,98,93,85,123,92,83,101,118,98,100,84
|
||||||
|
Cornell,Ivy,22-6,+3,94,>>,85,104,99,91,50,112,93,82,79,98,119,111,104,93,104,107,--,87,95,93,--,79,108,68,69,75,105,99,73,97,--,98,101,72,106,76,102,75,68,88,110,105,59,78,92,75,140,81,102,74,155,104,110,88,77,104,75,107
|
||||||
|
Vermont,AEC,26-6,-3,95,>>,87,107,103,105,41,96,95,82,89,110,124,115,114,106,109,110,--,99,98,67,--,68,107,64,75,87,109,90,68,98,--,110,95,76,105,55,82,97,72,89,113,109,61,98,80,69,128,90,99,90,83,106,102,103,52,112,94,112
|
||||||
|
North Texas,AAC,17-13,+3,96,>>,114,87,74,110,122,75,101,97,102,94,78,74,80,81,66,93,--,111,93,29,--,103,75,93,115,123,80,89,112,81,--,91,80,114,85,103,90,71,115,107,76,82,118,103,110,112,90,87,97,111,126,73,99,81,105,84,86,100
|
||||||
|
George Mason,A10,20-11,+7,97,>>,92,102,94,96,66,76,90,97,98,99,96,91,95,92,91,106,--,87,97,72,--,92,90,98,94,101,98,93,83,103,--,102,106,97,95,95,104,103,101,93,80,101,83,87,74,93,101,95,107,105,104,94,100,85,95,92,93,86
|
||||||
|
Boston College,ACC,17-14,+3,98,>>,88,97,95,80,108,104,89,125,96,89,85,87,91,95,107,98,--,83,94,149,--,98,92,116,95,103,91,100,95,110,--,92,100,90,93,107,95,105,92,92,83,95,96,94,91,95,83,94,95,88,103,91,84,96,111,107,98,109
|
||||||
|
Miami FL,ACC,15-16,-10,99,>>,105,79,96,84,147,89,98,109,101,81,65,94,72,78,89,70,--,95,102,121,--,101,86,101,104,96,76,105,114,130,--,83,82,102,91,97,78,91,99,94,95,83,113,122,107,107,81,96,83,102,121,79,85,99,146,110,91,118
|
||||||
|
Louisiana Tech,CUSA,22-9,-7,100,>>,110,98,90,117,77,81,110,82,88,103,106,100,107,94,86,101,--,112,101,54,--,83,93,61,99,98,100,102,98,102,--,103,96,108,104,92,88,100,103,106,97,98,97,99,115,94,118,88,105,108,100,93,112,94,98,87,92,91
|
||||||
|
Rutgers,B10,15-16,-11,101,>>,98,88,98,82,118,118,96,97,100,91,87,89,94,101,101,82,--,93,99,145,--,110,99,108,96,82,95,103,105,107,--,74,86,87,94,121,92,90,81,96,114,91,105,113,94,106,84,103,75,81,130,87,101,102,115,97,97,92
|
||||||
|
St Bonaventure,A10,18-12,-18,102,>>,109,93,97,108,96,62,108,140,105,97,92,104,93,103,100,85,--,106,100,71,--,95,91,92,101,108,93,97,99,124,--,99,90,110,96,102,89,88,109,98,94,100,99,102,86,96,93,93,111,112,92,96,94,82,122,106,105,102
|
||||||
|
Arkansas,SEC,15-16,+3,103,>>,93,99,106,85,121,114,94,82,104,105,98,97,106,97,106,84,--,87,105,117,--,114,106,132,98,91,106,101,100,77,--,85,94,100,107,122,112,89,93,101,100,99,103,111,99,111,96,115,81,96,145,109,87,109,90,91,108,96
|
||||||
|
UAB,AAC,20-11,+10,104,>>,81,114,119,93,61,99,88,109,103,116,112,107,108,107,121,114,--,86,108,87,--,104,109,122,89,84,112,96,75,82,--,113,107,92,112,100,125,112,89,100,119,107,81,83,78,99,114,123,88,86,111,120,120,112,68,113,103,110
|
||||||
|
St Joseph's PA,A10,19-12,-2,105,>>,107,106,104,106,98,79,109,125,106,100,100,109,102,104,99,105,--,107,103,83,--,102,102,115,107,111,102,106,101,111,--,105,102,111,103,93,91,106,105,102,90,108,98,91,103,103,103,104,113,109,94,98,80,97,106,103,112,123
|
||||||
|
Santa Clara,WCC,20-12,+1,106,>>,103,108,109,102,117,107,103,82,107,104,105,101,100,108,118,109,--,101,112,128,--,115,105,110,105,102,107,110,106,79,--,109,110,106,108,98,121,108,106,105,111,106,102,81,109,118,107,117,98,97,78,105,106,104,96,93,106,89
|
||||||
|
UCLA,P12,15-16,-2,107,>>,111,96,102,101,163,132,112,82,109,102,91,103,98,99,97,83,--,110,104,140,--,129,103,133,122,114,99,104,126,88,--,94,87,107,98,119,111,93,108,113,101,94,127,130,118,124,74,108,72,103,162,101,92,115,92,88,107,94
|
||||||
|
Charlotte,AAC,19-11,,108,>>,97,115,114,104,73,101,97,125,108,114,109,99,109,114,103,117,--,96,107,64,--,97,111,112,100,104,111,109,88,122,--,111,115,101,115,101,116,121,102,103,118,113,95,96,97,101,117,113,110,104,131,108,117,105,93,121,110,99
|
||||||
|
Northern Iowa,MVC,19-14,,109,>>,104,113,111,113,88,117,107,109,111,109,118,102,111,119,111,120,--,109,110,76,--,113,112,100,103,112,114,107,103,108,--,118,117,109,114,130,118,124,113,111,106,114,104,95,96,108,104,110,115,110,122,113,107,108,97,114,101,121
|
||||||
|
Hofstra,CAA,20-12,+8,110,>>,127,110,108,128,86,92,122,74,114,119,127,129,122,111,110,112,--,127,106,66,--,111,110,111,121,124,118,112,124,92,--,119,113,123,111,113,98,107,120,117,98,118,117,117,114,104,130,106,123,124,127,115,105,107,101,108,117,90
|
||||||
|
Stanford,P12,13-17,+12,111,>>,115,100,105,109,180,133,114,82,122,101,88,114,105,88,102,91,--,114,111,147,--,133,101,156,128,134,96,113,133,109,--,87,105,118,100,144,109,99,136,116,109,97,137,148,119,131,62,114,103,117,151,99,88,113,158,100,124,116
|
||||||
|
Belmont,MVC,20-13,+5,112,>>,112,122,115,118,95,116,113,82,116,120,123,123,126,126,108,132,--,113,113,95,--,118,113,109,109,121,115,108,104,106,--,122,125,112,109,114,132,117,119,118,99,117,108,97,108,115,126,116,119,115,118,119,109,117,113,102,114,119
|
||||||
|
High Point,BSo,25-8,-3,113,>>,119,125,113,129,101,113,121,109,112,125,128,117,133,113,119,137,--,124,109,57,--,99,133,84,108,113,123,118,102,168,--,115,112,115,121,87,113,116,111,109,117,124,101,120,123,102,123,102,143,121,61,129,111,110,132,132,109,131
|
||||||
|
Morehead St,OVC,26-8,+13,114,>>,125,121,112,133,87,110,120,97,117,129,144,106,128,137,127,130,--,127,114,106,--,87,129,87,114,106,131,119,109,131,--,157,121,117,120,94,103,118,114,115,108,130,106,105,131,98,172,105,130,126,46,131,126,106,114,136,102,106
|
||||||
|
Akron,MAC,21-10,-15,115,>>,123,112,120,123,90,91,115,153,120,121,122,113,130,116,128,111,--,117,118,73,--,105,125,82,118,122,124,131,108,181,--,116,109,121,126,90,107,109,118,114,148,123,109,110,122,110,113,111,116,119,108,112,130,114,144,139,113,147
|
||||||
|
Arizona St,P12,14-17,-5,116,>>,106,109,121,100,135,171,111,125,119,111,104,108,113,118,122,108,--,101,119,148,--,130,118,139,112,109,113,120,116,125,--,106,127,105,116,132,137,115,110,112,124,110,121,125,100,129,91,135,94,100,156,118,116,125,134,115,118,117
|
||||||
|
Georgia Tech,ACC,14-17,+7,117,>>,99,119,126,90,114,169,105,153,115,106,110,121,115,109,124,118,--,96,120,138,--,120,119,158,106,99,116,115,111,117,--,114,139,95,118,148,128,148,95,108,122,115,112,114,87,122,110,133,104,98,186,121,115,122,117,127,130,111
|
||||||
|
Oklahoma St,B12,12-19,-5,118,>>,134,105,107,116,187,115,126,82,126,108,94,120,99,110,105,100,--,121,116,139,--,138,100,135,143,128,101,111,153,113,--,108,108,130,101,155,115,110,126,121,107,103,152,135,134,142,98,118,100,128,176,102,86,120,128,99,123,105
|
||||||
|
W Carolina,SC,22-10,-4,119,>>,122,118,110,126,104,109,124,82,110,113,131,130,119,125,112,129,--,124,117,90,--,112,117,96,110,118,117,121,113,128,--,130,129,119,119,111,134,128,125,124,112,120,111,123,117,120,133,109,137,123,91,116,157,111,136,105,115,146
|
||||||
|
UNC Wilmington,CAA,21-10,-8,120,>>,129,117,117,132,93,125,123,125,113,112,135,124,120,112,117,119,--,127,115,88,--,107,127,97,117,115,125,125,120,136,--,129,118,116,124,115,106,122,107,122,123,129,116,100,113,109,131,107,125,120,90,125,133,118,125,133,121,129
|
||||||
|
Tarleton St,WAC,23-8,-5,121,>>,94,144,135,107,81,161,102,109,99,131,141,122,127,144,146,155,--,99,123,132,--,108,128,103,93,88,139,117,87,112,--,131,152,94,142,105,160,154,91,110,142,133,87,107,116,113,176,139,117,92,114,148,160,137,82,128,111,98
|
||||||
|
Toledo,MAC,20-11,+13,122,>>,118,131,133,122,102,111,116,109,124,127,129,131,134,129,141,123,--,117,126,98,--,119,130,137,119,126,137,126,110,126,--,124,116,122,129,104,117,114,122,119,131,136,110,121,111,117,115,126,120,118,86,133,119,128,112,117,129,143
|
||||||
|
S Illinois,MVC,19-13,-3,123,>>,124,128,122,121,145,124,117,168,129,117,115,98,116,145,115,131,--,121,121,112,--,128,122,117,123,144,121,122,119,182,--,125,140,127,125,118,122,138,137,120,127,125,120,108,127,126,111,119,129,131,98,114,113,116,153,131,119,132
|
||||||
|
Oakland,HL,21-11,+6,124,>>,120,141,137,125,92,126,118,140,121,128,134,133,132,127,130,146,--,117,129,120,--,116,137,123,113,107,136,130,107,120,--,158,149,113,133,109,130,153,112,123,144,145,107,109,106,114,127,127,136,113,75,130,134,129,110,140,137,124
|
||||||
|
California,P12,13-18,-6,125,>>,116,116,118,112,172,150,119,140,135,118,107,110,110,115,120,116,--,115,127,169,--,145,116,144,131,140,108,123,146,115,--,112,114,126,113,170,127,126,134,125,125,111,143,145,126,147,80,142,121,116,182,117,118,123,140,125,116,104
|
||||||
|
Notre Dame,ACC,12-19,,126,>>,117,126,124,114,178,151,127,125,142,123,108,125,112,117,131,124,--,115,122,150,--,155,115,163,138,149,110,114,148,87,--,120,143,132,110,187,135,134,132,126,115,112,150,155,132,146,112,140,114,129,191,126,114,126,135,116,125,95
|
||||||
|
UC San Diego,BWC,21-11,-5,127,>>,133,134,123,134,126,128,131,153,118,124,126,128,121,128,123,143,--,132,132,108,--,121,123,107,127,133,119,132,125,151,--,134,138,135,128,112,138,139,143,132,126,122,129,127,143,132,129,124,152,134,136,122,150,121,145,134,126,139
|
||||||
|
Drexel,CAA,20-12,-3,128,>>,148,124,125,147,119,127,142,125,132,126,137,142,139,130,125,121,--,150,124,136,--,117,131,120,135,136,130,133,136,146,--,145,130,134,122,125,110,127,128,130,121,137,135,132,139,119,132,112,141,138,89,124,131,124,133,137,141,122
|
||||||
|
Davidson,A10,15-16,-8,129,>>,136,120,116,127,130,97,130,140,145,122,114,119,124,121,113,125,--,131,125,94,--,135,114,113,144,162,120,116,138,165,--,123,132,145,117,153,131,130,141,127,128,119,142,181,128,148,119,120,126,142,258,111,146,119,186,122,120,130
|
||||||
|
UT Arlington,WAC,18-13,+9,130,>>,131,136,128,136,131,134,135,97,125,139,133,126,131,131,126,145,--,135,128,122,--,143,120,126,132,129,129,128,134,104,--,135,145,142,127,149,151,142,146,146,129,121,138,133,148,143,148,129,142,133,135,138,125,144,116,111,122,125
|
||||||
|
Seattle,WAC,18-13,-3,131,>>,143,129,131,142,161,106,139,97,133,132,125,134,123,120,138,126,--,139,134,101,--,142,121,125,147,156,127,138,144,121,--,126,131,157,131,134,120,137,170,141,133,127,144,147,154,149,125,131,146,154,138,123,141,127,156,119,128,126
|
||||||
|
Colgate,PL,24-9,+2,132,>>,150,138,149,157,113,131,151,109,131,161,163,167,151,157,165,128,--,161,136,126,--,126,150,124,126,116,148,135,132,154,--,161,124,125,143,86,114,113,117,128,146,150,124,116,174,116,141,128,138,132,107,149,136,131,99,146,160,133
|
||||||
|
Troy,SBC,20-12,-4,133,>>,149,132,130,162,141,122,149,109,134,133,136,127,142,138,116,133,--,154,130,86,--,136,134,114,148,145,128,127,141,153,--,140,120,152,136,135,126,141,158,145,120,132,145,144,158,130,136,122,148,148,106,139,143,138,149,143,136,120
|
||||||
|
Arkansas St,SBC,18-15,+17,134,>>,137,133,129,158,132,138,146,97,138,147,142,137,137,136,129,138,--,150,133,107,--,147,135,141,154,175,134,124,154,100,--,137,122,155,130,167,139,135,163,154,105,126,149,160,145,133,137,130,153,144,87,146,142,140,108,123,131,115
|
||||||
|
Sam Houston St,CUSA,20-11,+12,135,>>,121,148,143,130,107,178,129,125,123,153,166,147,149,153,132,149,--,124,144,173,--,131,146,151,125,117,158,129,121,93,--,144,154,124,145,128,163,133,121,136,141,139,125,126,135,136,168,159,122,114,148,164,187,153,84,124,139,113
|
||||||
|
Michigan,B10,8-23,+1,136,>>,142,111,127,120,165,149,137,183,150,115,103,118,125,123,114,104,--,132,131,113,--,161,124,164,157,174,122,146,183,171,--,107,123,143,132,211,129,150,140,134,132,116,194,167,124,160,99,132,112,135,238,107,121,132,206,154,127,148
|
||||||
|
Liberty,CUSA,18-13,-1,137,>>,146,123,132,148,155,123,148,125,136,138,130,151,138,139,144,115,--,150,137,96,--,124,142,128,151,147,142,157,151,178,--,117,111,151,149,126,108,123,155,135,138,138,153,143,157,141,159,125,128,145,146,134,148,130,172,120,133,140
|
||||||
|
Towson,CAA,20-13,+11,138,>>,144,149,145,144,127,121,138,125,140,143,147,149,136,140,142,147,--,141,138,105,--,132,138,157,145,142,143,134,139,127,--,152,146,136,135,143,124,145,131,133,165,148,134,134,137,125,124,138,140,143,128,151,140,147,127,141,153,128
|
||||||
|
UNC Greensboro,SC,21-11,-8,139,>>,128,143,147,131,115,135,132,140,137,136,160,154,143,154,140,141,--,127,141,127,--,122,155,121,120,120,151,143,122,152,--,143,133,131,159,116,144,149,130,129,153,153,119,128,125,128,162,144,133,130,144,160,170,133,160,162,135,144
|
||||||
|
Youngstown St,HL,22-10,-8,140,>>,157,137,136,156,137,129,154,125,144,146,139,140,140,122,135,136,--,157,142,119,--,134,140,105,140,125,132,140,143,147,--,147,128,144,137,110,133,144,138,148,152,140,136,131,140,138,156,134,162,152,153,132,151,134,137,153,140,177
|
||||||
|
E Washington,BSC,21-11,-8,141,>>,132,145,148,135,112,184,136,140,128,144,167,160,148,152,163,142,--,136,145,187,--,125,163,127,124,130,152,148,128,159,--,155,150,128,157,117,143,147,129,140,140,152,128,124,146,123,154,143,134,125,102,147,161,141,120,164,143,163
|
||||||
|
Chattanooga,SC,21-12,+1,142,>>,138,151,139,143,134,140,144,125,139,140,159,141,154,158,151,156,--,139,143,166,--,139,148,136,130,143,141,136,131,143,--,141,135,148,151,138,147,160,151,142,139,146,130,137,136,135,163,146,147,146,120,152,169,139,154,149,138,137
|
||||||
|
Montana,BSC,21-10,+5,143,>>,130,157,155,140,111,137,134,140,127,142,161,146,146,179,156,158,--,136,150,129,--,141,153,140,129,127,154,149,123,138,--,170,158,140,156,131,196,152,145,151,136,157,126,129,142,140,169,154,154,136,95,153,156,136,130,152,147,142
|
||||||
|
Tulane,AAC,14-16,+2,144,>>,153,127,134,138,190,119,140,140,162,151,116,116,117,133,148,122,--,141,135,143,--,159,126,152,158,183,126,145,149,149,--,127,134,156,134,161,140,125,165,143,145,128,166,205,151,162,135,136,139,163,171,127,127,135,183,144,142,179
|
||||||
|
Missouri St,MVC,17-16,+8,145,>>,135,156,150,137,152,154,133,168,149,141,140,132,144,151,150,154,--,136,146,162,--,150,154,142,142,172,149,144,137,174,--,150,157,138,146,147,158,157,156,147,149,149,141,140,130,154,138,150,132,139,125,142,124,145,178,148,134,149
|
||||||
|
West Virginia,B12,9-22,-5,146,>>,145,135,142,124,208,165,141,153,160,130,117,136,129,142,133,127,--,132,154,144,--,178,132,182,167,166,133,137,188,137,--,121,136,146,123,209,150,151,139,144,130,131,186,183,129,179,106,170,118,147,242,128,123,158,173,135,150,127
|
||||||
|
Weber St,BSC,20-11,-9,147,>>,141,139,144,149,123,120,143,153,130,137,150,159,157,124,158,135,--,147,140,152,--,127,151,131,141,139,150,162,150,176,--,151,153,147,158,133,162,132,161,150,161,155,139,118,153,134,152,141,155,151,134,140,145,148,147,160,154,198
|
||||||
|
Oregon St,P12,13-18,+2,148,>>,126,147,156,115,199,189,128,168,143,134,120,135,141,135,154,140,--,121,151,182,--,168,141,181,137,141,138,150,145,133,--,128,177,120,139,194,172,178,133,131,154,135,146,152,120,167,109,171,124,122,222,144,137,161,182,147,144,136
|
||||||
|
Wyoming,MWC,15-16,+12,149,>>,113,162,154,119,128,193,125,109,174,135,138,148,163,163,155,174,--,117,164,192,--,154,143,203,133,135,146,139,127,135,--,136,178,133,141,179,259,163,142,138,158,141,133,139,121,161,191,179,127,127,190,141,135,151,142,118,156,135
|
||||||
|
MA Lowell,AEC,21-9,-10,150,>>,160,152,157,169,124,144,162,109,146,149,174,166,169,150,167,144,--,169,139,161,--,123,165,118,139,132,161,152,135,175,--,164,147,139,153,124,119,140,127,137,187,162,132,142,141,121,184,121,165,155,217,157,144,142,139,158,132,162
|
||||||
|
Ohio,MAC,19-12,+5,151,>>,163,140,151,171,167,148,159,109,156,158,153,150,160,156,153,134,--,164,149,123,--,144,149,147,160,164,160,147,158,116,--,148,137,168,138,137,123,129,174,152,143,151,151,173,170,144,145,148,150,166,163,150,129,149,119,130,152,138
|
||||||
|
S Dakota St,SL,20-12,+3,152,>>,167,146,141,182,166,146,169,109,148,159,149,156,135,141,143,151,--,176,148,163,--,158,136,148,162,165,144,142,160,118,--,163,142,154,144,140,152,120,169,172,135,144,167,146,185,158,146,151,149,162,137,136,181,146,124,129,151,141
|
||||||
|
WKU,CUSA,19-11,-8,153,>>,166,153,153,161,157,136,150,140,141,150,154,138,153,146,147,150,--,154,155,104,--,153,152,134,149,150,153,151,152,164,--,146,151,149,155,141,170,131,147,157,155,143,155,166,176,164,165,155,131,140,150,159,178,155,181,138,146,159
|
||||||
|
UNC Asheville,BSo,22-12,-12,154,>>,139,165,165,153,120,156,147,140,159,154,182,153,171,161,169,166,--,141,152,164,--,137,170,138,134,138,165,154,130,162,--,165,156,137,165,142,149,159,135,139,168,168,131,141,138,127,173,152,160,141,119,168,139,163,121,201,155,166
|
||||||
|
Louisiana,SBC,19-14,-11,155,>>,173,155,152,173,136,141,166,168,154,162,164,170,155,155,139,153,--,171,160,65,--,160,161,129,152,179,155,153,161,180,--,156,144,160,164,139,156,143,164,158,137,154,161,157,165,156,139,149,156,156,105,158,164,150,176,174,145,201
|
||||||
|
Furman,SC,17-16,+2,156,>>,162,142,140,160,142,139,183,125,152,145,146,188,147,143,152,148,--,184,171,153,--,169,147,150,155,168,140,141,163,144,--,139,126,174,152,152,167,136,209,185,150,142,158,187,171,175,147,168,158,183,188,145,203,143,155,142,148,157
|
||||||
|
Wichita St,AAC,13-18,-5,157,>>,179,150,159,154,194,153,160,140,173,156,132,152,150,147,137,139,--,158,158,134,--,172,145,175,190,207,147,158,184,156,--,138,148,181,148,183,146,155,189,159,134,147,192,215,162,185,121,164,135,167,195,143,132,157,189,126,164,172
|
||||||
|
Quinnipiac,MAAC,23-8,+8,158,>>,161,177,175,175,125,164,156,168,151,181,204,173,193,197,159,180,--,164,168,103,--,156,194,154,136,119,182,155,129,163,--,199,174,129,171,127,159,180,123,149,169,185,123,136,156,139,206,167,161,137,109,179,154,168,126,189,179,152
|
||||||
|
Bryant,AEC,20-12,+6,159,>>,158,171,172,163,116,179,164,153,165,170,191,183,180,165,170,173,--,161,161,155,--,152,179,159,146,146,177,164,142,189,--,180,172,141,172,156,161,170,124,153,192,177,140,119,144,137,209,160,175,150,167,175,149,164,148,184,162,173
|
||||||
|
UC Davis,BWC,19-12,+18,160,>>,147,169,171,150,154,155,152,183,147,155,172,162,158,176,162,169,--,147,172,167,--,164,167,183,153,160,166,163,147,148,--,176,169,159,173,150,186,167,182,167,164,166,148,164,167,170,196,172,167,165,142,173,182,169,129,166,172,151
|
||||||
|
Hawaii,BWC,19-13,+3,161,>>,154,168,168,146,191,160,145,168,153,164,152,139,161,182,173,172,--,141,173,156,--,180,160,169,159,170,162,156,156,150,--,160,167,170,170,145,198,175,193,162,167,161,154,171,177,181,170,178,166,171,115,165,155,172,131,161,170,176
|
||||||
|
Wright St,HL,18-14,-5,162,>>,184,158,160,185,176,145,184,153,167,157,157,145,162,160,145,157,--,184,162,114,--,173,162,149,182,196,157,160,189,177,--,149,141,185,160,164,155,156,197,173,160,159,177,170,150,165,155,163,179,188,165,156,173,154,170,157,167,165
|
||||||
|
Lipscomb,ASUN,20-12,-9,163,>>,164,164,166,174,159,157,165,153,158,168,180,158,159,162,219,162,--,164,157,231,--,151,173,143,156,155,170,175,157,172,--,186,164,163,181,146,153,158,154,156,176,167,157,150,186,150,174,157,168,157,133,185,186,166,164,179,149,182
|
||||||
|
PFW,HL,21-12,-5,164,>>,186,160,161,194,200,147,182,140,163,171,162,175,152,148,176,164,--,192,153,202,--,149,158,146,178,171,159,176,180,169,--,182,166,188,154,136,145,171,185,161,177,169,178,156,190,155,150,147,190,186,132,155,128,159,194,151,165,193
|
||||||
|
Fairfield,MAAC,20-11,+2,165,>>,194,175,167,205,143,130,194,153,164,180,192,186,156,186,180,181,--,204,165,157,--,165,171,153,161,161,168,159,166,140,--,213,173,165,161,151,157,161,160,175,157,173,160,159,182,152,160,153,186,175,82,177,168,162,143,172,182,168
|
||||||
|
Utah Valley,WAC,16-15,+10,166,>>,156,167,164,155,151,174,158,109,161,173,171,165,167,174,174,175,--,158,176,198,--,175,157,194,166,190,167,161,167,132,--,159,168,172,163,163,222,172,183,177,170,160,172,193,160,178,194,182,151,158,175,163,172,165,123,145,161,134
|
||||||
|
SF Austin,WAC,17-14,+5,167,>>,170,159,163,167,181,158,171,168,157,148,156,161,176,164,175,152,--,171,167,176,--,163,156,168,176,182,163,173,171,187,--,133,155,184,177,165,168,168,205,170,175,156,171,153,179,171,179,166,159,168,157,166,158,170,187,156,157,154
|
||||||
|
Longwood,BSo,21-13,+24,168,>>,191,161,158,207,164,142,191,125,170,163,177,211,165,149,172,167,--,204,147,160,--,140,159,174,188,181,164,171,176,145,--,173,165,176,150,171,142,146,173,163,162,164,180,165,194,151,198,137,192,203,236,161,138,160,166,163,166,158
|
||||||
|
Missouri,SEC,8-23,-9,169,>>,197,130,146,166,236,166,177,153,181,152,121,143,118,134,136,113,--,171,159,197,--,193,144,209,220,224,135,167,219,183,--,132,119,215,140,229,136,119,206,181,147,134,234,218,189,198,116,162,144,206,259,135,122,156,226,155,175,169
|
||||||
|
St Thomas MN,SL,20-12,-1,170,>>,213,154,138,215,206,143,193,140,155,160,165,174,145,132,134,161,--,210,156,183,--,157,139,155,197,188,145,172,213,160,--,190,163,195,147,158,141,111,210,192,116,158,207,169,247,166,153,145,203,198,220,137,199,152,205,150,168,174
|
||||||
|
Stony Brook,CAA,19-14,+10,171,>>,168,184,176,177,146,177,173,168,171,189,196,181,175,172,166,189,--,176,169,135,--,171,184,167,169,159,186,166,155,139,--,200,189,153,168,177,169,184,144,165,173,186,156,158,147,157,192,169,180,161,160,189,153,179,161,180,163,150
|
||||||
|
Delaware,CAA,19-14,-4,172,>>,187,170,170,188,174,162,179,218,169,169,179,164,168,166,157,171,--,188,163,175,--,162,174,160,174,197,174,179,175,223,--,185,175,164,175,154,154,177,167,171,166,178,170,176,184,159,157,161,172,174,124,162,166,167,193,182,181,184
|
||||||
|
ETSU,SC,19-15,+23,173,>>,165,182,173,170,150,172,174,153,176,166,195,198,174,191,183,191,--,176,177,196,--,166,172,192,170,187,180,169,168,142,--,183,187,167,176,192,181,186,187,180,189,183,163,163,163,169,215,175,164,169,166,193,204,177,159,167,169,155
|
||||||
|
TAM C. Christi,SLC,21-10,,174,>>,196,179,169,220,185,182,190,168,180,191,203,172,170,167,164,192,--,207,166,177,--,148,164,145,185,131,181,177,187,188,--,230,205,189,166,160,166,166,157,184,163,176,189,138,230,153,203,158,206,200,173,192,185,173,152,175,158,156
|
||||||
|
Tulsa,AAC,16-14,+9,175,>>,159,187,178,152,218,200,155,236,179,184,168,157,179,183,201,187,--,154,179,224,--,181,183,204,181,167,184,178,162,155,--,166,201,169,191,188,190,199,175,164,205,184,165,194,173,188,178,187,163,164,170,178,177,187,179,203,185,145
|
||||||
|
Murray St,MVC,12-20,-13,176,>>,206,163,162,197,212,152,195,236,211,167,145,144,164,159,149,170,--,199,170,124,--,205,166,162,214,264,156,170,220,214,--,153,159,219,162,230,165,165,234,194,156,163,221,226,180,199,134,165,197,216,196,154,152,171,222,170,159,190
|
||||||
|
Vanderbilt,SEC,9-22,+21,177,>>,155,174,187,139,226,232,157,183,185,179,148,169,166,180,195,165,--,141,183,223,--,228,182,273,208,195,169,165,196,123,--,142,160,190,167,239,191,174,176,174,174,165,210,201,172,211,142,220,145,178,272,181,147,203,141,168,221,167
|
||||||
|
Cleveland St,HL,20-13,+17,178,>>,178,185,191,184,160,185,181,218,175,172,199,190,198,170,205,182,--,183,185,180,--,174,200,191,165,148,201,186,173,201,--,194,191,166,198,168,176,192,166,176,206,198,159,168,149,168,158,203,188,176,177,191,162,191,171,193,200,189
|
||||||
|
Monmouth NJ,CAA,18-15,,179,>>,175,203,194,179,149,203,175,183,172,187,198,189,183,171,189,212,--,176,178,214,--,176,199,177,163,176,200,187,165,197,--,203,216,158,195,176,193,205,152,169,179,201,164,175,169,163,175,174,183,159,141,197,189,190,196,200,177,202
|
||||||
|
Stetson,ASUN,22-12,+5,180,>>,140,198,214,165,138,223,163,183,168,174,218,196,207,199,230,190,--,150,181,233,--,146,219,184,150,152,220,198,140,190,--,218,219,150,213,169,174,197,149,155,210,208,147,149,191,145,221,180,178,149,143,218,200,209,138,247,187,210
|
||||||
|
Long Beach St,BWC,18-14,-19,181,>>,181,181,177,178,183,196,172,218,166,165,186,176,185,181,220,179,--,169,189,270,--,185,191,161,168,191,179,189,179,255,--,177,179,171,199,157,180,179,188,191,180,179,183,174,192,195,167,188,174,170,147,180,224,180,211,177,176,234
|
||||||
|
East Carolina,AAC,14-17,-11,182,>>,183,178,183,176,238,168,176,200,203,188,158,168,172,168,161,176,--,180,182,137,--,204,175,202,201,227,172,181,193,186,--,162,162,199,178,197,175,173,203,179,171,171,200,220,201,215,144,199,169,185,225,174,175,186,200,191,186,205
|
||||||
|
Illinois St,MVC,15-17,-13,183,>>,172,189,179,172,197,199,167,183,192,178,173,155,178,169,196,201,--,164,180,227,--,201,178,172,186,216,178,182,182,198,--,178,183,187,180,206,206,189,208,182,190,181,185,207,168,194,151,185,193,189,183,183,176,176,215,169,178,187
|
||||||
|
N Kentucky,HL,18-14,+4,184,>>,198,188,181,198,169,175,200,168,182,183,202,163,189,184,191,188,--,196,186,201,--,189,193,166,189,169,189,183,206,141,--,202,186,182,193,173,199,183,178,198,181,187,188,172,175,187,189,177,185,190,184,195,194,174,151,186,173,195
|
||||||
|
St Louis,A10,12-19,+12,185,>>,152,191,196,141,158,211,153,200,204,193,178,179,200,188,179,184,--,147,187,184,--,191,177,239,187,221,191,168,169,191,--,179,190,177,185,215,212,215,180,166,185,188,176,210,133,197,185,221,157,172,240,188,180,196,174,176,188,186
|
||||||
|
Ark Little Rock,OVC,21-12,-3,186,>>,205,192,185,216,229,163,204,125,189,200,197,184,204,193,171,198,--,207,174,174,--,188,185,185,206,209,188,180,191,161,--,212,180,210,169,166,173,191,220,188,151,192,190,184,232,172,182,176,223,211,84,190,197,182,169,165,206,153
|
||||||
|
La Salle,A10,15-16,-7,187,>>,174,195,198,159,209,225,178,168,202,194,184,214,196,201,177,193,--,171,191,195,--,184,190,224,184,198,195,184,186,170,--,171,199,173,179,195,178,212,171,168,172,194,181,217,164,192,181,211,177,180,261,186,190,195,180,173,190,171
|
||||||
|
UTEP,CUSA,16-15,+1,188,>>,195,180,182,192,230,170,198,153,183,192,181,178,191,178,168,177,--,192,190,165,--,187,176,197,209,213,187,191,205,167,--,167,182,206,188,204,207,162,216,189,188,175,206,212,205,202,186,191,173,191,231,196,183,193,188,159,192,160
|
||||||
|
Texas St,SBC,17-18,+23,189,>>,189,183,180,201,156,197,192,168,178,201,206,182,190,187,198,185,--,196,184,193,--,186,189,196,199,223,192,174,200,134,--,205,188,194,189,217,183,182,201,203,182,182,202,223,198,180,197,183,171,179,179,208,207,207,163,187,171,175
|
||||||
|
Winthrop,BSo,17-15,-17,190,>>,224,166,174,221,219,180,216,183,190,177,183,194,182,175,160,160,--,223,175,158,--,167,186,165,213,203,173,194,216,240,--,204,170,205,182,199,148,169,191,187,159,180,216,186,204,173,187,156,215,221,223,171,191,178,260,208,174,217
|
||||||
|
G Washington,A10,15-16,+17,191,>>,171,202,203,151,207,173,168,218,191,186,169,187,195,177,202,204,--,158,200,207,--,197,188,240,177,184,193,193,172,207,--,181,212,180,192,186,220,224,179,160,193,204,169,216,155,208,183,217,195,184,185,169,188,188,218,188,194,197
|
||||||
|
Wofford,SC,17-15,-15,192,>>,176,200,188,181,148,195,189,183,186,176,208,226,192,189,225,214,--,184,196,245,--,177,204,176,164,177,198,185,181,222,--,192,206,179,205,205,223,219,186,195,209,199,173,182,152,189,188,197,189,177,230,207,260,181,192,202,180,194
|
||||||
|
Kent,MAC,15-16,-18,193,>>,219,173,186,210,211,159,207,200,207,185,175,191,188,207,184,163,--,207,195,159,--,194,187,193,221,234,185,209,218,234,--,174,161,227,190,178,164,164,226,202,178,189,218,219,199,205,190,189,176,207,187,170,193,175,214,185,212,233
|
||||||
|
N Colorado,BSC,20-13,-7,194,>>,182,204,195,193,171,202,187,200,177,182,211,205,208,209,200,210,--,184,202,218,--,196,195,189,173,199,199,204,177,196,--,196,198,198,206,172,255,193,225,204,184,206,182,189,203,191,207,205,204,182,181,204,225,185,198,199,203,188
|
||||||
|
Gardner Webb,BSo,17-16,-13,195,>>,188,207,204,200,144,192,201,200,200,196,214,217,199,196,186,205,--,199,201,188,--,183,217,190,180,212,211,201,195,195,--,215,192,186,208,226,200,206,177,197,191,211,196,204,178,177,199,195,205,196,234,209,219,189,175,206,197,212
|
||||||
|
Fordham,A10,12-19,-10,196,>>,204,193,201,186,221,167,202,200,233,202,170,207,184,192,187,183,--,192,193,203,--,212,180,241,212,269,183,188,212,210,--,172,181,216,186,219,187,195,230,186,203,191,209,250,183,220,164,215,202,213,250,187,165,184,207,196,228,178
|
||||||
|
Georgetown,BE,9-22,+4,197,>>,208,176,190,189,268,233,205,218,212,226,143,177,173,173,178,168,--,188,194,234,--,240,168,259,228,215,171,202,229,204,--,169,200,217,174,263,195,185,194,206,213,170,249,221,219,239,161,216,170,208,268,172,163,198,269,190,207,180
|
||||||
|
Evansville,MVC,16-17,+8,198,>>,169,223,207,164,179,243,170,271,201,203,205,171,202,259,223,244,--,161,188,221,--,182,221,198,172,186,222,219,170,251,--,217,245,162,217,220,228,251,181,178,234,226,174,211,161,193,218,201,201,173,164,210,171,202,244,221,183,214
|
||||||
|
Merrimack,NEC,21-11,+4,199,>>,222,216,200,236,162,186,226,183,188,217,223,218,218,205,204,232,--,230,198,171,--,198,211,173,200,154,208,205,197,238,--,228,223,191,207,159,205,200,162,212,231,228,191,154,239,184,223,181,243,214,161,205,213,200,168,218,211,218
|
||||||
|
Loy Marymount,WCC,12-19,-9,200,>>,228,172,189,214,260,176,217,200,213,175,155,195,177,190,181,159,--,215,199,181,--,218,169,231,242,247,175,208,232,219,--,154,176,250,184,227,184,176,269,215,218,172,240,227,227,241,149,207,196,237,214,167,174,199,251,171,237,227
|
||||||
|
TN Martin,OVC,21-11,-2,201,>>,190,233,218,206,153,207,188,183,197,234,236,212,221,246,232,241,--,199,203,210,--,179,222,171,175,151,216,211,178,206,--,246,221,193,222,181,246,220,159,201,216,218,179,162,193,176,261,208,240,193,140,235,259,208,184,225,184,170
|
||||||
|
Rhode Island,A10,12-19,+8,202,>>,180,212,208,168,175,187,186,236,226,210,187,197,210,202,194,213,--,175,205,168,--,207,208,221,211,238,212,200,194,264,--,187,227,202,209,247,221,234,204,183,247,209,195,225,159,217,171,223,198,202,274,199,192,211,230,230,195,207
|
||||||
|
UC Santa Barbara,BWC,16-14,-1,203,>>,207,197,202,196,217,205,206,257,187,197,190,208,205,223,238,194,--,198,220,229,--,211,209,199,195,204,196,206,207,220,--,184,193,208,221,174,227,190,227,211,223,195,205,206,211,226,229,226,194,210,178,203,238,205,204,217,210,247
|
||||||
|
Abilene Chr,WAC,15-16,+5,204,>>,199,213,217,190,224,244,199,183,195,214,210,210,197,204,217,209,--,192,219,228,--,214,206,213,194,220,218,203,209,158,--,206,214,207,220,203,230,235,219,210,202,200,208,237,215,219,210,239,184,187,226,223,222,228,165,183,191,164
|
||||||
|
E Kentucky,ASUN,17-14,-12,205,>>,215,196,210,227,215,228,227,168,217,216,231,206,215,230,190,186,--,223,206,151,--,190,224,180,219,193,223,214,214,233,--,208,171,226,214,198,177,188,211,209,199,205,217,196,221,183,248,186,216,223,209,233,198,216,203,235,193,219
|
||||||
|
Bowling Green,MAC,19-12,+20,206,>>,192,225,236,195,192,201,185,236,193,223,222,193,238,218,229,218,--,188,221,186,--,199,236,215,191,185,241,228,174,199,--,221,218,201,238,180,213,241,192,193,250,234,175,195,200,196,232,231,200,181,149,227,218,229,213,222,201,240
|
||||||
|
Louisville,ACC,8-23,-3,207,>>,203,186,197,180,281,266,203,218,224,190,151,185,186,185,209,178,--,180,207,292,--,249,181,265,237,244,176,192,231,218,--,168,210,228,183,280,219,198,224,207,196,174,248,252,207,244,143,232,181,217,271,176,159,214,277,209,235,192
|
||||||
|
WI Milwaukee,HL,19-14,+17,208,>>,202,230,228,202,182,230,210,200,198,211,230,243,225,210,246,227,--,204,224,263,--,215,223,242,193,189,224,210,190,166,--,220,204,192,216,190,241,213,190,213,219,222,193,180,166,209,200,241,224,197,243,230,205,218,150,205,238,204
|
||||||
|
Austin Peay,ASUN,19-15,+7,209,>>,193,215,223,208,177,191,209,200,210,207,233,201,217,226,241,215,--,203,210,211,--,192,227,212,196,208,229,217,201,202,--,231,235,203,231,224,202,216,195,208,252,219,201,191,196,190,233,213,212,194,180,252,229,219,185,249,202,224
|
||||||
|
Harvard,Ivy,14-13,-16,210,>>,201,227,227,191,173,217,197,236,209,219,216,228,237,229,215,222,--,188,208,190,--,208,237,195,183,173,237,227,185,248,--,197,213,178,240,189,211,217,148,190,228,237,184,197,181,200,251,222,199,192,276,220,232,204,221,243,199,241
|
||||||
|
IL Chicago,MVC,12-21,+2,211,>>,223,199,192,209,244,194,215,257,232,195,176,180,181,194,182,207,--,215,197,170,--,213,196,217,229,287,194,220,233,226,--,201,215,231,196,269,197,227,252,214,197,207,231,243,210,228,166,194,230,235,264,182,179,183,278,210,189,185
|
||||||
|
St Peter's,MAAC,16-13,-22,212,>>,247,209,199,244,189,181,236,218,199,205,219,241,201,227,218,219,--,242,214,215,--,226,212,170,215,202,204,199,224,179,--,236,220,212,202,184,208,201,202,220,207,216,214,198,222,206,227,196,225,228,189,206,234,201,212,204,230,213
|
||||||
|
UC Riverside,BWC,15-17,+24,213,>>,210,211,205,204,213,216,222,168,196,209,209,199,209,211,216,220,--,210,230,199,--,232,202,220,222,231,202,197,223,173,--,216,217,221,204,223,247,208,244,225,194,196,223,232,212,235,224,236,214,218,197,222,214,222,177,178,204,206
|
||||||
|
Cal Baptist,WAC,15-16,-14,214,>>,230,194,193,213,256,204,212,168,205,198,188,192,187,203,222,200,--,210,231,208,--,238,192,186,227,237,190,218,225,247,--,189,185,237,215,196,236,214,259,222,226,190,225,241,231,250,201,230,209,220,206,198,231,197,246,197,196,211
|
||||||
|
Brown,Ivy,12-17,+18,215,>>,232,206,209,234,203,218,237,153,234,238,215,238,194,195,192,203,--,236,204,212,--,229,201,236,235,254,203,190,240,129,--,224,196,230,187,256,188,181,212,223,225,202,232,247,213,204,239,198,229,238,310,219,184,192,162,198,209,161
|
||||||
|
Mercer,SC,16-17,+4,216,>>,200,224,212,203,195,190,214,183,214,215,217,219,206,214,213,239,--,215,234,185,--,244,213,208,198,210,209,195,204,184,--,222,230,214,225,214,258,228,240,235,214,210,199,230,218,243,234,243,227,227,199,242,284,213,195,195,208,199
|
||||||
|
Norfolk St,MEAC,21-10,+14,217,>>,214,234,237,217,193,262,218,200,184,228,251,231,261,213,256,226,--,210,211,277,--,170,256,216,192,137,245,223,192,213,--,227,237,175,249,162,192,218,150,200,259,245,187,161,216,174,257,200,221,195,202,255,230,221,167,252,223,239
|
||||||
|
Temple,AAC,12-19,-7,218,>>,226,208,220,212,243,210,220,218,230,221,189,216,203,198,210,197,--,215,215,254,--,237,205,250,240,271,205,207,230,185,--,198,208,225,200,240,210,210,231,218,195,203,239,256,238,246,177,234,187,219,267,200,211,224,217,207,232,203
|
||||||
|
Jacksonville St,CUSA,14-17,-5,219,>>,257,190,184,239,277,198,239,200,222,199,194,209,219,200,206,196,--,248,213,249,--,210,197,210,251,272,197,226,270,230,--,188,197,253,203,225,185,196,262,238,200,193,263,264,274,240,216,184,210,236,244,194,239,206,255,194,198,183
|
||||||
|
Marist,MAAC,17-12,-3,220,>>,251,218,215,251,216,208,240,200,206,239,238,260,212,233,214,223,--,249,212,200,--,225,228,188,225,194,225,216,222,216,--,249,225,209,219,175,194,222,207,221,241,238,213,199,250,203,238,193,232,231,152,213,210,194,209,239,244,215
|
||||||
|
Rider,MAAC,15-16,+14,221,>>,246,222,222,250,201,226,248,183,225,241,239,265,220,251,211,225,--,254,232,236,--,235,216,228,232,225,215,196,239,157,--,254,228,223,194,234,215,207,213,236,201,220,229,228,226,207,241,219,233,233,245,215,208,217,157,211,250,196
|
||||||
|
Iona,MAAC,15-16,-15,222,>>,265,210,219,260,220,183,256,236,239,236,221,236,240,220,226,202,--,261,226,154,--,251,240,178,241,246,227,215,242,258,--,226,184,240,237,182,179,209,237,231,220,232,227,246,228,224,193,206,219,246,169,216,196,210,228,260,239,223
|
||||||
|
Rice,AAC,11-20,-4,223,>>,231,219,225,222,232,209,221,236,247,206,193,202,211,228,185,217,--,221,227,172,--,246,210,256,245,263,213,221,234,239,--,191,209,238,212,271,216,211,248,226,198,212,242,254,209,249,180,240,228,239,265,212,217,238,241,219,260,237
|
||||||
|
Fresno St,MWC,11-20,-19,224,>>,185,221,245,187,222,265,196,288,276,224,201,200,214,253,245,206,--,180,241,240,--,255,226,226,217,229,217,212,211,208,--,195,207,232,243,238,252,246,238,219,256,213,224,222,202,262,205,276,182,204,252,240,242,240,224,214,214,228
|
||||||
|
CS Northridge,BWC,18-14,+2,225,>>,209,247,234,199,227,260,208,236,194,225,220,215,213,238,249,250,--,199,236,252,--,219,231,211,203,211,230,234,208,250,--,235,253,204,245,191,250,254,218,216,245,233,204,200,217,238,214,242,231,199,158,229,243,225,238,240,217,248
|
||||||
|
Lamar,SLC,18-13,+14,226,>>,241,229,206,262,247,206,234,236,238,235,225,213,224,212,234,247,--,246,192,262,--,206,203,200,238,219,219,233,228,209,--,253,249,245,211,210,224,230,229,230,212,229,233,192,257,201,237,173,266,255,154,228,233,215,236,236,216,216
|
||||||
|
Georgia St,SBC,14-17,-12,227,>>,242,205,216,240,233,227,238,200,229,213,213,237,226,216,231,195,--,239,218,247,--,224,218,218,243,245,214,224,250,275,--,211,195,239,223,258,189,202,233,233,208,214,244,245,252,223,212,212,222,234,229,211,237,220,273,241,225,208
|
||||||
|
WI Green Bay,HL,18-14,-10,228,>>,211,249,232,211,188,220,213,257,216,240,237,222,223,221,257,264,--,210,233,253,--,217,248,179,202,201,234,231,203,256,--,255,256,196,250,212,257,262,199,217,246,247,198,188,187,222,225,238,251,205,200,238,246,227,219,263,218,229
|
||||||
|
Penn,Ivy,11-18,-8,229,>>,258,201,213,249,250,188,255,200,240,218,200,244,216,208,197,199,--,249,209,178,--,236,214,235,259,232,206,230,253,227,--,210,202,252,210,251,171,194,235,240,222,221,259,251,234,225,213,192,238,272,336,202,220,212,259,227,219,257
|
||||||
|
Missouri KC,SL,16-16,,230,>>,260,220,211,256,249,224,257,200,223,220,226,240,227,240,188,230,--,263,217,219,--,222,198,230,244,235,207,222,261,193,--,241,240,247,197,265,229,203,255,255,183,215,255,234,264,234,219,209,249,244,208,201,275,230,229,181,234,181
|
||||||
|
Pepperdine,WCC,13-20,+14,231,>>,235,214,224,225,267,221,229,218,236,208,185,203,222,270,193,208,--,226,248,191,--,257,207,257,261,262,210,225,247,262,--,193,222,262,201,273,248,187,271,241,186,197,254,229,242,266,195,262,220,248,203,184,251,223,274,213,240,242
|
||||||
|
San Diego,WCC,18-15,-4,232,>>,151,270,261,145,186,268,161,316,208,250,229,204,266,281,253,279,--,141,268,213,--,247,264,247,171,157,268,232,159,263,--,207,284,161,275,202,303,260,172,196,264,256,162,185,188,248,240,304,191,153,159,239,294,257,190,270,248,270
|
||||||
|
South Alabama,SBC,16-16,-9,233,>>,225,231,221,231,240,250,228,183,215,245,240,220,233,242,224,242,--,232,255,217,--,274,230,206,226,217,235,213,221,228,--,214,211,229,252,193,277,223,239,258,211,217,222,231,262,267,222,271,217,229,172,258,272,248,199,216,215,238
|
||||||
|
Southern Miss,SBC,16-16,-12,234,>>,217,237,243,218,205,251,225,257,220,231,241,227,244,232,259,224,--,215,243,256,--,245,246,219,216,218,238,229,217,280,--,223,203,213,262,222,251,232,223,227,242,227,212,224,208,231,202,254,207,201,198,259,257,241,227,264,227,262
|
||||||
|
Radford,BSo,16-17,-1,235,>>,243,217,226,243,234,213,242,236,235,230,235,235,243,206,207,216,--,242,216,179,--,203,242,207,234,249,236,244,235,278,--,225,229,222,234,218,209,236,221,228,236,235,236,235,244,221,228,202,235,240,292,224,212,234,261,246,213,266
|
||||||
|
New Hampshire,AEC,16-14,+7,236,>>,216,252,254,224,168,214,219,257,228,249,250,248,229,215,276,249,--,220,229,261,--,195,260,234,207,205,254,237,198,285,--,262,262,200,256,208,203,280,184,199,279,270,197,203,206,182,250,229,239,215,249,243,167,231,225,274,256,259
|
||||||
|
North Dakota,SL,18-14,-5,237,>>,249,238,231,241,254,258,235,153,218,233,245,224,246,239,221,237,--,236,228,258,--,231,215,223,230,222,228,239,243,194,--,245,233,234,227,200,233,221,250,248,217,230,237,209,267,242,256,228,241,232,216,249,264,239,231,192,246,209
|
||||||
|
C Michigan,MAC,18-13,+3,238,>>,177,276,270,183,170,307,180,271,219,263,268,229,273,268,267,285,--,164,251,267,--,221,273,246,179,158,276,240,164,235,--,248,271,183,270,207,281,285,153,205,267,265,168,179,195,212,269,278,208,160,168,274,285,260,191,267,220,225
|
||||||
|
CS Fullerton,BWC,15-18,-10,239,>>,233,228,230,223,223,245,231,236,221,227,224,249,230,258,233,221,--,226,249,216,--,241,229,243,231,242,226,235,238,232,--,229,252,236,233,231,238,225,251,243,224,225,238,238,220,253,243,249,226,230,227,226,216,232,239,224,243,273
|
||||||
|
Nicholls St,SLC,18-13,+16,240,>>,220,259,248,226,184,241,211,218,242,212,267,223,271,237,252,276,--,228,237,241,--,223,238,249,210,153,262,243,210,249,--,263,287,197,266,216,272,244,168,242,243,262,211,177,197,218,259,245,242,209,193,267,286,250,201,244,255,256
|
||||||
|
Maine,AEC,15-17,-2,241,>>,253,236,229,253,204,222,252,236,243,237,249,251,239,225,248,235,--,249,222,230,--,216,245,201,233,257,239,246,244,229,--,250,241,233,236,244,201,233,222,234,253,248,230,260,225,216,231,204,267,247,237,237,202,233,245,259,222,232
|
||||||
|
Marshall,SBC,13-20,+11,242,>>,240,226,240,242,245,212,243,236,249,259,232,234,251,236,242,211,--,239,252,209,--,258,243,248,253,300,246,236,252,271,--,219,194,249,248,249,226,231,256,247,235,236,250,267,254,258,204,251,218,241,213,244,235,247,262,251,224,271
|
||||||
|
Miami OH,MAC,15-16,-20,243,>>,236,246,257,229,228,253,233,236,252,247,248,254,241,273,244,234,--,234,245,238,--,234,257,222,236,243,257,251,237,212,--,244,242,242,247,235,240,247,236,229,269,255,226,257,229,236,260,246,234,226,253,250,256,237,233,253,259,222
|
||||||
|
W Illinois,OVC,21-12,-8,244,>>,218,273,269,233,198,248,224,271,246,262,284,221,281,289,262,281,--,221,242,204,--,202,284,187,205,178,275,247,202,287,--,278,273,211,277,201,268,283,198,224,262,277,203,178,214,213,293,244,258,225,211,277,302,263,210,289,236,255
|
||||||
|
Southern Univ,SWAC,19-13,-3,245,>>,212,264,258,255,202,291,223,288,250,204,280,225,272,231,237,270,--,230,225,239,--,209,277,205,204,163,273,260,199,295,--,265,286,218,272,232,244,293,196,237,277,281,215,151,224,186,277,210,264,242,174,257,298,249,267,285,273,287
|
||||||
|
North Florida,ASUN,16-16,+1,246,>>,248,243,235,245,266,275,244,218,248,255,254,232,242,252,235,246,--,239,238,260,--,230,250,229,249,256,252,252,254,266,--,242,236,248,244,248,218,255,232,244,232,241,245,233,266,230,255,224,246,251,207,262,254,251,256,265,205,226
|
||||||
|
Portland St,BSC,17-14,+7,247,>>,229,254,247,219,210,238,230,236,227,242,256,266,236,241,247,259,--,223,265,290,--,243,258,245,218,214,260,263,226,244,--,252,259,220,267,221,253,240,242,245,268,254,220,213,237,256,258,270,237,212,269,247,269,246,263,256,245,258
|
||||||
|
Montana St,BSC,14-17,+13,248,>>,244,248,241,237,257,215,245,200,237,243,242,269,235,235,212,254,--,256,276,194,--,275,232,252,247,253,248,241,241,215,--,251,263,263,241,228,296,239,301,269,227,240,243,284,271,282,244,273,256,273,233,225,244,236,223,226,233,220
|
||||||
|
Columbia,Ivy,13-14,-11,249,>>,269,240,239,258,262,257,260,257,260,246,234,256,252,260,199,233,--,256,235,226,--,227,247,227,250,206,240,256,255,283,--,238,244,246,228,252,182,242,217,232,238,251,247,248,241,229,291,218,270,268,337,221,206,226,291,262,241,236
|
||||||
|
NC Central,MEAC,17-12,-4,250,>>,276,241,242,282,271,261,275,153,244,256,260,274,256,261,243,243,--,281,223,295,--,200,251,225,263,192,243,254,263,211,--,264,274,258,226,213,204,248,228,249,233,249,256,208,286,210,294,190,273,280,218,256,195,258,220,220,242,274
|
||||||
|
San Jose St,MWC,9-22,,251,>>,227,239,249,235,259,264,232,271,241,229,207,230,234,234,227,229,--,228,250,206,--,265,235,277,265,275,232,249,248,276,--,209,239,269,254,283,242,265,285,253,265,231,272,268,223,275,217,268,236,252,284,214,201,242,265,234,257,253
|
||||||
|
FGCU,ASUN,14-18,-4,252,>>,268,232,238,264,280,240,270,218,253,244,247,242,232,224,239,231,--,249,254,282,--,263,234,232,272,276,242,238,278,217,--,233,224,271,232,274,234,204,265,268,229,224,273,239,265,261,235,250,260,262,246,236,266,245,253,237,231,264
|
||||||
|
North Alabama,ASUN,15-17,+4,253,>>,252,244,250,257,255,236,250,218,245,252,257,239,249,245,268,236,--,249,239,285,--,233,252,244,252,258,255,259,258,237,--,257,238,257,253,254,225,237,245,252,239,246,252,262,258,232,249,227,254,254,224,261,245,254,234,266,229,250
|
||||||
|
Northeastern,CAA,12-20,-4,254,>>,267,245,253,254,235,247,261,257,257,254,246,255,231,222,208,238,--,256,240,222,--,253,249,233,260,293,249,255,269,260,--,240,226,261,246,268,231,250,257,250,249,250,265,286,246,247,208,235,250,250,241,254,226,244,279,255,226,230
|
||||||
|
CS Bakersfield,BWC,13-18,-6,255,>>,256,242,244,238,278,246,251,236,231,232,227,246,228,254,250,240,--,246,253,259,--,261,225,255,257,252,221,250,272,224,--,234,266,265,229,267,262,243,278,257,204,223,268,276,251,269,242,257,248,253,279,246,236,259,247,212,253,244
|
||||||
|
Mt St Mary's,MAAC,13-19,-4,256,>>,305,235,233,305,294,263,300,200,271,264,244,290,260,244,203,228,--,305,244,205,--,281,233,238,289,302,231,248,297,231,--,256,231,292,218,241,217,226,297,281,221,242,291,292,305,271,230,214,290,295,205,217,209,235,257,229,274,243
|
||||||
|
Central Conn,NEC,20-11,-13,257,>>,259,265,265,268,225,231,262,271,251,265,282,283,264,275,274,266,--,267,246,243,--,220,276,214,223,180,267,258,227,300,--,274,261,224,268,185,239,274,200,239,283,279,219,190,255,214,278,233,280,249,273,271,250,253,216,283,266,269
|
||||||
|
Air Force,MWC,9-21,,258,>>,250,250,259,246,276,283,247,257,256,222,212,247,250,219,228,252,--,242,256,251,--,284,239,280,276,277,233,253,260,267,--,175,243,270,251,276,328,276,299,264,261,239,275,255,233,289,220,275,245,269,282,231,215,269,289,223,288,268
|
||||||
|
UT San Antonio,AAC,11-20,-4,259,>>,264,258,255,248,284,271,254,218,273,270,228,233,247,217,236,260,--,254,258,302,--,271,220,279,274,280,244,242,275,221,--,243,251,264,224,296,256,277,276,262,237,243,277,299,268,277,211,267,262,270,285,248,253,264,271,233,280,200
|
||||||
|
MTSU,CUSA,13-18,+11,260,>>,234,269,280,228,275,287,246,236,255,274,262,250,269,285,269,265,--,234,279,220,--,278,274,286,246,255,280,262,249,192,--,232,247,243,282,261,273,264,263,251,257,261,241,291,243,280,272,292,213,224,263,295,287,289,202,245,251,191
|
||||||
|
Queens NC,ASUN,14-19,+3,261,>>,254,266,266,259,237,267,264,236,268,271,283,278,262,280,258,261,--,256,266,237,--,242,267,261,258,261,274,267,262,241,--,269,265,255,261,285,249,245,247,256,266,258,257,278,245,245,274,255,263,256,232,273,273,270,254,271,247,235
|
||||||
|
Ball St,MAC,15-16,+5,262,>>,270,257,267,263,287,255,259,257,264,251,253,252,259,276,260,245,--,263,263,280,--,254,263,264,275,265,261,270,267,257,--,268,250,275,260,236,237,266,275,254,258,263,262,279,269,263,245,259,244,264,204,266,227,261,272,242,265,280
|
||||||
|
N Dakota St,SL,15-17,-4,263,>>,262,261,273,247,246,234,258,236,254,258,266,277,257,267,265,253,--,256,269,250,--,239,259,278,248,250,263,268,266,265,--,273,255,241,264,245,265,252,261,260,285,268,264,266,263,257,270,272,247,245,296,260,292,256,248,258,278,276
|
||||||
|
Idaho St,BSC,15-19,+8,264,>>,277,251,252,270,286,239,281,183,259,248,259,282,265,248,240,257,--,281,262,281,--,260,254,275,282,303,258,269,286,205,--,258,270,281,235,270,285,249,316,274,215,252,283,290,295,273,247,253,272,277,254,234,223,243,252,215,262,261
|
||||||
|
Niagara,MAAC,15-15,-2,265,>>,278,262,264,276,252,252,278,257,261,281,272,273,274,257,271,263,--,278,264,294,--,272,272,258,255,267,259,245,264,243,--,266,246,254,259,233,243,261,246,261,263,266,246,259,273,251,266,256,261,259,260,268,249,255,243,280,269,252
|
||||||
|
SUNY Albany,AEC,13-19,-1,266,>>,290,256,246,286,248,219,285,236,270,257,255,279,258,277,251,256,--,287,247,242,--,259,241,262,277,286,247,261,279,282,--,275,272,276,230,291,214,238,266,263,254,257,279,285,261,252,253,225,292,285,286,232,221,252,312,248,263,265
|
||||||
|
Binghamton,AEC,15-15,-5,267,>>,261,284,281,265,214,273,269,218,272,276,293,291,278,286,273,280,--,267,267,244,--,250,282,260,239,226,281,271,245,254,--,285,276,235,271,257,245,279,214,246,273,288,235,236,235,233,302,264,281,260,306,282,248,274,240,279,276,245
|
||||||
|
Kennesaw,ASUN,15-16,-8,268,>>,272,260,263,266,285,272,267,257,267,266,269,258,267,262,278,251,--,263,259,306,--,248,271,254,270,270,271,283,277,307,--,247,232,268,273,237,235,253,260,259,274,264,271,283,289,255,285,247,259,261,251,265,265,262,293,299,249,275
|
||||||
|
Canisius,MAAC,13-17,-3,269,>>,280,272,277,277,231,256,279,271,269,267,270,261,270,255,264,267,--,280,273,189,--,273,281,253,271,236,277,276,273,261,--,284,281,259,281,253,260,287,258,267,286,284,253,282,236,264,265,260,269,267,235,269,241,268,258,288,285,272
|
||||||
|
New Mexico St,CUSA,13-18,+3,270,>>,237,282,285,230,263,278,253,316,263,279,273,262,275,306,275,275,--,236,286,235,--,277,286,287,256,233,284,273,259,245,--,237,258,244,295,286,300,275,241,265,272,267,258,275,240,286,297,298,211,222,302,292,279,285,237,272,258,231
|
||||||
|
Lehigh,PL,14-17,+16,271,>>,316,255,260,321,289,229,313,183,274,314,261,292,248,243,255,248,--,320,261,269,--,282,253,282,304,295,250,265,309,200,--,290,234,299,239,282,232,229,284,299,230,253,308,273,325,268,264,237,284,300,307,263,228,265,249,232,270,277
|
||||||
|
Southern Utah,WAC,10-21,-4,272,>>,287,253,251,274,292,270,283,257,266,253,243,245,245,247,261,255,--,281,277,289,--,289,244,263,294,310,251,266,294,269,--,259,257,301,265,290,312,272,314,288,244,244,301,308,277,297,262,265,257,287,289,241,261,272,288,250,254,246
|
||||||
|
Grambling,SWAC,17-14,-3,273,>>,221,294,286,273,196,300,241,288,277,293,310,253,306,297,296,305,--,242,270,271,--,269,296,237,224,200,300,272,215,246,--,288,299,251,298,264,304,298,215,272,302,293,228,202,259,237,313,282,285,263,194,305,324,293,197,297,261,297
|
||||||
|
Jacksonville,ASUN,16-17,+10,274,>>,266,271,271,269,265,305,272,218,265,285,296,271,290,283,300,273,--,263,260,314,--,252,280,276,268,251,289,277,268,242,--,271,277,260,274,275,269,273,249,266,276,269,269,263,276,259,296,252,252,258,248,281,282,273,276,276,252,278
|
||||||
|
TX Southern,SWAC,14-15,-6,275,>>,245,275,276,289,242,285,263,271,282,272,292,264,282,284,284,274,--,272,257,287,--,266,279,251,269,228,278,264,236,272,--,277,289,288,276,278,271,270,254,275,275,280,261,249,281,227,311,248,286,288,210,290,289,280,235,275,283,299
|
||||||
|
NE Omaha,SL,15-17,,276,>>,292,263,256,283,296,249,289,288,262,261,258,272,255,266,263,269,--,293,274,273,--,270,255,270,284,268,253,278,301,277,--,276,268,277,263,281,279,256,287,286,240,259,292,272,306,284,273,258,276,282,266,251,307,271,287,257,264,221
|
||||||
|
Denver,SL,16-16,,277,>>,281,280,268,272,269,254,271,304,258,260,264,259,254,250,277,282,--,276,275,291,--,267,266,272,273,240,264,288,276,289,--,272,278,256,279,243,318,290,270,278,271,278,276,244,285,281,279,269,274,266,275,253,327,266,292,282,268,260
|
||||||
|
Tennessee St,OVC,18-15,,278,>>,271,291,291,275,241,237,268,288,283,273,295,263,287,304,291,293,--,271,283,246,--,256,295,266,266,239,294,284,256,291,--,294,283,273,301,250,288,284,267,270,278,294,251,214,249,265,304,285,287,276,201,293,303,282,275,290,282,316
|
||||||
|
Bucknell,PL,14-19,+15,279,>>,307,274,274,308,273,259,304,218,280,291,278,301,276,269,266,277,--,306,280,232,--,302,269,293,293,309,265,275,299,236,--,300,275,280,255,279,264,263,279,294,251,273,295,287,308,279,236,266,282,286,219,272,247,276,282,228,303,311
|
||||||
|
Portland,WCC,12-21,+6,280,>>,238,295,299,232,261,295,249,304,281,288,276,257,298,311,279,294,--,232,306,225,--,301,285,300,267,278,299,280,257,252,--,239,288,267,294,300,320,291,273,271,293,283,266,281,253,310,283,320,255,243,293,284,268,297,232,273,267,263
|
||||||
|
SIUE,OVC,17-16,+4,281,>>,283,286,287,287,264,242,280,271,285,280,288,276,286,282,286,286,--,281,278,255,--,262,289,291,279,259,282,291,274,316,--,291,269,278,286,259,276,271,272,276,281,291,274,240,260,272,286,277,289,283,247,280,297,278,300,298,293,300
|
||||||
|
Howard,MEAC,15-16,,282,>>,291,285,284,296,293,292,290,271,279,282,289,287,291,278,272,283,--,290,282,283,--,280,291,268,286,273,285,287,285,286,--,282,282,284,292,242,270,258,264,283,294,285,281,274,297,274,254,280,299,292,228,283,317,279,242,284,272,279
|
||||||
|
Alcorn St,SWAC,14-17,+9,283,>>,239,298,289,284,239,322,265,288,286,292,308,270,294,308,289,308,--,267,281,309,--,279,297,267,264,230,301,279,251,225,--,287,300,274,297,295,311,296,243,290,305,295,270,258,256,254,314,288,296,278,212,299,300,290,208,300,271,286
|
||||||
|
Presbyterian,BSo,14-18,-4,284,>>,295,281,272,292,314,290,297,236,296,277,274,285,280,264,283,287,--,298,272,322,--,268,270,288,292,298,272,281,293,274,--,281,285,289,257,297,261,282,290,279,260,276,297,303,303,278,275,263,297,299,278,270,252,277,301,254,287,288
|
||||||
|
Oral Roberts,SL,12-19,+5,285,>>,301,267,279,281,300,269,295,288,275,269,265,281,263,249,282,258,--,296,294,300,--,287,268,296,290,284,270,286,303,292,--,283,260,285,283,260,274,259,302,293,290,274,300,298,292,304,281,291,253,289,295,264,305,275,297,268,290,295
|
||||||
|
Utah Tech,WAC,11-20,-3,286,>>,273,289,283,261,274,301,273,271,278,284,277,275,283,287,280,290,--,267,292,274,--,295,278,297,278,283,286,292,280,279,--,279,294,279,293,287,307,292,292,282,287,282,282,294,272,307,284,306,265,265,283,279,306,283,283,278,279,282
|
||||||
|
Ga Southern,SBC,9-24,+12,287,>>,302,277,278,304,318,302,302,183,294,306,279,289,284,256,270,272,--,302,293,296,--,312,262,307,308,329,266,257,314,203,--,280,248,313,258,317,275,268,320,311,248,260,317,315,320,309,226,296,277,301,288,278,255,281,270,238,281,251
|
||||||
|
Florida Intl,CUSA,10-21,-13,288,>>,294,278,282,278,321,279,293,271,290,289,271,280,279,288,294,262,--,287,289,266,--,294,275,292,296,312,288,289,296,253,--,260,267,304,278,299,263,278,306,280,289,275,298,317,293,296,252,294,268,284,294,285,258,296,285,261,275,249
|
||||||
|
Citadel,SC,11-21,-8,289,>>,297,268,262,291,302,235,298,288,288,268,252,293,253,272,285,284,--,298,271,307,--,285,265,290,299,315,256,282,307,288,--,267,280,305,269,306,280,286,312,297,270,271,304,309,282,301,263,261,298,303,313,245,309,267,324,269,277,254
|
||||||
|
UMBC,AEC,11-21,-2,290,>>,317,279,275,312,311,274,317,200,301,309,285,296,268,271,254,271,--,317,285,272,--,311,261,284,310,330,269,274,320,259,--,305,279,310,242,314,254,267,313,307,255,272,316,319,315,302,267,274,309,318,290,276,240,284,298,231,294,267
|
||||||
|
W Michigan,MAC,12-19,+7,291,>>,275,292,297,267,282,282,277,288,295,286,286,284,285,274,313,291,--,272,296,303,--,288,288,298,280,296,293,299,281,270,--,292,293,286,290,298,290,297,294,273,312,292,278,301,279,285,287,300,279,275,270,294,262,286,280,286,295,281
|
||||||
|
Jackson St,SWAC,15-16,+4,292,>>,255,302,304,285,253,325,266,320,284,290,311,294,301,293,298,300,--,272,295,326,--,276,307,294,262,241,305,301,246,319,--,293,303,272,312,266,287,300,253,287,308,313,267,265,291,260,295,293,293,274,215,300,321,294,264,308,298,305
|
||||||
|
N Illinois,MAC,11-20,,293,>>,279,297,306,271,258,298,276,288,298,278,290,288,309,291,306,288,--,272,300,248,--,286,299,303,285,292,310,310,282,299,--,286,296,282,308,301,289,310,277,277,311,304,280,253,248,291,289,305,271,271,304,291,271,298,299,291,297,284
|
||||||
|
American Univ,PL,16-16,-15,294,>>,318,283,294,316,315,293,308,271,291,322,287,295,277,292,287,268,--,308,288,284,--,308,292,269,301,291,279,293,308,311,--,298,254,293,284,246,266,257,281,303,295,287,302,261,337,294,268,279,295,298,255,286,283,287,306,296,299,320
|
||||||
|
Boston Univ,PL,16-17,+2,295,>>,310,290,295,309,295,276,314,257,293,320,298,315,308,294,288,292,--,308,291,264,--,310,302,295,297,316,292,285,304,290,--,301,291,287,289,255,283,289,291,300,284,296,296,297,328,287,280,289,291,291,262,297,274,292,250,277,301,285
|
||||||
|
SE Louisiana,SLC,15-17,-22,296,>>,289,301,301,301,272,306,282,320,305,287,304,268,302,263,303,306,--,287,284,278,--,290,298,271,281,248,308,306,283,321,--,310,301,290,310,294,293,301,274,295,300,307,286,270,280,283,282,286,301,296,256,306,328,305,295,310,306,292
|
||||||
|
Chicago St,I Ind,12-18,+3,297,>>,286,299,303,288,270,315,284,218,297,275,299,300,299,265,305,298,--,281,301,319,--,264,304,309,288,266,290,308,288,284,--,303,306,283,291,308,292,321,280,284,301,297,288,271,275,276,303,295,306,290,300,302,316,299,309,315,310,283
|
||||||
|
ULM,SBC,11-19,-7,298,>>,284,300,296,280,279,299,291,271,289,303,297,298,304,300,293,303,--,286,299,257,--,307,290,299,291,279,297,290,287,308,--,289,290,296,306,307,305,306,286,291,280,290,289,306,283,299,301,302,283,281,277,304,295,306,304,304,292,291
|
||||||
|
Sacred Heart,NEC,16-16,-4,299,>>,311,293,292,310,299,277,312,288,299,299,300,308,293,301,290,295,--,312,287,265,--,303,293,281,302,288,296,294,298,297,--,306,292,303,285,262,267,281,295,298,292,299,294,277,310,293,299,283,312,307,280,298,276,288,284,287,307,296
|
||||||
|
Northern Arizona,BSC,14-19,-11,300,>>,263,312,308,252,251,321,274,304,287,295,321,305,317,313,319,315,--,261,312,279,--,306,316,283,254,281,322,309,265,306,--,302,315,266,322,272,348,312,288,285,318,309,260,293,270,306,298,316,275,257,239,319,320,313,286,313,289,293
|
||||||
|
S Carolina St,MEAC,14-17,,301,>>,285,310,293,293,283,317,294,271,292,298,316,302,311,310,292,319,--,293,304,316,--,298,309,289,287,260,302,298,284,273,--,299,319,291,299,304,313,302,268,305,297,298,285,280,296,288,309,307,317,294,257,308,322,291,266,303,284,294
|
||||||
|
SC Upstate,BSo,10-20,,302,>>,306,288,288,303,307,281,301,271,309,283,291,306,292,279,281,289,--,302,290,297,--,292,287,302,306,313,283,304,317,317,--,297,295,302,280,311,282,294,303,301,282,289,311,316,301,300,292,281,302,304,321,288,278,302,308,292,302,298
|
||||||
|
Wagner,NEC,15-15,+12,303,>>,313,296,302,313,290,289,309,271,300,307,315,312,295,305,299,297,--,312,297,304,--,293,306,306,303,282,303,303,300,298,--,315,310,298,300,277,278,295,283,302,314,308,293,269,304,290,322,284,304,305,297,307,270,303,290,301,309,303
|
||||||
|
Campbell,CAA,14-18,-1,304,>>,296,309,309,294,309,303,296,304,302,305,302,297,305,290,301,304,--,293,303,288,--,296,308,301,298,301,307,296,291,294,--,296,302,294,305,289,297,308,293,289,319,305,290,307,300,298,300,303,288,293,317,309,313,304,281,305,300,290
|
||||||
|
Bethune-Cookman,SWAC,16-15,,305,>>,274,321,310,300,288,316,288,304,303,300,324,299,313,318,312,321,--,291,298,325,--,291,318,285,283,274,320,307,271,293,--,312,323,295,318,292,310,314,282,292,322,319,284,242,299,270,323,297,319,302,221,323,288,308,268,321,304,325
|
||||||
|
Old Dominion,SBC,7-25,+1,306,>>,324,287,290,315,326,284,315,271,312,318,275,304,303,295,295,278,--,317,313,276,--,325,283,313,326,345,287,300,326,305,--,270,264,324,287,316,284,269,327,322,288,286,329,327,321,326,246,310,300,319,329,275,263,295,320,281,296,301
|
||||||
|
Valparaiso,MVC,7-25,-1,307,>>,293,305,298,290,301,294,292,316,314,304,281,286,288,307,297,310,--,291,307,268,--,318,300,310,311,328,291,295,302,315,--,295,311,318,296,333,315,316,323,304,306,300,314,320,284,313,276,312,308,312,308,287,299,300,325,307,286,308
|
||||||
|
Le Moyne,NEC,15-17,+5,308,>>,320,304,300,320,303,288,322,257,308,308,306,323,300,317,304,309,--,322,302,338,--,297,294,305,309,308,295,302,316,312,--,322,307,311,288,293,286,288,307,306,291,312,310,295,317,323,316,287,322,311,332,301,281,301,305,295,312,310
|
||||||
|
CS Sacramento,BSC,10-23,+14,309,>>,303,306,313,297,310,297,307,288,307,294,303,321,289,298,308,299,--,302,315,286,--,313,305,321,317,334,306,311,319,268,--,313,312,314,302,323,298,318,329,313,296,301,315,326,312,312,305,313,305,306,312,316,277,316,302,293,305,289
|
||||||
|
Elon,CAA,13-19,-2,310,>>,300,317,317,299,308,314,299,304,306,296,312,313,312,316,309,312,--,297,310,305,--,304,315,311,300,294,316,312,295,313,--,308,313,300,316,303,299,317,298,296,316,317,299,302,298,303,312,314,303,297,325,311,293,309,311,316,311,306
|
||||||
|
DePaul,BE,3-28,-2,311,>>,282,307,315,295,304,343,286,336,310,330,263,267,296,321,310,296,--,278,319,299,--,338,303,332,321,304,304,297,292,310,--,261,316,319,307,337,319,307,296,317,326,302,327,311,278,327,271,330,278,316,326,296,296,322,319,318,308,309
|
||||||
|
Delaware St,MEAC,13-17,-8,312,>>,314,311,305,314,319,304,316,288,304,310,314,307,320,309,307,317,--,314,305,308,--,300,314,274,312,289,309,319,311,323,--,311,314,309,309,302,294,313,304,312,304,311,303,300,314,305,317,290,327,314,301,314,326,310,316,319,291,315
|
||||||
|
Robert Morris,HL,10-22,-1,313,>>,323,303,307,317,317,286,318,304,318,297,294,303,297,296,316,301,--,314,317,313,--,315,301,315,319,318,298,313,321,314,--,309,297,323,303,310,295,303,324,320,307,303,321,325,288,316,288,315,315,324,320,289,267,307,315,302,316,322
|
||||||
|
E Illinois,OVC,14-18,-4,314,>>,312,315,320,311,297,280,310,304,316,301,313,309,310,315,321,311,--,308,309,293,--,283,317,304,315,290,314,317,305,328,--,323,317,315,314,313,301,311,308,308,303,320,309,288,287,295,315,301,323,320,334,321,314,312,329,324,320,328
|
||||||
|
E Michigan,MAC,13-18,+9,315,>>,288,324,325,279,306,332,287,320,311,313,323,314,324,326,324,325,--,277,327,320,--,321,326,325,295,306,324,321,289,296,--,316,328,297,325,305,331,322,300,309,330,323,287,304,290,318,318,335,294,279,287,324,335,323,294,309,322,313
|
||||||
|
Charleston So,BSo,10-20,-2,316,>>,299,322,316,302,291,310,303,304,315,312,320,317,321,299,323,323,--,300,311,310,--,309,324,319,305,297,315,314,305,318,--,318,320,306,313,322,317,325,289,310,320,316,307,312,294,311,326,309,320,309,318,322,312,315,313,323,317,324
|
||||||
|
Coastal Car,SBC,9-22,+3,317,>>,315,318,312,307,332,296,319,288,322,323,301,318,315,312,315,316,--,317,325,298,--,326,310,327,323,333,312,305,322,303,--,304,304,322,311,320,308,315,326,319,310,306,322,329,318,330,306,327,307,322,322,313,301,319,317,311,315,302
|
||||||
|
Alabama St,SWAC,13-18,-1,318,>>,298,319,311,319,298,312,305,336,317,311,319,310,318,302,320,322,--,311,308,323,--,299,322,308,314,299,317,320,290,332,--,317,321,320,320,318,316,324,311,316,325,324,306,296,307,292,327,299,326,323,323,303,311,311,333,327,319,342
|
||||||
|
Idaho,BSC,11-21,-8,319,>>,304,320,321,298,320,313,306,327,313,302,305,316,314,324,311,318,--,300,320,275,--,322,319,312,307,322,319,325,315,329,--,314,322,316,323,315,327,327,347,314,309,321,312,323,309,324,310,322,318,308,314,310,304,320,327,322,314,321
|
||||||
|
William & Mary,CAA,10-23,+6,320,>>,330,316,319,325,334,318,327,288,324,319,309,325,307,303,314,313,--,325,316,337,--,317,311,326,329,341,313,318,332,281,--,320,308,327,304,321,302,309,336,323,299,314,331,333,329,321,307,311,313,325,303,318,280,324,323,294,318,319
|
||||||
|
Bellarmine,ASUN,8-23,,321,>>,325,308,314,323,331,320,324,288,325,315,317,320,323,314,302,302,--,324,314,321,--,319,312,324,331,321,321,324,335,301,--,307,309,329,319,330,306,299,322,326,298,310,336,328,313,320,320,308,314,326,338,312,315,318,318,312,313,314
|
||||||
|
Lafayette,PL,11-21,-6,322,>>,332,314,318,329,316,308,328,316,320,336,307,327,316,319,322,314,--,327,324,301,--,329,323,317,320,327,311,316,328,327,--,321,298,317,315,309,309,304,319,325,313,315,323,318,338,325,290,323,316,315,319,320,308,314,331,317,326,312
|
||||||
|
TX A&M Commerce,SLC,13-19,+2,323,>>,309,325,327,318,305,319,311,327,326,317,328,311,330,323,330,324,--,307,318,315,--,305,325,318,316,285,331,328,310,331,--,325,333,308,330,319,321,326,305,315,327,326,313,289,302,308,333,318,324,317,291,334,318,329,314,332,327,304
|
||||||
|
Navy,PL,13-18,-2,324,>>,335,313,323,334,335,309,333,304,319,340,318,331,319,320,326,307,--,337,321,332,--,324,321,320,325,320,318,315,329,304,--,324,305,321,317,288,291,305,318,324,317,318,324,313,342,317,308,317,310,321,316,317,290,317,303,306,330,330
|
||||||
|
F Dickinson,NEC,15-17,-7,325,>>,321,327,326,322,312,326,325,304,321,321,331,332,325,343,335,326,--,322,326,343,--,314,327,314,313,305,328,323,312,324,--,326,318,307,326,284,314,320,310,318,334,327,305,310,319,314,332,321,321,313,281,328,310,325,296,329,328,318
|
||||||
|
South Dakota,SL,12-20,-7,326,>>,322,323,322,306,333,324,321,320,323,316,322,319,322,322,317,320,--,314,322,334,--,316,313,316,318,319,323,322,323,322,--,319,326,312,321,312,322,319,349,321,321,322,319,324,322,329,319,324,311,310,335,315,336,321,321,314,321,326
|
||||||
|
Morgan St,MEAC,11-19,+9,327,>>,327,334,331,332,327,340,332,304,328,328,342,328,329,336,333,334,--,334,328,328,--,323,336,329,328,314,335,329,325,302,--,333,341,326,332,328,325,333,315,328,339,330,320,314,326,319,345,325,337,330,305,345,291,337,307,328,324,340
|
||||||
|
Alabama A&M,SWAC,10-21,+6,328,>>,308,335,330,324,325,349,320,336,327,324,336,329,331,344,338,343,--,320,334,355,--,331,333,335,322,324,334,326,313,309,--,335,346,330,331,329,339,328,333,330,333,334,318,322,324,322,339,336,332,327,298,331,332,328,310,330,331,332
|
||||||
|
Dartmouth,Ivy,6-21,+8,329,>>,328,328,334,326,322,328,329,336,329,333,330,336,332,328,334,327,--,327,332,327,--,337,335,338,332,311,329,327,327,320,--,328,327,328,329,331,336,330,309,331,336,328,330,338,311,333,347,334,325,329,359,336,325,334,322,325,329,331
|
||||||
|
Northwestern LA,SLC,9-23,-3,330,>>,340,326,324,341,342,331,340,320,338,327,329,324,328,340,318,330,--,341,323,317,--,333,320,323,337,337,325,330,340,340,--,327,329,344,324,335,330,323,331,337,315,325,339,346,336,332,328,319,335,341,315,330,334,330,336,320,325,307
|
||||||
|
Ark Pine Bluff,SWAC,13-18,-3,331,>>,319,338,336,335,328,342,323,327,330,325,340,326,339,346,331,333,--,330,329,349,--,320,331,330,324,307,337,332,318,330,--,334,340,331,334,325,323,337,321,329,337,340,325,305,333,315,352,326,343,336,299,325,337,327,332,336,343,346
|
||||||
|
NJIT,AEC,7-21,-2,332,>>,333,330,335,330,324,330,336,320,336,332,333,349,336,330,327,332,--,334,335,331,--,332,334,334,330,323,330,331,331,335,--,332,331,325,327,334,324,339,317,327,338,335,326,335,323,328,342,332,336,333,350,332,319,333,338,340,336,327
|
||||||
|
Tennessee Tech,OVC,10-22,,333,>>,334,332,332,333,330,323,335,327,333,334,334,322,335,339,347,339,--,332,336,318,--,336,340,322,334,326,336,335,334,333,--,340,330,335,338,324,342,329,361,334,331,332,334,331,316,336,344,333,339,339,309,338,346,336,330,339,323,345
|
||||||
|
Southern Indiana,OVC,8-24,-2,334,>>,347,329,328,345,338,311,342,327,343,335,327,330,326,325,325,331,--,344,330,312,--,335,329,333,348,347,326,333,343,346,--,337,324,349,328,342,334,335,328,340,323,333,347,334,339,337,325,329,346,351,327,326,339,332,350,331,339,335
|
||||||
|
Cent Arkansas,ASUN,9-23,,335,>>,331,339,339,327,346,347,330,327,335,329,337,334,340,337,336,335,--,327,338,357,--,330,337,336,336,344,339,338,338,339,--,330,335,332,335,339,333,334,330,332,324,337,335,343,345,334,336,337,330,331,345,337,329,343,337,335,335,317
|
||||||
|
UTRGV,WAC,6-25,-5,336,>>,338,331,329,331,337,337,334,342,331,331,326,335,337,334,332,329,--,332,339,311,--,340,328,340,338,340,332,337,339,348,--,329,336,339,339,340,335,342,351,339,343,329,338,340,327,343,330,343,328,338,339,327,333,331,345,342,337,337
|
||||||
|
Manhattan,MAAC,7-22,+5,337,>>,341,340,340,338,313,329,341,346,334,338,338,341,334,333,337,337,--,339,340,324,--,344,342,345,335,325,338,336,337,326,--,338,332,334,337,336,338,351,332,338,332,339,332,339,334,340,346,339,331,332,328,335,330,335,335,338,344,329
|
||||||
|
Prairie View,SWAC,10-21,-9,338,>>,326,337,333,336,329,350,326,351,332,326,339,333,342,332,348,336,--,334,331,359,--,327,343,328,327,335,341,342,324,352,--,331,342,336,347,326,332,343,357,336,340,343,328,321,332,331,343,328,338,337,311,329,348,326,347,350,342,355
|
||||||
|
Hampton,CAA,9-24,,339,>>,339,341,341,337,341,339,337,336,342,342,341,339,338,327,329,340,--,338,337,340,--,334,339,341,339,350,340,334,341,325,--,336,337,337,333,344,326,336,342,333,335,338,337,352,344,335,341,338,329,334,343,339,323,338,328,333,333,323
|
||||||
|
New Orleans,SLC,10-22,+5,340,>>,342,342,337,343,343,338,339,342,345,337,347,338,346,331,328,344,--,342,333,336,--,328,332,337,343,331,347,346,342,347,--,345,343,341,341,348,337,332,355,341,329,341,343,330,340,339,348,331,344,344,357,343,338,339,341,346,338,333
|
||||||
|
NC A&T,CAA,7-25,-3,341,>>,329,348,346,328,323,345,331,342,340,341,346,343,341,348,340,349,--,325,343,329,--,343,346,343,333,346,343,339,330,343,--,342,348,333,346,346,344,348,356,335,352,346,333,342,330,338,334,348,333,328,324,346,345,342,339,348,334,343
|
||||||
|
Army,PL,10-22,-2,342,>>,353,333,345,351,348,327,353,352,341,354,332,348,333,329,343,328,--,352,342,330,--,347,347,331,345,352,333,340,351,349,--,341,325,342,340,327,329,331,341,343,344,336,345,347,358,344,321,341,340,340,349,340,351,340,342,349,347,347
|
||||||
|
Cal Poly,BWC,4-28,+3,343,>>,343,336,338,340,352,335,344,336,337,344,325,345,327,338,341,342,--,340,348,353,--,353,330,352,347,354,327,343,352,336,--,343,344,351,336,354,349,350,345,349,328,331,354,357,341,354,329,349,345,345,351,333,331,341,357,326,340,341
|
||||||
|
Florida A&M,SWAC,6-23,-3,344,>>,337,345,342,352,336,344,343,346,339,339,343,337,345,347,345,347,--,351,341,333,--,346,344,339,340,332,342,344,333,341,--,347,352,353,345,351,350,341,346,353,353,347,342,332,352,341,351,340,355,355,333,344,343,344,348,344,341,351
|
||||||
|
Holy Cross,PL,10-23,+5,345,>>,349,346,348,348,345,352,352,327,344,353,349,354,351,350,350,345,--,348,346,347,--,348,349,347,341,351,348,345,346,337,--,346,338,338,343,338,346,338,348,344,341,342,340,337,355,345,340,347,342,335,344,350,349,350,334,337,349,339
|
||||||
|
Buffalo,MAC,4-27,-3,346,>>,345,344,347,342,340,333,345,346,350,349,335,347,344,335,346,341,--,343,353,335,--,355,341,351,355,357,344,341,349,338,--,339,334,356,342,352,345,345,352,351,349,345,352,355,348,353,324,356,334,353,348,341,342,345,343,341,357,334
|
||||||
|
MD E Shore,MEAC,9-19,+4,347,>>,344,349,349,344,360,348,348,320,346,346,351,351,347,352,351,350,--,346,345,358,--,339,354,346,344,317,351,350,345,334,--,348,351,343,351,332,343,349,325,342,351,348,346,336,343,342,360,346,349,346,361,351,352,351,326,347,332,348
|
||||||
|
LIU Brooklyn,NEC,7-22,,348,>>,348,351,344,347,350,354,351,327,347,348,352,353,348,349,339,353,--,350,347,346,--,349,348,344,342,339,349,347,347,345,--,351,355,340,344,347,347,347,344,346,345,351,341,353,354,348,349,345,350,343,331,349,341,347,340,343,345,336
|
||||||
|
Incarnate Word,SLC,8-23,-5,349,>>,351,347,343,350,357,336,346,352,351,343,344,342,343,342,344,346,--,348,344,352,--,342,338,342,351,349,346,354,353,356,--,349,349,346,350,345,341,352,362,347,350,350,351,350,356,347,335,342,352,350,347,342,350,346,356,351,346,338
|
||||||
|
SE Missouri St,OVC,9-22,+2,350,>>,346,352,352,346,347,334,347,342,353,347,353,344,353,356,354,352,--,344,350,354,--,341,353,350,349,338,352,351,344,344,--,350,347,352,352,349,351,344,358,345,347,352,348,344,331,346,357,351,347,352,330,352,357,349,344,352,348,349
|
||||||
|
Loyola MD,PL,7-25,-2,351,>>,358,343,350,356,351,341,356,346,348,357,345,355,349,341,342,338,--,357,349,339,--,352,350,348,354,358,345,349,358,351,--,352,339,347,349,343,340,340,335,354,348,344,356,351,360,349,331,344,348,347,356,348,344,348,346,345,358,358
|
||||||
|
Pacific,WCC,6-26,-5,352,>>,336,354,357,339,344,359,338,359,349,345,350,340,357,345,352,351,--,330,355,342,--,354,352,356,346,343,358,353,336,353,--,344,354,345,358,353,360,358,350,348,356,353,344,349,335,355,338,358,341,342,341,358,359,359,349,353,356,357
|
||||||
|
Lindenwood,OVC,9-22,,353,>>,350,356,356,349,349,346,349,352,352,350,355,350,355,358,355,356,--,347,352,350,--,345,356,355,350,342,354,355,348,355,--,354,353,350,355,350,354,353,337,350,346,356,349,345,347,350,359,353,354,348,340,353,355,354,351,354,351,353
|
||||||
|
Detroit,HL,1-31,+3,354,>>,359,350,351,361,358,353,358,327,354,359,348,352,350,351,349,348,--,359,356,348,--,360,345,360,361,361,350,348,359,342,--,357,345,361,348,360,352,346,353,361,342,349,361,362,349,356,337,355,357,361,353,347,340,357,355,334,360,352
|
||||||
|
St Francis PA,NEC,8-22,-1,355,>>,355,353,355,354,354,351,355,346,355,352,354,357,352,354,359,354,--,355,354,345,--,351,355,349,352,348,353,356,355,358,--,355,356,348,353,341,353,355,360,352,354,355,350,348,357,352,355,352,353,354,355,354,347,352,352,355,353,356
|
||||||
|
Houston Chr,SLC,6-23,,356,>>,352,358,353,355,355,360,350,359,356,351,356,346,354,359,353,358,--,352,351,356,--,350,351,354,356,336,356,357,350,357,--,358,360,354,354,355,355,357,343,355,357,357,355,341,353,351,356,350,356,356,342,355,353,355,354,357,354,344
|
||||||
|
Siena,MAAC,4-27,-2,357,>>,354,355,359,353,339,356,354,356,357,355,357,356,358,355,356,355,--,352,359,341,--,359,358,353,353,356,355,352,354,350,--,353,350,355,357,356,357,356,359,356,360,354,353,356,351,357,350,359,351,349,346,359,354,353,353,358,355,350
|
||||||
|
Stonehill,NEC,4-27,+1,358,>>,361,357,358,358,359,355,360,352,359,360,358,359,356,353,357,357,--,360,358,344,--,358,357,357,359,360,357,359,360,354,--,360,357,359,356,357,356,354,340,359,359,358,358,359,359,358,353,354,360,358,358,356,356,356,358,356,359,359
|
||||||
|
VMI,SC,4-28,-1,359,>>,356,359,354,359,353,357,359,361,358,358,359,358,359,357,358,360,--,358,357,351,--,356,359,358,358,355,360,358,356,361,--,356,359,358,360,361,358,359,339,357,355,359,359,358,346,359,354,357,358,359,360,357,360,358,360,360,350,354
|
||||||
|
IUPUI,HL,6-26,,360,>>,357,361,361,357,356,358,357,358,360,356,361,360,361,361,360,361,--,355,360,360,--,357,360,361,357,353,361,360,357,359,--,359,358,357,359,358,361,361,334,358,358,361,357,354,350,360,358,361,359,357,362,360,361,360,359,359,361,360
|
||||||
|
Coppin St,MEAC,2-26,,361,>>,362,360,360,360,362,361,361,356,361,361,360,361,360,360,361,359,--,361,361,362,--,361,361,359,360,359,359,361,362,360,--,361,361,360,361,359,359,360,338,360,361,360,360,360,362,361,361,360,361,360,352,361,358,361,361,361,352,361
|
||||||
|
MS Valley St,SWAC,1-30,,362,>>,360,362,362,362,361,362,362,361,362,362,362,362,362,362,362,362,--,362,362,361,--,362,362,362,362,362,362,362,361,362,--,362,362,362,362,362,362,362,354,362,362,362,362,361,361,362,362,362,362,362,354,362,362,362,362,362,362,362
|
||||||
|
348
rankings.csv
348
rankings.csv
@@ -1,348 +0,0 @@
|
|||||||
Team, Conf, WL, Rank, Mean, Trimmed, Median, StDev, 7OT, AP, BBT, BIH, BNZ, BWE, CBR, COL, CWL, DCI, DII, DOK, DOL, DUN, EBP, EMK, FAS, FDM, HAS, INC, JJK, JNG, KPK, KRA, LAW, LEF, LMC, LOG, MAS, MOR, NET, NOL, PGH, PIR, POM, REW, RT, RTP, RWP, SAG, SEL, SFX, SPR, SRS, TPR, TRK, TRP, USA, WIL, WLK, WMV, WOB,
|
|
||||||
Gonzaga ,WCC, 26-0, 1, 1.05, 1.00, 1.0, 0.28, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
||||||
Baylor ,B12, 22-2, 2, 3.05, 2.74, 2.0, 2.57, 19, 3, 2, 2, 3, 2, 4, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 8, 4, 3, 3, 2, 3, 2, 5, 4, 2, 3, 2, 4, 2, 2, 7, 2, 4, 2, 3, 2, 3, 2, 3, 2, 2,
|
|
||||||
Illinois ,B10, 23-6, 3, 3.78, 3.54, 3.0, 2.59, 18, 2, 5, 3, 2, 4, 3, 4, 6, 2, 3, 6, 3, 5, 4, 5, 3, 3, 4, 2, 5, 3, 3, 4, 3, 3, 1, 3, 2, 2, 3, 2, 4, 2, 3, 5, 8, 10, 2, 3, 4, 1, 3, 2, 5, 4, 3, 2, 5, 2, 3, 4,
|
|
||||||
Michigan ,B10, 20-4, 4, 4.16, 4.02, 4.0, 1.73, 9, 4, 3, 4, 5, 5, 2, 3, 5, 5, 4, 5, 4, 4, 6, 3, 4, 13, 2, 4, 3, 4, 4, 3, 5, 4, 4, 2, 4, 4, 4, 6, 3, 3, 2, 3, 5, 4, 3, 4, 3, 4, 4, 3, 4, 5, 6, 4, 4, 4, 4, 3,
|
|
||||||
Houston ,AAC, 24-3, 5, 5.24, 5.16, 5.0, 1.83, 4, 6, 4, 6, 6, 3, 5, 6, 2, 4, 6, 3, 9, 3, 3, 4, 5, 4, 6, 6, 4, 12, 5, 7, 4, 6, 7, 5, 6, 6, 5, 5, 7, 6, 6, 4, 2, 3, 6, 6, 5, 3, 7, 6, 6, 2, 5, 6, 9, 6, 5, 5,
|
|
||||||
Alabama ,SEC, 24-6, 6, 6.88, 6.64, 7.0, 2.50, 5, 5, 7, 5, 7, 6, 7, 5, 4, 8, 10, 4, 5, 7, 10, 7, 6, 5, 7, 7, 6, 6, 7, 8, 7, 11, 6, 7, 8, 7, 7, 4, 6, 7, 8, 8, 6, 6, 7, 9, 6, 4, 5, 7, 8, 7, 7, 5, 21, 7, 6, 6,
|
|
||||||
Iowa ,B10, 21-8, 7, 8.13, 7.76, 6.5, 5.60, 24, 8, 8, 7, 4, 7, 6, 17, 7, 7, 5, 11, 6, 6, 5, 6, 7, 8, 5, 5, 18, 7, 10, 10, 6, 5, 2, 6, 5, 5, 6, 7, 11, 4, 5, 24, 7, 33, 5, 5, 8, 6, 6, 5, 7, 6, 4, 8, 11, 5, 7, 10,
|
|
||||||
Ohio St ,B10, 21-9, 8, 10.75, 10.48, 9.0, 5.43, 15, 7, 12, 9, 8, 9, 15, 10, 22, 6, 9, 28, 7, 8, 9, 13, 9, 17, 8, 8, 15, 5, 9, 11, 17, 9, 5, 8, 7, 8, 8, 13, 9, 8, 7, 29, 17, 26, 8, 7, 7, 10, 8, 8, 9, 8, 9, 7, 9, 8, 8, 12,
|
|
||||||
Arkansas ,SEC, 22-6, 9, 13.33, 13.20, 13.0, 5.01, 26, 10, 13, 11, 15, 8, 14, 11, 14, 12, 14, 13, 8, 10, 14, 24, 8, 7, 21, 12, 8, 11, 12, 14, 8, 24, 14, 14, 11, 10, 14, 14, 14, 9, 18, 7, 4, 11, 9, 15, 15, 12, 13, 11, 25, 23, 16, 10, 24, 13, 9, 13,
|
|
||||||
Kansas ,B12, 20-9, 10, 16.10, 15.68, 15.0, 7.20, 47, 12, 22, 14, 21, 10, 29, 16, 19, 10, 8, 10, 11, 16, 19, 19, 15, 11, 19, 16, 14, 14, 6, 9, 24, 22, 15, 26, 9, 16, 11, 9, 13, 20, 22, 18, 25, 24, 15, 10, 12, 12, 10, 21, 13, 26, 10, 11, 3, 19, 17, 14,
|
|
||||||
San Diego St ,MWC, 23-4, 11, 16.13, 15.92, 15.0, 7.42, 2, 16, 11, 10, 26, 11, 18, 7, 12, 13, 23, 21, 18, 9, 17, 12, 11, 24, 14, 27, 7, 21, 8, 15, 10, 12, 36, 18, 15, 17, 18, 11, 12, 25, 20, 6, 13, 5, 20, 21, 13, 26, 25, 32, 29, 10, 26, 18, 6, 15, 13, 9,
|
|
||||||
USC ,P12, 22-7, 12, 16.90, 16.64, 16.0, 5.72, 14, 24, 14, 17, 10, 12, 8, 13, 13, 36, 22, 16, 13, 11, 16, 23, 16, 10, 26, 14, 17, 26, 18, 22, 11, 19, 9, 9, 20, 14, 19, 25, 20, 12, 14, 23, 14, 15, 10, 27, 19, 19, 18, 17, 11, 19, 21, 23, 20, 9, 12, 16,
|
|
||||||
Texas ,B12, 20-7, 13, 16.93, 16.84, 16.5, 6.64, 20, 9, 21, 13, 28, 19, 24, 9, 25, 15, 7, 15, 10, 15, 22, 11, 10, 27, 25, 25, 11, 9, 23, 6, 25, 18, 28, 22, 12, 19, 21, 8, 10, 21, 26, 11, 27, 16, 11, 18, 11, 26, 11, 24, 17, 17, 14, 9, 16, 21, 11, 7,
|
|
||||||
Villanova ,BE, 16-6, 14, 17.37, 16.88, 16.0, 8.13, 39, 18, 20, 21, 9, 16, 11, 19, 24, 21, 13, 9, 19, 19, 7, 16, 21, 52, 11, 9, 25, 15, 21, 21, 18, 7, 22, 12, 16, 25, 17, 20, 18, 15, 12, 13, 30, 30, 24, 11, 16, 10, 12, 10, 14, 15, 8, 17, 7, 12, 14, 22,
|
|
||||||
Virginia ,ACC, 18-7, 15, 17.91, 17.76, 18.0, 5.32, 22, 15, 18, 19, 19, 15, 23, 20, 10, 20, 15, 12, 15, 17, 11, 15, 18, 12, 12, 17, 22, 13, 19, 23, 15, 8, 23, 28, 18, 24, 12, 12, 19, 30, 11, 14, 18, 18, 22, 8, 20, 19, 24, 20, 32, 14, 18, 15, 13, 24, 24, 23,
|
|
||||||
Florida St ,ACC, 17-6, 16, 19.29, 19.16, 18.5, 6.01, 11, 14, 29, 25, 18, 25, 16, 23, 23, 17, 20, 14, 23, 20, 23, 20, 20, 28, 22, 13, 28, 17, 17, 18, 16, 27, 34, 19, 23, 18, 25, 24, 22, 10, 15, 10, 31, 28, 17, 12, 21, 12, 23, 13, 22, 9, 13, 14, 8, 18, 15, 17,
|
|
||||||
Colorado ,P12, 22-8, 17, 20.12, 19.96, 20.0, 6.96, 25, 22, 16, 24, 14, 21, 12, 26, 17, 37, 26, 18, 25, 13, 18, 9, 23, 6, 13, 22, 27, 34, 14, 34, 13, 16, 11, 10, 22, 15, 15, 19, 26, 19, 17, 32, 22, 31, 12, 24, 25, 26, 17, 19, 10, 21, 19, 22, 25, 11, 22, 24,
|
|
||||||
West Virginia ,B12, 18-9, 18, 20.13, 20.00, 19.0, 5.77, 12, 13, 17, 16, 27, 22, 17, 15, 21, 18, 11, 17, 21, 27, 27, 22, 17, 26, 27, 26, 19, 8, 16, 12, 31, 23, 17, 24, 26, 31, 24, 22, 16, 23, 27, 34, 23, 19, 16, 19, 14, 26, 16, 25, 12, 20, 17, 13, 17, 22, 16, 15,
|
|
||||||
BYU ,WCC, 20-6, 19, 20.99, 20.61, 23.0, 8.77, 3, 23, 10, 12, 24, 14, 10, 12, 16, 26, 24, 23, 17, 26, 29, 34, 13, 9, 41, 24, 10, 30, 13, 13, 32, 29, 38, 17, 25, 36, 20, 23, 15, 22, 24, 9, 10, 8, 25, 25, 17, 26, 26, 34, 23, 25, 30, , 15, 14, 19, 11,
|
|
||||||
Oklahoma St ,B12, 20-8, 20, 21.63, 21.40, 20.5, 10.01, 31, 11, 19, 8, 35, 18, 28, 8, 34, 14, 12, 36, 12, 23, 36, 31, 14, 18, 32, 28, 9, 10, 20, 5, 45, 28, 26, 31, 14, 30, 29, 10, 8, 28, 30, 19, 35, 13, 21, 26, 10, 26, 9, 35, 15, 33, 27, 12, 17, 25, 18, 8,
|
|
||||||
Creighton ,BE, 20-8, 21, 22.12, 21.30, 19.5, 10.79, 72, 19, 32, 26, 13, 30, 21, 32, 29, 16, 19, 20, 22, 14, 13, 14, 25, 45, 10, 11, 35, 20, 24, 27, 20, 10, 12, 15, 17, 28, 26, 18, 25, 14, 19, 35, 29, 42, 18, 14, 24, 12, 14, 15, 16, 22, 12, 19, 12, 16, 23, 31,
|
|
||||||
Tennessee ,SEC, 18-8, 22, 22.20, 21.54, 21.0, 7.55, 42, , 23, 28, 17, 17, 19, 30, 11, 28, 21, 7, 26, 24, 12, 17, 19, 14, 16, 20, 32, 25, 25, 26, 9, 25, 18, 16, 24, 9, 13, 29, 29, 24, 21, 30, 21, 39, 19, 17, 26, 19, 19, 12, 26, 16, 15, , 37, 26, 20, 25,
|
|
||||||
Purdue ,B10, 18-9, 23, 23.04, 22.66, 21.0, 9.15, 44, 20, 27, 20, 16, 26, 27, 25, 37, 22, 18, 46, 14, 25, 28, 28, 22, 35, 23, 15, 31, 16, 15, 17, 29, 21, 13, 20, 10, 23, 22, 27, 17, 13, 13, 39, 52, 40, 13, 16, 18, 12, 15, 16, 20, 24, 22, 20, 22, 20, 21, 20,
|
|
||||||
Loyola-Chicago ,MVC, 24-4, 24, 24.08, 23.50, 22.0, 11.30, 16, 17, 6, 18, 31, 24, 13, 29, 9, 27, 41, 19, 31, 12, 21, 21, 27, 36, 18, 21, 16, 27, 30, 36, 14, 26, 21, 27, 31, 12, 10, 17, 45, 11, 9, 15, 12, 14, 23, 37, 45, 26, 36, 33, 19, 13, 31, 16, 65, 32, 30, 30,
|
|
||||||
Texas Tech ,B12, 17-10, 25, 24.72, 24.50, 23.0, 9.82, 36, 21, 28, 32, 25, 27, 22, 41, 15, 34, 16, 8, 44, 29, 8, 8, 24, 30, 15, 23, 36, 23, 27, 20, 19, 13, 16, 21, 19, 21, 16, 32, 38, 27, 23, 49, 11, 48, 28, 22, 34, 12, 21, 22, 24, 18, 11, 21, 35, 28, 29, 32,
|
|
||||||
LSU ,SEC, 18-9, 26, 27.14, 26.52, 26.5, 5.13, 28, , 25, 27, 23, 23, 31, 31, 18, 19, 31, 26, 27, 22, 24, 26, 26, 21, 29, 29, 30, 22, 22, 31, 28, 35, 24, 25, 27, 13, 28, 21, 34, 26, 29, 44, 20, 29, 26, 28, 33, 19, 22, 26, 34, 28, 25, , 31, 29, 26, 29,
|
|
||||||
Connecticut ,BE, 15-7, 27, 27.54, 26.46, 28.0, 12.24, 46, , 26, 33, 11, 29, 20, 34, 28, 11, 30, 33, 33, 32, 15, 18, 32, 74, 9, 10, 43, 36, 35, 37, 21, 17, 31, 13, 28, 22, 30, 28, 28, 18, 16, 28, 47, 51, 32, 23, 27, 9, 20, 18, 21, 11, 23, , 33, 17, 27, 39,
|
|
||||||
St Bonaventure ,A10, 16-4, 28, 28.63, 27.83, 28.5, 10.67, 8, , 15, 23, 22, 20, 9, 21, 20, 35, 40, 35, 30, 52, 26, 30, 29, 16, 20, 30, 21, 35, 47, 30, 12, 32, 59, 30, 33, 26, 23, 30, 27, 29, 25, 22, 15, 12, 35, 40, 28, 26, 37, 29, 18, 29, 36, , 54, 31, 25, 26,
|
|
||||||
Oregon ,P12, 20-6, 29, 28.75, 28.27, 29.0, 9.31, 49, , 30, 22, 34, 31, 30, 18, 41, 31, 25, 25, 20, 21, 34, 29, 28, 20, 35, 32, 20, 24, 11, 24, 33, 14, 29, 29, 32, 29, 33, 15, 23, 38, 36, 16, 57, 23, 27, 31, 23, 36, 28, 42, 30, 52, 32, 25, 13, 27, 28, 18,
|
|
||||||
Wisconsin ,B10, 17-12, 30, 28.79, 27.56, 28.0, 14.71, 43, , 35, 39, 12, 32, 32, 47, 36, 38, 17, 29, 29, 28, 20, 10, 30, 29, 17, 18, 56, 28, 36, 35, 22, 15, 10, 23, 13, 11, 27, 46, 37, 16, 10, 71, 37, 80, 14, 13, 31, 19, 31, 14, 27, 12, 20, , 25, 23, 32, 38,
|
|
||||||
North Carolina ,ACC, 18-10, 31, 31.22, 30.35, 30.0, 11.18, 73, , 38, 37, 20, 28, 25, 35, 26, 25, 27, 22, 34, 35, 25, 27, 33, 49, 30, 19, 45, 33, 28, 38, 23, 20, 20, 32, 21, 20, 32, 26, 36, 17, 28, 62, 24, 50, 30, 20, 35, 7, 35, 23, 31, 31, 24, , 42, 30, 31, 35,
|
|
||||||
Georgia Tech ,ACC, 18-8, 32, 34.80, 34.38, 34.5, 7.38, 35, , 40, 38, 32, 33, 36, 33, 33, 9, 36, 42, 35, 38, 35, 33, 36, 51, 31, 31, 41, 38, 34, 28, 30, 41, 42, 42, 36, 27, 34, 16, 30, 32, 32, 31, 55, 44, 29, 33, 36, 19, 39, 36, 35, 30, 34, , 35, 36, 34, 28,
|
|
||||||
Clemson ,ACC, 16-7, 33, 38.74, 38.06, 39.0, 11.91, 38, , 39, 29, 52, 38, 55, 22, 54, 39, 32, 47, 24, 36, 39, 37, 31, 50, 69, 45, 24, 19, 42, 19, 38, 40, 60, 46, 41, 51, 41, 39, 21, 48, 42, 17, 64, 25, 33, 35, 22, 44, 33, 43, 42, 50, 39, , 30, 37, 33, 19,
|
|
||||||
Colgate ,PL, 14-1, 34, 39.42, 38.56, 38.0, 26.83, 40, , 9, 15, 46, 13, 33, 14, 8, 78, 33, 52, 16, 63, 44, 52, 12, 60, 24, 51, 13, 69, 60, 16, 51, 57, 83, 11, 80, 41, 9, 42, 5, 75, 84, 43, 9, 9, 36, 67, 9, 82, 29, 9, 3, 75, 71, , 88, 10, 10, 33,
|
|
||||||
VCU ,A10, 19-7, 35, 41.49, 41.27, 40.5, 11.23, 6, , 37, 36, 51, 37, 26, 28, 31, 51, 52, 51, 41, 46, 57, 45, 38, 15, 45, 53, 29, 40, 44, 39, 36, 61, 35, 52, 50, 56, 37, 43, 35, 42, 45, 33, 28, 17, 37, 57, 39, 49, 47, 50, 37, 40, 55, , 54, 44, 37, 34,
|
|
||||||
Oklahoma ,B12, 15-10, 36, 41.64, 40.25, 39.0, 12.14, 101, , 55, 43, 43, 39, 47, 51, 38, 45, 28, 30, 47, 40, 31, 25, 37, 37, 36, 38, 49, 32, 39, 32, 43, 31, 43, 39, 34, 38, 36, 55, 43, 40, 39, 55, 53, 72, 40, 39, 38, 39, 30, 40, 28, 36, 29, , 31, 41, 41, 42,
|
|
||||||
Florida ,SEC, 14-9, 37, 41.93, 41.08, 39.0, 9.39, 50, , 48, 45, 30, 34, 34, 50, 32, 52, 39, 32, 37, 54, 32, 32, 39, 68, 40, 34, 57, 31, 40, 47, 34, 33, 54, 33, 37, 39, 31, 47, 46, 37, 37, 53, 51, 71, 43, 36, 43, 44, 38, 30, 40, 34, 33, , 45, 39, 39, 49,
|
|
||||||
Missouri ,SEC, 16-9, 38, 41.97, 41.77, 43.0, 10.31, 10, , 49, 31, 54, 44, 51, 27, 56, 47, 37, 43, 28, 39, 50, 36, 34, 58, 53, 52, 34, 18, 46, 29, 54, 51, 51, 43, 39, 35, 47, 48, 31, 47, 51, 40, 48, 34, 39, 51, 32, 49, 27, 46, 43, 37, 51, , 48, 43, 35, 27,
|
|
||||||
Utah St ,MWC, 20-8, 39, 42.69, 42.19, 41.5, 9.51, 34, , 34, 47, 40, 36, 40, 48, 30, 40, 59, 31, 65, 30, 49, 39, 44, 23, 39, 41, 42, 49, 29, 52, 27, 38, 40, 40, 46, 61, 39, 37, 52, 39, 40, 42, 19, 49, 47, 50, 51, 26, 46, 56, 49, 38, 45, , 51, 45, 47, 48,
|
|
||||||
Rutgers ,B10, 15-11, 40, 43.16, 41.73, 36.5, 15.99, 107, , 53, 40, 33, 50, 42, 42, 72, 41, 29, 56, 32, 42, 46, 48, 35, 79, 52, 36, 54, 29, 38, 33, 47, 30, 25, 37, 29, 34, 38, 45, 33, 34, 34, 67, 73, 75, 34, 30, 29, 39, 34, 28, 36, 45, 35, , 29, 34, 36, 36,
|
|
||||||
Maryland ,B10, 16-13, 41, 43.61, 42.73, 39.5, 14.33, 88, , 57, 51, 29, 43, 41, 54, 47, 32, 34, 68, 45, 50, 43, 47, 40, 62, 37, 37, 63, 42, 41, 42, 42, 36, 19, 38, 30, 32, 35, 49, 39, 35, 31, 68, 75, 83, 31, 32, 37, 36, 32, 27, 38, 35, 37, , 27, 35, 40, 46,
|
|
||||||
Memphis ,AAC, 16-8, 42, 44.12, 43.62, 45.5, 9.52, 30, , 36, 57, 36, 35, 38, 53, 39, 30, 48, 24, 62, 48, 41, 51, 48, 53, 49, 33, 53, 62, 43, 53, 46, 52, 27, 36, 51, 42, 52, 36, 50, 36, 38, 48, 46, 60, 38, 43, 50, 26, 55, 45, 33, 27, 44, , 46, 38, 46, 47,
|
|
||||||
Arizona ,P12, 17-9, 43, 44.82, 44.48, 43.5, 6.50, 37, , 54, 54, 41, 42, 35, 49, 35, 54, 42, 40, 48, 37, 48, 35, 46, 47, 42, 42, 52, 50, 26, 55, 40, 42, 37, 34, 48, 44, 44, 52, 53, 43, 43, 54, 39, 55, 45, 48, 49, 49, 41, 47, 41, 39, 41, , 41, 40, 45, 51,
|
|
||||||
UCLA ,P12, 17-9, 44, 46.01, 45.12, 44.5, 6.98, 48, , 52, 42, 45, 46, 43, 39, 51, 76, 38, 38, 39, 45, 42, 49, 42, 44, 50, 43, 46, 46, 48, 46, 50, 45, 44, 35, 43, 49, 46, 50, 44, 49, 44, 51, 63, 56, 42, 44, 41, 49, 40, 49, 39, 51, 38, , 38, 33, 43, 41,
|
|
||||||
Syracuse ,ACC, 16-9, 45, 47.32, 46.67, 45.5, 8.53, 75, , 62, 52, 42, 41, 57, 45, 40, 29, 50, 49, 46, 55, 33, 50, 45, 59, 43, 40, 55, 44, 45, 49, 39, 43, 53, 54, 40, 43, 40, 38, 47, 41, 41, 57, 56, 57, 41, 34, 46, 36, 51, 39, 61, 48, 42, , 49, 46, 42, 54,
|
|
||||||
Virginia Tech ,ACC, 15-6, 46, 47.69, 46.98, 45.0, 13.13, 105, 25, 58, 44, 44, 45, 65, 36, 44, 53, 46, 45, 40, 44, 38, 62, 41, 67, 59, 49, 44, 37, 52, 41, 35, 44, 75, 76, 45, 45, 48, 57, 40, 50, 50, 27, 54, 43, 46, 46, 40, 44, 42, 41, 48, 47, 43, 24, 52, 50, 38, 44,
|
|
||||||
St Louis ,A10, 14-6, 47, 51.94, 51.48, 52.0, 11.03, 32, , 50, 62, 53, 52, 54, 61, 27, 46, 57, 37, 64, 49, 37, 46, 53, 55, 34, 55, 61, 65, 74, 65, 26, 37, 68, 47, 64, 46, 43, 53, 67, 44, 47, 47, 32, 64, 56, 52, 65, 49, 59, 44, 52, 46, 49, , 58, 56, 50, 61,
|
|
||||||
Duke ,ACC, 13-12, 48, 52.11, 50.77, 45.0, 24.02, 94, , 77, 73, 37, 40, 53, 71, 43, 24, 43, 27, 67, 61, 30, 41, 62, 133, 28, 35, 95, 58, 33, 69, 37, 34, 45, 45, 44, 33, 49, 41, 64, 33, 33, 92, 66, 115, 49, 29, 61, 12, 50, 37, 50, 32, 28, , 33, 47, 54, 75,
|
|
||||||
Drake ,MVC, 26-4, 49, 54.55, 54.19, 56.0, 16.62, 83, , 31, 30, 60, 64, 44, 37, 50, 75, 77, 63, 42, 18, 62, 40, 43, 48, 54, 65, 23, 45, 64, 45, 58, 83, 50, 57, 57, 57, 45, 51, 58, 55, 53, 21, 43, 20, 44, 70, 62, 69, 64, 67, 67, 82, 75, , 80, 65, 49, 37,
|
|
||||||
Louisville ,ACC, 13-7, 50, 55.43, 54.83, 53.0, 14.40, 67, , 69, 49, 65, 57, 60, 40, 82, 43, 47, 44, 43, 47, 60, 59, 50, 96, 71, 61, 51, 41, 31, 44, 56, 53, 87, 59, 47, 66, 56, 40, 41, 61, 54, 52, 88, 52, 53, 41, 42, 58, 61, 57, 76, 60, 46, , 19, 52, 48, 45,
|
|
||||||
Wichita St ,AAC, 16-5, 51, 57.80, 57.15, 62.5, 22.62, 77, , 68, 35, 69, 47, 86, 24, 67, 49, 45, 58, 38, 43, 97, 65, 47, 63, 91, 68, 26, 43, 32, 25, 102, 64, 98, 84, 58, 79, 72, 34, 24, 73, 74, 20, 82, 21, 58, 66, 30, 69, 60, 69, 62, 68, 80, , 23, 67, 44, 21,
|
|
||||||
Boise St ,MWC, 18-8, 52, 57.84, 57.33, 57.0, 11.51, 45, , 44, 50, 71, 62, 45, 56, 57, 82, 67, 48, 69, 41, 54, 42, 51, 78, 62, 62, 50, 51, 51, 63, 44, 58, 55, 50, 54, 75, 50, 89, 65, 59, 60, 46, 26, 46, 59, 58, 59, 69, 49, 66, 60, 70, 57, , 73, 57, 56, 56,
|
|
||||||
Mississippi ,SEC, 16-11, 53, 58.14, 56.83, 54.0, 16.23, 121, , 66, 67, 50, 48, 64, 67, 42, 42, 54, 39, 61, 69, 40, 43, 60, 54, 47, 47, 74, 53, 63, 67, 41, 47, 47, 53, 55, 37, 53, 61, 66, 51, 48, 105, 67, 97, 50, 55, 64, 39, 53, 53, 55, 43, 52, , 77, 55, 57, 67,
|
|
||||||
Penn St ,B10, 11-14, 54, 59.54, 57.94, 51.0, 27.48, 128, , 78, 65, 38, 58, 48, 78, 64, 56, 49, 79, 51, 85, 45, 38, 58, 138, 33, 39, 101, 120, 55, 58, 52, 39, 33, 41, 35, 40, 42, 85, 54, 31, 35, 87, 80, 144, 51, 42, 53, 39, 43, 31, 44, 44, 48, , 44, 42, 51, 64,
|
|
||||||
Michigan St ,B10, 15-12, 55, 60.86, 59.52, 56.5, 25.07, 135, , 81, 53, 56, 61, 77, 57, 105, 33, 35, 77, 36, 57, 68, 57, 55, 134, 60, 54, 65, 39, 37, 43, 83, 49, 41, 72, 38, 59, 70, 31, 42, 56, 56, 65, 138, 101, 48, 38, 47, 44, 45, 59, 59, 58, 53, , 27, 58, 58, 52,
|
|
||||||
SMU ,AAC, 11-5, 56, 61.57, 60.67, 58.0, 12.52, 33, , 59, 58, 62, 60, 69, 58, 49, 70, 56, 34, 59, 66, 55, 54, 54, 84, 81, 57, 60, 64, 58, 56, 74, 54, 107, 49, 66, 68, 65, 73, 56, 57, 59, 91, 40, 59, 72, 54, 56, 69, 63, 58, 72, 57, 56, , 58, 53, 55, 55,
|
|
||||||
Colorado St ,MWC, 18-6, 57, 61.61, 61.08, 61.0, 16.60, 84, , 47, 41, 61, 55, 71, 43, 53, 83, 72, 65, 55, 34, 73, 74, 52, 98, 98, 66, 39, 48, 54, 50, 49, 76, 77, 60, 56, 87, 51, 66, 49, 65, 63, 26, 36, 32, 61, 74, 48, 69, 56, 75, 86, 81, 70, , 69, 62, 53, 43,
|
|
||||||
Georgetown ,BE, 13-12, 58, 61.65, 61.04, 60.5, 17.22, 70, , 99, 60, 48, 49, 90, 63, 65, 23, 58, 92, 56, 91, 65, 66, 63, 110, 44, 48, 77, 52, 73, 59, 65, 69, 62, 62, 53, 48, 64, 33, 48, 54, 55, 82, 70, 86, 62, 63, 52, 19, 48, 55, 56, 41, 61, , 58, 51, 59, 62,
|
|
||||||
Seton Hall ,BE, 14-13, 58, 61.65, 60.58, 56.0, 16.84, 87, , 76, 64, 47, 63, 56, 68, 77, 55, 53, 53, 57, 68, 52, 56, 66, 108, 46, 50, 85, 61, 56, 66, 62, 46, 39, 44, 52, 67, 57, 71, 59, 52, 52, 108, 89, 113, 55, 47, 58, 49, 52, 52, 47, 49, 50, , 38, 48, 61, 72,
|
|
||||||
Xavier ,BE, 13-8, 60, 63.91, 62.54, 59.0, 15.42, 129, , 93, 59, 58, 71, 73, 59, 45, 62, 55, 59, 60, 56, 58, 69, 59, 122, 57, 59, 67, 57, 62, 57, 59, 56, 71, 65, 62, 62, 61, 79, 55, 66, 61, 59, 78, 73, 65, 56, 55, 44, 54, 54, 66, 56, 54, , 46, 61, 52, 59,
|
|
||||||
Indiana ,B10, 12-15, 61, 65.61, 63.96, 57.5, 26.82, 133, , 89, 70, 39, 76, 66, 82, 73, 71, 44, 73, 54, 79, 53, 44, 61, 157, 56, 46, 104, 113, 68, 61, 57, 50, 30, 51, 42, 47, 63, 90, 60, 45, 46, 76, 79, 148, 54, 45, 57, 58, 44, 38, 46, 53, 40, , 49, 49, 60, 68,
|
|
||||||
Winthrop ,BSo, 23-1, 62, 66.84, 66.50, 70.5, 28.34, 13, , 24, 34, 90, 65, 37, 52, 52, 93, 90, 80, 49, 31, 86, 68, 49, 39, 79, 101, 12, 47, 61, 40, 82, 96, 99, 71, 87, 50, 55, 44, 84, 87, 91, 12, 33, 7, 100, 87, 91, 82, 88, 104, 53, 98, 96, , 119, 83, 70, 57,
|
|
||||||
St Mary's CA ,WCC, 14-9, 63, 68.36, 68.06, 69.0, 19.36, 7, , 61, 56, 81, 59, 63, 46, 74, 72, 64, 70, 72, 75, 92, 81, 57, 119, 96, 78, 47, 63, 65, 51, 95, 59, 96, 75, 76, 91, 62, 58, 51, 83, 75, 60, 34, 37, 75, 68, 54, 82, 82, 81, 92, 72, 82, , 38, 64, 62, 40,
|
|
||||||
St John's ,BE, 16-11, 64, 68.71, 67.77, 64.5, 15.32, 115, , 85, 63, 57, 69, 83, 66, 90, 48, 60, 84, 58, 67, 63, 67, 67, 99, 51, 58, 78, 54, 72, 64, 79, 65, 46, 69, 65, 70, 69, 54, 57, 58, 67, 98, 109, 100, 57, 61, 63, 49, 58, 63, 65, 59, 62, , 57, 63, 64, 69,
|
|
||||||
Davidson ,A10, 13-8, 65, 70.71, 70.19, 71.0, 13.55, 93, , 72, 88, 59, 53, 58, 88, 46, 60, 76, 55, 87, 82, 47, 58, 74, 81, 48, 56, 88, 72, 81, 86, 48, 55, 73, 64, 72, 86, 58, 78, 87, 68, 57, 78, 68, 98, 68, 72, 79, 58, 74, 61, 68, 62, 60, , 86, 70, 67, 90,
|
|
||||||
Louisiana Tech ,CUSA, 21-7, 66, 70.81, 70.81, 74.0, 17.10, 17, , 46, 61, 74, 56, 72, 60, 59, 84, 88, 72, 76, 58, 75, 91, 70, 19, 65, 79, 48, 74, 57, 72, 68, 80, 67, 74, 86, 100, 76, 68, 82, 81, 82, 58, 44, 35, 70, 92, 84, 82, 77, 87, 81, 83, 84, , 88, 79, 72, 63,
|
|
||||||
Richmond ,A10, 13-8, 67, 71.51, 71.25, 70.0, 13.92, 27, , 63, 75, 68, 80, 39, 72, 60, 102, 74, 50, 79, 70, 59, 75, 75, 72, 63, 70, 82, 56, 79, 78, 60, 66, 92, 61, 78, 107, 68, 93, 79, 67, 65, 84, 62, 78, 69, 65, 76, 96, 79, 68, 58, 61, 65, , 70, 73, 68, 78,
|
|
||||||
UC Santa Barbara ,BWC, 22-4, 68, 71.79, 65.79, 67.0, 19.08, 52, , 33, 46, 86, 68, 50, 44, 61, 100, 78, 85, 52, 65, 61, 95, 56, 40, 75, 85, 38, 55, 71, 62, , 70, 97, 48, 75, 63, 54, 67, 61, 70, 69, 25, 60, 22, 67, 94, 67, 82, 68, 92, 70, 76, 90, , 107, 54, 65, 50,
|
|
||||||
Auburn ,SEC, 13-14, 69, 72.30, 71.23, 67.5, 15.68, 114, , 84, 79, 64, 54, 68, 81, 58, 66, 65, 57, 74, 89, 70, 61, 71, 100, 64, 60, 93, 101, 69, 71, 71, 84, 57, 63, 59, 53, 66, 81, 71, 60, 64, 113, 72, 121, 64, 62, 68, 58, 67, 62, 69, 67, 64, , 53, 71, 66, 74,
|
|
||||||
Minnesota ,B10, 14-15, 70, 74.09, 73.15, 67.0, 22.83, 138, , 97, 71, 55, 90, 93, 76, 101, 77, 51, 96, 53, 72, 76, 73, 64, 115, 73, 63, 90, 119, 67, 60, 73, 67, 32, 67, 49, 55, 77, 121, 63, 53, 58, 74, 99, 135, 52, 59, 60, 82, 57, 51, 54, 64, 58, , 63, 60, 63, 65,
|
|
||||||
WKU ,CUSA, 20-7, 71, 74.33, 74.12, 75.0, 17.00, 76, , 67, 55, 92, 81, 70, 55, 84, 74, 69, 61, 63, 59, 93, 98, 65, 42, 88, 89, 40, 59, 59, 54, 87, 72, 72, 100, 83, 96, 81, 56, 68, 96, 94, 37, 76, 38, 77, 88, 69, 96, 69, 99, 77, 88, 88, , 78, 91, 73, 53,
|
|
||||||
Kentucky ,SEC, 9-16, 72, 74.72, 72.83, 60.5, 34.07, 81, , 91, 105, 49, 51, 61, 127, 55, 50, 61, 41, 83, 110, 56, 55, 83, 183, 38, 44, 147, 107, 82, 93, 53, 48, 52, 55, 60, 52, 60, 87, 91, 46, 49, 150, 71, 168, 79, 49, 87, 39, 62, 48, 57, 42, 47, , 63, 59, 76, 114,
|
|
||||||
Toledo ,MAC, 21-8, 73, 75.07, 74.69, 76.0, 15.01, 55, , 45, 76, 70, 78, 59, 73, 63, 88, 104, 87, 84, 53, 71, 86, 76, 77, 77, 75, 66, 68, 85, 95, 67, 97, 48, 66, 81, 72, 67, 88, 104, 64, 62, 89, 41, 62, 66, 77, 98, 58, 84, 78, 51, 71, 81, , 102, 82, 77, 86,
|
|
||||||
North Texas ,CUSA, 17-9, 74, 75.21, 75.27, 77.0, 13.51, 58, , 60, 74, 67, 66, 62, 85, 62, 65, 85, 62, 88, 78, 69, 77, 77, 25, 72, 77, 71, 75, 78, 85, 55, 91, 89, 73, 84, 94, 59, 75, 94, 77, 71, 86, 38, 68, 89, 84, 88, 82, 75, 83, 74, 79, 77, , 98, 78, 80, 77,
|
|
||||||
NC State ,ACC, 13-10, 75, 76.76, 75.58, 74.5, 16.59, 111, , 106, 87, 77, 85, 91, 94, 85, 58, 71, 75, 68, 74, 51, 53, 80, 102, 61, 72, 102, 60, 66, 77, 64, 71, 81, 83, 67, 65, 73, 63, 77, 71, 73, 85, 87, 136, 71, 53, 75, 58, 76, 64, 95, 54, 59, , 65, 76, 75, 92,
|
|
||||||
Oregon St ,P12, 17-12, 76, 77.09, 76.15, 74.5, 17.95, 143, , 92, 66, 78, 67, 94, 64, 92, 44, 73, 90, 66, 90, 87, 96, 69, 76, 70, 80, 73, 66, 70, 68, 91, 85, 64, 82, 63, 54, 91, 35, 62, 89, 85, 94, 122, 88, 60, 82, 66, 49, 70, 79, 79, 85, 79, , 65, 69, 71, 60,
|
|
||||||
Wright St ,HL, 18-6, 77, 78.92, 78.52, 75.5, 26.19, 23, , 42, 107, 96, 72, 49, 92, 48, 109, 123, 74, 137, 62, 64, 76, 90, 43, 58, 76, 75, 92, 87, 117, 72, 77, 63, 56, 111, 58, 71, 103, 135, 63, 66, 72, 16, 54, 85, 81, 109, 69, 99, 77, 45, 78, 74, , 107, 75, 82, 112,
|
|
||||||
Dayton ,A10, 14-9, 78, 79.15, 79.15, 81.0, 9.63, 74, , 82, 81, 82, 73, 67, 77, 80, 87, 82, 76, 78, 73, 82, 92, 89, 82, 86, 81, 84, 71, 50, 80, 81, 75, 84, 95, 74, 78, 80, 83, 83, 84, 79, 80, 91, 82, 80, 71, 77, 58, 89, 82, 63, 84, 78, , 42, 88, 81, 85,
|
|
||||||
Mississippi St ,SEC, 15-14, 79, 80.28, 79.48, 78.0, 14.91, 112, , 95, 92, 72, 74, 79, 95, 86, 63, 75, 60, 77, 83, 66, 80, 82, 87, 68, 71, 105, 93, 76, 83, 63, 74, 49, 80, 71, 69, 82, 84, 81, 78, 77, 122, 81, 129, 63, 73, 82, 58, 78, 72, 91, 66, 73, , 74, 80, 78, 91,
|
|
||||||
Providence ,BE, 13-13, 80, 80.77, 79.60, 75.5, 19.90, 119, , 114, 80, 66, 87, 102, 91, 108, 61, 63, 82, 70, 80, 67, 78, 79, 128, 74, 64, 109, 89, 83, 70, 85, 60, 58, 79, 68, 74, 85, 72, 69, 76, 76, 106, 124, 140, 76, 60, 70, 58, 65, 65, 75, 55, 63, , 58, 74, 74, 87,
|
|
||||||
Belmont ,OVC, 26-4, 81, 81.86, 81.92, 87.5, 23.61, 68, , 41, 68, 102, 84, 84, 62, 70, 111, 105, 67, 81, 33, 91, 90, 72, 33, 105, 97, 33, 79, 49, 73, 88, 87, 85, 94, 102, 90, 90, 62, 100, 100, 104, 36, 45, 27, 86, 105, 100, 96, 90, 112, 102, 105, 98, , 107, 105, 87, 70,
|
|
||||||
Stanford ,P12, 14-13, 82, 83.17, 82.15, 79.5, 15.46, 106, , 90, 77, 75, 95, 78, 83, 103, 106, 66, 71, 71, 81, 84, 60, 81, 88, 84, 82, 96, 77, 80, 79, 86, 62, 65, 70, 70, 80, 78, 101, 76, 82, 83, 97, 125, 125, 73, 75, 72, 129, 72, 76, 83, 74, 68, , 71, 66, 79, 81,
|
|
||||||
Utah ,P12, 12-13, 83, 83.84, 82.56, 81.5, 19.80, 122, , 104, 99, 63, 83, 85, 114, 81, 86, 70, 66, 85, 103, 77, 63, 87, 103, 55, 67, 130, 99, 95, 94, 69, 68, 61, 68, 73, 60, 89, 94, 89, 72, 72, 109, 84, 153, 82, 78, 86, 58, 73, 70, 71, 63, 66, , 78, 68, 84, 102,
|
|
||||||
Abilene Chr ,SLC, 23-4, 84, 83.88, 83.35, 83.0, 24.76, 66, , 43, 72, 127, 88, 52, 93, 68, 85, 124, 86, 80, 60, 81, 71, 73, 22, 67, 102, 64, 70, 88, 104, 77, 117, 120, 58, 106, 77, 74, 77, 118, 85, 86, 38, 61, 66, 105, 98, 112, 49, 108, 89, 64, 97, 93, , 151, 72, 93, 97,
|
|
||||||
Ohio ,MAC, 16-7, 85, 83.88, 84.00, 82.5, 17.01, 29, , 73, 84, 88, 79, 81, 79, 76, 64, 110, 106, 90, 87, 98, 64, 95, 56, 76, 83, 68, 80, 97, 105, 75, 81, 104, 101, 82, 73, 87, 65, 101, 74, 78, 63, 49, 61, 96, 102, 105, 69, 94, 95, 78, 73, 101, , 107, 107, 89, 93,
|
|
||||||
Marquette ,BE, 13-14, 86, 84.94, 83.77, 78.5, 21.88, 140, , 120, 86, 73, 89, 100, 100, 109, 59, 62, 81, 73, 86, 78, 70, 85, 146, 66, 69, 116, 95, 86, 76, 89, 63, 56, 86, 69, 71, 95, 74, 73, 79, 80, 104, 121, 147, 78, 64, 71, 69, 66, 71, 85, 65, 67, , 58, 77, 83, 98,
|
|
||||||
Marshall ,CUSA, 15-7, 87, 85.21, 85.35, 88.0, 18.98, 21, , 56, 90, 87, 92, 46, 87, 78, 104, 92, 64, 104, 77, 85, 79, 88, 46, 97, 90, 69, 82, 93, 92, 84, 86, 86, 81, 100, 99, 88, 104, 107, 86, 90, 61, 42, 63, 93, 96, 103, 115, 83, 93, 73, 106, 85, , 120, 96, 90, 89,
|
|
||||||
Buffalo ,MAC, 16-8, 88, 85.62, 85.40, 82.5, 16.87, 41, , 64, 106, 79, 75, 76, 106, 71, 68, 111, 93, 109, 88, 90, 87, 99, 61, 80, 73, 89, 97, 103, 118, 66, 82, 74, 78, 90, 81, 79, 70, 116, 62, 68, 96, 59, 85, 91, 80, 117, 82, 85, 80, 82, 69, 83, , 98, 89, 95, 117,
|
|
||||||
UAB ,CUSA, 22-7, 89, 86.12, 85.79, 89.0, 17.08, 71, , 65, 82, 94, 82, 96, 74, 69, 98, 98, 78, 101, 64, 83, 100, 78, 32, 95, 94, 62, 83, 94, 91, 61, 89, 76, 96, 98, 133, 83, 97, 102, 98, 98, 66, 58, 58, 81, 99, 95, 82, 81, 96, 89, 90, 89, , 123, 100, 85, 76,
|
|
||||||
Nevada ,MWC, 16-10, 90, 89.36, 89.04, 88.0, 10.53, 116, , 80, 83, 93, 77, 87, 80, 79, 57, 95, 94, 102, 94, 107, 105, 91, 86, 92, 87, 87, 78, 84, 87, 94, 100, 88, 92, 77, 97, 96, 76, 80, 88, 87, 114, 92, 89, 83, 91, 83, 69, 96, 101, 87, 94, 94, , 81, 86, 92, 79,
|
|
||||||
Furman ,SC, 16-9, 91, 92.92, 92.65, 93.5, 21.03, 61, , 70, 102, 84, 86, 88, 117, 66, 144, 107, 54, 117, 97, 94, 88, 105, 34, 89, 93, 110, 87, 89, 119, 70, 78, 102, 87, 101, 103, 75, 114, 129, 94, 92, 128, 50, 106, 97, 83, 114, 58, 80, 88, 80, 96, 87, , 107, 99, 99, 107,
|
|
||||||
Missouri St ,MVC, 17-7, 92, 94.60, 94.42, 95.0, 14.13, 78, , 79, 89, 112, 94, 74, 86, 89, 91, 116, 108, 93, 71, 120, 85, 94, 57, 108, 92, 79, 88, 96, 99, 116, 99, 103, 106, 96, 85, 97, 96, 103, 90, 88, 75, 74, 70, 84, 100, 102, 82, 103, 102, 116, 108, 111, , 116, 110, 96, 83,
|
|
||||||
Liberty ,ASUN, 23-5, 93, 94.67, 94.35, 97.0, 16.83, 82, , 74, 93, 107, 100, 95, 96, 95, 97, 102, 104, 96, 51, 72, 72, 86, 70, 90, 113, 76, 81, 77, 97, 96, 109, 111, 98, 123, 135, 86, 60, 108, 106, 97, 50, 97, 74, 98, 109, 110, 96, 101, 108, 99, 99, 109, , 98, 109, 102, 100,
|
|
||||||
Georgia ,SEC, 14-12, 94, 94.72, 93.65, 92.0, 15.94, 150, , 118, 91, 101, 91, 111, 84, 88, 73, 81, 97, 75, 96, 102, 99, 92, 113, 94, 91, 94, 86, 104, 74, 99, 93, 82, 109, 85, 76, 98, 95, 75, 91, 93, 110, 141, 124, 74, 89, 74, 106, 87, 85, 97, 87, 92, , 81, 104, 86, 80,
|
|
||||||
UNC Greensboro ,SC, 21-8, 95, 95.67, 86.87, 89.0, 33.96, 95, , 51, 69, 91, 70, 75, 65, 83, 90, 100, 69, 98, 76, 89, 110, 93, 292, 102, 96, 59, 76, 53, 89, , 92, 79, 88, 103, 108, 84, 59, 95, 99, 100, 116, 65, 45, 87, 86, 97, 69, 97, 113, 84, 113, 102, , 94, 95, 88, 71,
|
|
||||||
Notre Dame ,ACC, 11-15, 96, 100.45, 98.52, 92.5, 27.81, 148, , 131, 116, 80, 98, 98, 131, 112, 89, 80, 83, 86, 107, 79, 93, 102, 210, 82, 84, 160, 121, 100, 103, 90, 73, 66, 99, 79, 92, 93, 98, 92, 80, 81, 124, 140, 170, 88, 76, 90, 96, 86, 74, 98, 77, 72, , 75, 87, 98, 118,
|
|
||||||
Northwestern ,B10, 9-15, 97, 102.52, 100.58, 91.0, 36.81, 216, , 142, 117, 76, 111, 106, 141, 134, 96, 68, 118, 82, 130, 80, 84, 96, 177, 83, 74, 161, 124, 127, 88, 78, 79, 69, 93, 61, 64, 92, 143, 85, 69, 70, 143, 133, 218, 90, 69, 85, 69, 71, 60, 94, 80, 69, , 98, 84, 94, 115,
|
|
||||||
UCF ,AAC, 11-12, 98, 104.04, 102.75, 100.0, 17.45, 92, , 122, 96, 105, 99, 114, 98, 116, 81, 87, 95, 94, 113, 114, 103, 100, 175, 118, 99, 118, 125, 112, 84, 136, 98, 91, 107, 92, 101, 103, 92, 78, 103, 103, 129, 137, 130, 99, 95, 80, 96, 95, 91, 101, 100, 103, , 83, 101, 97, 84,
|
|
||||||
Washington St ,P12, 14-13, 99, 104.67, 104.38, 103.0, 11.84, 136, , 129, 109, 99, 109, 103, 112, 106, 103, 94, 109, 100, 108, 118, 101, 101, 117, 107, 98, 120, 116, 116, 106, 97, 110, 70, 102, 93, 88, 101, 112, 99, 107, 107, 120, 102, 133, 95, 104, 94, 96, 93, 97, 104, 92, 100, , 86, 90, 101, 106,
|
|
||||||
Loy Marymount ,WCC, 13-9, 100, 104.92, 99.72, 101.0, 16.12, 123, , 109, 78, 98, 97, 105, 70, 97, 105, 93, 130, 91, 123, 100, 111, 84, , 109, 108, 80, 85, 119, 75, 113, 102, 129, 103, 99, 113, 99, 106, 72, 104, 102, 73, 100, 81, 101, 118, 73, 115, 100, 106, 112, 101, 117, , 116, 81, 91, 66,
|
|
||||||
Navy ,PL, 15-3, 101, 105.18, 104.88, 107.0, 42.15, 79, , 75, 48, 120, 93, 115, 38, 130, 139, 89, 155, 50, 101, 145, 145, 68, 85, 113, 144, 37, 67, 115, 48, 133, 142, 167, 110, 148, 175, 94, 107, 32, 157, 157, 41, 128, 36, 94, 145, 44, 172, 91, 107, 100, 138, 169, , 143, 85, 69, 58,
|
|
||||||
E Washington ,BSC, 16-7, 102, 106.43, 106.06, 106.0, 18.69, 64, , 71, 118, 104, 107, 80, 125, 115, 101, 136, 105, 125, 95, 103, 82, 119, 92, 87, 106, 111, 102, 90, 147, 105, 106, 127, 77, 109, 106, 114, 86, 147, 108, 110, 95, 77, 90, 123, 110, 141, 82, 114, 129, 96, 107, 106, , 120, 94, 122, 116,
|
|
||||||
Cincinnati ,AAC, 12-11, 103, 108.06, 106.96, 110.0, 25.37, 185, , 140, 95, 117, 96, 130, 90, 126, 69, 79, 88, 89, 93, 125, 120, 97, 143, 136, 103, 106, 73, 75, 81, 160, 90, 118, 122, 97, 110, 124, 64, 74, 115, 116, 127, 160, 122, 102, 93, 81, 115, 116, 110, 120, 115, 114, , 65, 112, 103, 82,
|
|
||||||
Pittsburgh ,ACC, 10-12, 104, 108.19, 106.52, 100.0, 26.50, 208, , 136, 129, 83, 114, 112, 140, 96, 99, 91, 99, 106, 112, 88, 89, 109, 145, 93, 86, 156, 130, 122, 110, 80, 94, 90, 104, 89, 89, 100, 141, 106, 93, 89, 147, 127, 171, 92, 79, 104, 106, 92, 73, 88, 93, 76, , 85, 102, 100, 131,
|
|
||||||
UC Irvine ,BWC, 18-9, 105, 109.16, 109.12, 110.0, 17.61, 85, , 86, 98, 111, 105, 101, 109, 110, 161, 113, 111, 107, 102, 99, 146, 106, 41, 114, 119, 122, 96, 102, 111, 110, 112, 113, 90, 117, 84, 104, 129, 109, 112, 109, 111, 86, 112, 104, 122, 106, 115, 106, 134, 110, 112, 123, , 142, 93, 112, 108,
|
|
||||||
Grand Canyon ,WAC, 17-6, 106, 111.08, 110.27, 111.5, 24.31, 65, , 87, 130, 113, 103, 82, 126, 75, 114, 146, 117, 115, 117, 74, 97, 108, 118, 104, 112, 150, 112, 146, 155, 76, 116, 135, 89, 118, 82, 107, 127, 159, 111, 108, 69, 95, 91, 111, 127, 137, 69, 110, 114, 105, 102, 112, , 177, 92, 111, 119,
|
|
||||||
Pepperdine ,WCC, 12-12, 107, 111.80, 110.69, 110.0, 12.79, 99, , 119, 111, 108, 110, 108, 108, 94, 108, 96, 102, 123, 163, 113, 94, 104, 116, 103, 109, 128, 114, 131, 101, 122, 104, 124, 113, 110, 126, 110, 119, 90, 109, 112, 121, 117, 127, 103, 115, 93, 129, 113, 117, 108, 91, 121, , 102, 106, 106, 96,
|
|
||||||
Arizona St ,P12, 11-14, 108, 112.13, 111.31, 107.5, 21.43, 145, , 151, 122, 103, 112, 128, 121, 120, 94, 84, 89, 103, 132, 109, 107, 110, 174, 101, 104, 144, 170, 99, 109, 108, 95, 95, 115, 91, 104, 118, 80, 97, 110, 113, 126, 134, 157, 106, 90, 96, 115, 107, 100, 118, 104, 86, , 72, 103, 105, 113,
|
|
||||||
Akron ,MAC, 15-8, 109, 113.53, 113.10, 116.0, 14.52, 126, , 96, 119, 122, 115, 92, 123, 102, 110, 139, 125, 116, 100, 123, 123, 122, 89, 111, 111, 117, 103, 105, 136, 104, 122, 116, 121, 104, 116, 106, 100, 148, 97, 99, 107, 83, 102, 120, 107, 145, 96, 123, 121, 93, 118, 120, , 88, 130, 121, 128,
|
|
||||||
Morehead St ,OVC, 23-7, 110, 114.39, 114.52, 117.0, 30.38, 60, , 83, 85, 137, 108, 110, 75, 121, 116, 140, 147, 99, 98, 154, 159, 103, 66, 137, 131, 58, 84, 118, 90, 123, 154, 130, 126, 140, 111, 121, 69, 105, 128, 127, 64, 112, 41, 107, 151, 113, 82, 144, 155, 140, 128, 162, , 164, 124, 114, 88,
|
|
||||||
Kent ,MAC, 15-8, 111, 114.76, 114.19, 115.0, 14.35, 91, , 88, 112, 132, 122, 97, 115, 93, 135, 135, 124, 111, 92, 122, 121, 116, 95, 138, 117, 99, 100, 108, 128, 107, 147, 105, 118, 112, 121, 112, 111, 128, 105, 106, 103, 90, 87, 115, 114, 140, 129, 119, 125, 107, 125, 124, , 112, 122, 115, 125,
|
|
||||||
Georgia St ,SBC, 16-6, 112, 117.18, 116.75, 119.5, 29.88, 59, , 105, 101, 141, 119, 116, 69, 140, 123, 121, 107, 114, 109, 111, 136, 98, 64, 172, 143, 70, 110, 91, 98, 142, 132, 190, 133, 138, 137, 128, 99, 98, 152, 152, 56, 106, 47, 141, 129, 107, 115, 122, 165, 129, 149, 129, , 120, 125, 110, 73,
|
|
||||||
Wofford ,SC, 15-9, 113, 117.36, 117.19, 119.0, 12.25, 124, , 102, 103, 129, 102, 144, 103, 104, 120, 128, 103, 118, 126, 110, 130, 112, 83, 129, 127, 107, 111, 107, 113, 111, 130, 125, 117, 128, 114, 111, 113, 121, 123, 123, 130, 104, 96, 121, 124, 120, 106, 120, 132, 109, 140, 127, , 138, 121, 108, 105,
|
|
||||||
S Dakota St ,SL, 16-7, 114, 118.99, 118.69, 117.5, 15.69, 102, , 123, 123, 126, 136, 127, 129, 119, 131, 134, 132, 108, 84, 104, 113, 125, 104, 106, 116, 114, 105, 135, 152, 118, 103, 112, 108, 113, 124, 123, 110, 153, 116, 117, 83, 115, 93, 143, 117, 147, 82, 126, 126, 117, 127, 107, , 130, 117, 127, 130,
|
|
||||||
San Francisco ,WCC, 11-14, 115, 119.81, 118.46, 111.5, 23.13, 149, , 133, 146, 89, 118, 123, 156, 111, 121, 106, 98, 146, 124, 105, 102, 124, 126, 99, 105, 164, 169, 121, 144, 106, 101, 109, 97, 114, 105, 105, 163, 131, 101, 101, 141, 101, 199, 112, 111, 119, 96, 102, 103, 122, 103, 99, , 102, 98, 116, 138,
|
|
||||||
UC Riverside ,BWC, 14-8, 116, 120.62, 120.15, 120.5, 20.29, 104, , 101, 127, 110, 127, 104, 132, 87, 162, 127, 140, 133, 105, 108, 119, 114, 71, 116, 124, 123, 127, 170, 129, 101, 126, 126, 85, 143, 112, 109, 161, 125, 114, 111, 102, 93, 114, 122, 154, 116, 129, 111, 127, 114, 111, 128, , 171, 97, 124, 123,
|
|
||||||
Butler ,BE, 10-15, 117, 120.86, 118.79, 115.0, 38.65, 272, , 178, 120, 100, 117, 145, 135, 184, 80, 83, 115, 95, 129, 119, 116, 115, 214, 110, 95, 151, 146, 101, 96, 127, 88, 94, 130, 88, 109, 122, 82, 88, 118, 115, 133, 207, 182, 114, 85, 92, 106, 98, 98, 127, 117, 95, , 54, 115, 107, 121,
|
|
||||||
Southern Utah ,BSC, 20-4, 118, 124.06, 123.54, 130.0, 29.26, 109, , 98, 94, 148, 134, 107, 99, 139, 137, 151, 139, 92, 106, 126, 155, 111, 73, 132, 139, 81, 91, 92, 122, 131, 131, 172, 114, 127, 211, 129, 123, 126, 139, 140, 45, 131, 65, 133, 150, 139, 82, 132, 158, 135, 158, 148, , 151, 118, 129, 94,
|
|
||||||
Indiana St ,MVC, 15-10, 119, 124.13, 123.04, 120.5, 15.79, 98, , 126, 110, 138, 121, 131, 116, 127, 117, 131, 138, 110, 118, 159, 126, 120, 188, 131, 118, 113, 90, 126, 116, 151, 128, 110, 143, 121, 118, 120, 102, 119, 120, 118, 139, 120, 108, 113, 123, 118, 129, 133, 131, 137, 122, 126, , 102, 135, 120, 110,
|
|
||||||
Vanderbilt ,SEC, 9-16, 120, 124.20, 122.92, 112.5, 36.35, 209, , 148, 155, 85, 104, 119, 176, 91, 79, 109, 120, 128, 158, 101, 109, 131, 185, 78, 88, 191, 184, 158, 140, 93, 111, 93, 112, 95, 83, 102, 139, 139, 95, 96, 174, 143, 224, 109, 106, 130, 69, 105, 86, 121, 89, 97, , 134, 113, 125, 164,
|
|
||||||
Rhode Island ,A10, 10-15, 121, 124.33, 123.15, 117.0, 28.95, 139, , 134, 154, 95, 123, 99, 172, 99, 153, 103, 91, 136, 137, 96, 106, 138, 168, 115, 107, 181, 165, 125, 150, 98, 113, 78, 105, 105, 123, 108, 166, 154, 102, 105, 159, 119, 207, 108, 103, 136, 129, 104, 90, 90, 110, 91, , 91, 119, 128, 169,
|
|
||||||
Massachusetts ,A10, 8-7, 122, 124.96, 124.06, 122.5, 22.04, 137, , 128, 136, 106, 124, 122, 150, 98, 112, 117, 114, 132, 131, 112, 83, 129, 166, 85, 110, 154, 143, 144, 134, 92, 105, 175, 111, 119, 102, 113, 137, 136, 113, 114, 189, 130, 162, 125, 116, 123, 129, 121, 94, 132, 95, 110, , 128, 120, 113, 156,
|
|
||||||
Mercer ,SC, 18-11, 123, 125.77, 125.81, 126.0, 13.51, 120, , 116, 115, 128, 116, 109, 119, 122, 125, 138, 122, 131, 128, 134, 147, 128, 80, 147, 136, 115, 109, 129, 125, 114, 145, 119, 123, 137, 141, 117, 124, 134, 127, 128, 156, 105, 117, 118, 128, 133, 106, 129, 136, 111, 135, 143, , 149, 127, 123, 111,
|
|
||||||
TCU ,B12, 12-14, 124, 125.96, 125.10, 120.5, 25.68, 146, , 175, 114, 135, 140, 163, 107, 170, 118, 86, 121, 105, 120, 133, 108, 113, 163, 163, 129, 121, 131, 113, 82, 145, 107, 114, 156, 108, 136, 141, 128, 86, 138, 137, 115, 205, 151, 110, 108, 89, 152, 112, 120, 128, 119, 115, , 76, 126, 109, 99,
|
|
||||||
Weber St ,BSC, 17-6, 125, 126.35, 126.62, 127.5, 26.21, 169, , 100, 124, 131, 128, 89, 136, 107, 175, 164, 127, 124, 111, 116, 122, 130, 38, 128, 126, 131, 108, 128, 160, 109, 144, 133, 91, 130, 158, 116, 154, 163, 125, 126, 77, 94, 99, 137, 137, 152, 106, 115, 135, 103, 145, 130, , 188, 114, 131, 120,
|
|
||||||
Duquesne ,A10, 9-9, 126, 130.42, 129.81, 126.5, 18.94, 170, , 143, 133, 114, 125, 124, 148, 114, 113, 119, 110, 126, 140, 106, 117, 143, 178, 120, 114, 157, 156, 124, 135, 115, 114, 155, 135, 124, 138, 131, 108, 130, 117, 119, 167, 167, 159, 131, 113, 132, 129, 127, 118, 115, 109, 113, , 92, 128, 134, 152,
|
|
||||||
Old Dominion ,CUSA, 15-8, 127, 130.84, 130.83, 133.5, 22.31, 147, , 138, 97, 150, 126, 132, 101, 149, 127, 126, 128, 112, 122, 157, 150, 121, 114, 152, 140, 86, 98, 110, 107, 146, 127, 150, 163, 133, 170, 133, 109, 111, 148, 149, 79, 139, 77, 139, 141, 108, 159, 134, 159, 150, 143, 140, , 144, 153, 132, 101,
|
|
||||||
Tulsa ,AAC, 11-12, 128, 131.45, 129.67, 126.0, 25.79, 245, , 160, 142, 109, 137, 138, 146, 124, 128, 99, 100, 129, 119, 121, 112, 127, 189, 140, 115, 159, 157, 117, 121, 159, 115, 108, 127, 116, 132, 134, 160, 115, 124, 124, 134, 161, 174, 116, 119, 111, 129, 118, 109, 126, 130, 118, , 84, 123, 126, 127,
|
|
||||||
George Mason ,A10, 13-9, 129, 131.83, 130.92, 129.0, 16.21, 189, , 161, 125, 115, 120, 142, 124, 129, 122, 118, 133, 121, 133, 152, 149, 141, 125, 125, 128, 125, 106, 132, 115, 112, 120, 142, 177, 139, 140, 130, 118, 113, 130, 130, 118, 145, 138, 124, 134, 115, 152, 137, 119, 143, 123, 132, , 116, 154, 119, 129,
|
|
||||||
ETSU ,SC, 13-12, 130, 132.24, 132.73, 132.5, 21.63, 56, , 117, 137, 123, 106, 120, 154, 113, 158, 152, 116, 154, 151, 147, 129, 147, 121, 134, 130, 149, 171, 109, 154, 103, 138, 122, 131, 145, 159, 125, 142, 168, 126, 125, 163, 85, 132, 129, 126, 158, 96, 130, 133, 113, 134, 142, , 112, 139, 139, 135,
|
|
||||||
Pacific ,WCC, 9-9, 131, 133.67, 132.81, 132.0, 21.75, 142, , 135, 121, 134, 129, 113, 113, 141, 157, 112, 135, 130, 159, 155, 125, 117, 200, 146, 123, 133, 153, 150, 108, 154, 119, 197, 125, 129, 155, 132, 134, 96, 122, 122, 149, 132, 131, 130, 135, 99, 159, 135, 139, 164, 116, 139, , 94, 111, 117, 103,
|
|
||||||
Chattanooga ,SC, 18-8, 132, 135.28, 134.96, 136.5, 21.65, 110, , 124, 104, 156, 133, 141, 102, 136, 182, 148, 142, 113, 114, 161, 151, 133, 93, 143, 163, 98, 123, 106, 114, 135, 156, 137, 150, 144, 168, 140, 126, 127, 155, 155, 112, 148, 84, 128, 160, 131, 129, 140, 163, 142, 137, 168, , 130, 150, 135, 104,
|
|
||||||
Vermont ,AEC, 10-5, 133, 137.97, 138.00, 134.0, 32.92, 54, , 108, 175, 140, 113, 118, 164, 100, 147, 157, 123, 172, 121, 95, 114, 137, 136, 119, 135, 143, 152, 111, 179, 100, 108, 206, 120, 173, 115, 115, 122, 200, 131, 129, 185, 69, 186, 170, 121, 190, 115, 173, 122, 144, 133, 119, , 146, 142, 140, 197,
|
|
||||||
Miami FL ,ACC, 10-17, 134, 138.59, 137.67, 134.0, 32.06, 240, , 186, 160, 124, 143, 149, 167, 154, 67, 108, 136, 127, 164, 128, 138, 144, 195, 145, 122, 180, 162, 145, 127, 126, 118, 101, 166, 115, 98, 149, 115, 117, 132, 131, 144, 210, 205, 119, 97, 122, 115, 131, 111, 136, 126, 104, , 92, 141, 137, 146,
|
|
||||||
Army ,PL, 12-9, 135, 139.42, 138.85, 131.0, 38.73, 80, , 132, 100, 136, 130, 139, 105, 118, 195, 122, 183, 97, 185, 166, 135, 107, 144, 144, 182, 119, 94, 197, 100, 185, 165, 143, 116, 181, 178, 119, 183, 70, 186, 186, 88, 123, 110, 117, 178, 78, 224, 117, 105, 106, 183, 186, , 188, 108, 104, 122,
|
|
||||||
Bryant ,NEC, 15-6, 136, 140.61, 140.81, 142.5, 30.38, 51, , 94, 126, 176, 132, 137, 110, 117, 187, 142, 157, 143, 148, 149, 144, 118, 155, 150, 181, 103, 122, 147, 120, 120, 178, 151, 128, 188, 127, 127, 168, 124, 171, 172, 99, 96, 79, 163, 170, 127, 159, 168, 144, 123, 159, 176, , 207, 132, 118, 134,
|
|
||||||
Bowling Green ,MAC, 14-11, 137, 142.62, 141.96, 143.0, 20.56, 205, , 127, 150, 139, 147, 143, 168, 132, 148, 168, 137, 145, 141, 136, 139, 154, 97, 155, 133, 155, 136, 151, 176, 119, 143, 106, 134, 122, 145, 139, 149, 182, 121, 120, 162, 103, 150, 134, 131, 176, 115, 145, 143, 119, 153, 131, , 123, 147, 152, 170,
|
|
||||||
Drexel ,CAA, 12-7, 138, 142.97, 142.02, 143.0, 16.66, 113, , 125, 143, 133, 135, 121, 137, 142, 133, 150, 153, 160, 152, 131, 134, 150, 101, 112, 141, 138, 147, 161, 145, 125, 148, 212, 142, 160, 131, 135, 140, 149, 147, 145, 148, 155, 128, 159, 139, 148, 129, 151, 149, 147, 131, 152, , 171, 143, 142, 147,
|
|
||||||
SF Austin ,SLC, 16-5, 139, 143.22, 142.67, 144.0, 29.27, 97, , 112, 140, 166, 142, 117, 152, 172, 132, 180, 112, 139, 125, 144, 118, 149, 90, 121, 146, 136, 115, 114, 186, 169, 123, 221, 129, 159, 160, 147, 105, 184, 154, 154, 81, 113, 105, 189, 156, 177, 106, 147, 175, 193, 160, 144, , 144, 138, 159, 153,
|
|
||||||
Nebraska ,B10, 7-20, 140, 143.54, 141.58, 131.0, 48.29, 213, , 207, 173, 97, 145, 147, 194, 157, 115, 101, 172, 142, 203, 115, 104, 146, 288, 100, 100, 236, 178, 185, 151, 117, 137, 80, 119, 94, 95, 126, 209, 138, 92, 95, 212, 182, 261, 126, 101, 129, 115, 109, 84, 125, 86, 108, , 133, 116, 138, 168,
|
|
||||||
Iona ,MAAC, 12-5, 141, 143.63, 143.12, 140.0, 31.33, 62, , 107, 134, 172, 101, 135, 111, 123, 138, 145, 161, 167, 144, 138, 162, 134, 91, 177, 153, 100, 126, 134, 123, 121, 197, 237, 145, 171, 122, 138, 136, 132, 178, 178, 136, 116, 76, 172, 163, 142, 159, 192, 161, 153, 141, 166, , 184, 146, 130, 139,
|
|
||||||
Cleveland St ,HL, 19-7, 142, 143.67, 143.90, 144.5, 37.42, 69, , 110, 108, 186, 148, 133, 89, 175, 141, 173, 201, 119, 116, 186, 133, 139, 94, 157, 176, 72, 104, 153, 112, 214, 184, 139, 168, 167, 128, 160, 116, 122, 151, 150, 93, 144, 53, 127, 169, 124, 201, 199, 201, 139, 176, 187, , 158, 156, 145, 109,
|
|
||||||
South Carolina ,SEC, 6-15, 143, 144.12, 142.98, 138.0, 32.95, 226, , 189, 168, 118, 141, 146, 180, 133, 130, 97, 101, 135, 150, 117, 124, 151, 179, 126, 120, 200, 180, 138, 146, 129, 129, 136, 146, 107, 120, 142, 156, 146, 119, 121, 237, 183, 235, 147, 112, 138, 152, 124, 115, 131, 120, 105, , 96, 144, 146, 165,
|
|
||||||
E Kentucky ,OVC, 22-7, 144, 144.77, 145.96, 149.0, 31.62, 118, , 113, 128, 180, 155, 180, 118, 146, 183, 182, 154, 134, 104, 148, 148, 132, 31, 178, 173, 83, 128, 130, 133, 150, 175, 145, 147, 170, 153, 152, 125, 162, 168, 170, 90, 110, 69, 132, 165, 164, 129, 159, 180, 162, 178, 172, , 171, 163, 148, 132,
|
|
||||||
Santa Clara ,WCC, 12-8, 145, 145.97, 145.38, 147.5, 29.71, 214, , 163, 113, 153, 154, 151, 97, 171, 176, 125, 165, 120, 147, 158, 137, 126, 184, 148, 168, 108, 117, 157, 102, 179, 135, 194, 169, 146, 194, 144, 147, 93, 153, 153, 100, 211, 116, 140, 155, 101, 172, 149, 167, 134, 139, 171, , 112, 129, 133, 95,
|
|
||||||
Texas A&M ,SEC, 8-10, 146, 147.99, 146.38, 140.0, 30.45, 260, , 190, 147, 143, 146, 173, 158, 153, 107, 115, 119, 122, 127, 130, 158, 140, 205, 164, 132, 174, 193, 136, 132, 137, 125, 188, 153, 120, 117, 150, 132, 143, 134, 133, 180, 214, 191, 146, 125, 134, 129, 136, 130, 174, 124, 122, , 96, 140, 144, 141,
|
|
||||||
Coastal Car ,SBC, 16-7, 147, 148.24, 148.38, 149.0, 25.27, 154, , 115, 158, 195, 144, 136, 134, 145, 168, 156, 129, 179, 136, 127, 178, 123, 75, 183, 160, 129, 154, 123, 148, 140, 134, 205, 132, 158, 179, 154, 164, 158, 173, 173, 101, 126, 123, 144, 159, 155, 106, 125, 179, 152, 188, 137, , 166, 149, 149, 124,
|
|
||||||
James Madison ,CAA, 13-7, 148, 149.01, 149.29, 148.5, 27.64, 63, , 137, 148, 130, 138, 129, 133, 131, 154, 165, 178, 165, 169, 146, 142, 148, 69, 141, 151, 134, 133, 188, 141, 124, 195, 200, 159, 178, 172, 137, 179, 150, 170, 169, 132, 108, 107, 153, 173, 153, 172, 152, 147, 149, 132, 161, , 209, 155, 136, 133,
|
|
||||||
UMBC ,AEC, 14-6, 149, 149.61, 150.44, 150.0, 24.51, 57, , 111, 135, 170, 139, 125, 128, 125, 179, 169, 188, 141, 135, 129, 161, 136, 149, 158, 171, 112, 132, 171, 143, 128, 179, 166, 137, 177, 151, 136, 151, 169, 165, 164, 135, 114, 126, 157, 148, 161, 185, 186, 152, 146, 171, 165, , 185, 148, 141, 159,
|
|
||||||
Siena ,MAAC, 12-5, 150, 151.45, 151.79, 149.0, 34.53, 53, , 103, 141, 190, 131, 126, 104, 128, 173, 147, 152, 171, 115, 142, 182, 142, 123, 201, 183, 92, 151, 120, 124, 148, 153, 222, 174, 185, 142, 145, 138, 152, 183, 183, 138, 111, 67, 184, 168, 150, 172, 212, 188, 178, 190, 175, , 148, 175, 143, 143,
|
|
||||||
Wyoming ,MWC, 14-11, 151, 154.18, 152.75, 154.0, 20.38, 195, , 146, 132, 165, 157, 161, 139, 167, 126, 143, 179, 151, 155, 237, 176, 145, 153, 180, 149, 142, 140, 165, 126, 134, 159, 149, 165, 134, 154, 161, 157, 123, 161, 161, 137, 158, 145, 135, 164, 128, 129, 154, 170, 190, 156, 157, , 154, 152, 150, 126,
|
|
||||||
Jacksonville St ,OVC, 18-9, 152, 154.19, 154.27, 155.0, 22.20, 86, , 121, 149, 184, 152, 150, 145, 143, 143, 186, 158, 153, 143, 160, 153, 152, 137, 170, 172, 124, 134, 143, 169, 156, 180, 158, 149, 169, 144, 156, 148, 178, 158, 158, 151, 107, 94, 145, 171, 178, 129, 160, 185, 172, 161, 177, , 202, 165, 161, 154,
|
|
||||||
Texas St ,SBC, 18-7, 153, 155.41, 155.35, 159.5, 29.59, 131, , 130, 131, 178, 153, 152, 120, 162, 124, 149, 146, 138, 99, 188, 181, 162, 181, 187, 178, 91, 141, 98, 131, 175, 166, 174, 183, 168, 213, 157, 91, 156, 182, 182, 123, 176, 92, 154, 177, 175, 152, 194, 200, 170, 162, 167, , 138, 188, 155, 140,
|
|
||||||
Northeastern ,CAA, 10-9, 154, 156.56, 156.23, 156.0, 13.19, 177, , 158, 138, 142, 151, 155, 142, 166, 185, 154, 168, 147, 160, 170, 140, 153, 165, 127, 155, 145, 148, 142, 137, 153, 171, 191, 167, 153, 164, 143, 158, 145, 162, 162, 164, 159, 143, 179, 153, 144, 159, 164, 154, 177, 165, 159, , 157, 162, 147, 137,
|
|
||||||
California ,P12, 9-20, 155, 159.51, 158.06, 147.0, 38.17, 280, , 206, 187, 119, 162, 181, 198, 169, 119, 130, 143, 164, 219, 151, 132, 165, 212, 124, 125, 226, 203, 191, 178, 141, 136, 100, 138, 126, 93, 165, 178, 165, 137, 135, 177, 206, 250, 138, 138, 160, 129, 138, 128, 141, 136, 125, , 127, 131, 160, 178,
|
|
||||||
Oral Roberts ,SL, 16-10, 156, 160.22, 160.17, 158.0, 20.44, 199, , 168, 162, 154, 176, 178, 181, 197, 145, 185, 187, 150, 145, 156, 156, 174, 106, 123, 152, 167, 129, 156, 202, 166, 174, 153, 139, 141, 130, 158, 135, 187, 150, 151, 154, 170, 158, 174, 152, 185, 129, 171, 160, 130, 167, 151, , 167, 151, 179, 166,
|
|
||||||
UTEP ,CUSA, 12-12, 157, 160.72, 159.71, 160.0, 25.43, 130, , 155, 181, 144, 156, 156, 192, 135, 166, 162, 134, 175, 177, 171, 115, 184, 244, 117, 137, 188, 176, 190, 187, 132, 141, 147, 152, 165, 203, 148, 189, 189, 133, 134, 168, 118, 193, 148, 158, 182, 172, 141, 145, 145, 129, 150, , 168, 164, 166, 173,
|
|
||||||
Kansas St ,B12, 9-20, 158, 162.42, 162.12, 156.0, 32.37, 191, , 235, 172, 151, 149, 183, 165, 187, 92, 114, 171, 157, 211, 193, 152, 185, 222, 135, 138, 186, 196, 172, 130, 197, 146, 121, 216, 131, 157, 182, 133, 120, 156, 156, 179, 224, 210, 142, 130, 126, 115, 156, 146, 182, 155, 141, , 123, 176, 153, 149,
|
|
||||||
Hofstra ,CAA, 13-10, 159, 162.70, 163.10, 163.5, 20.68, 90, , 157, 152, 175, 164, 203, 151, 147, 180, 166, 156, 161, 142, 168, 169, 163, 105, 161, 184, 146, 149, 140, 153, 168, 167, 161, 187, 180, 197, 155, 146, 164, 185, 185, 155, 171, 137, 182, 142, 167, 185, 178, 174, 163, 172, 179, , 134, 186, 158, 162,
|
|
||||||
CS Bakersfield ,BWC, 15-11, 160, 163.53, 163.00, 163.5, 21.80, 176, , 139, 163, 171, 168, 148, 173, 174, 210, 160, 173, 163, 154, 132, 160, 156, 120, 159, 169, 184, 137, 195, 174, 147, 155, 138, 124, 162, 129, 153, 218, 175, 142, 141, 171, 177, 164, 156, 196, 166, 185, 146, 172, 156, 170, 174, , 220, 134, 168, 167,
|
|
||||||
Temple ,AAC, 5-11, 161, 163.79, 162.62, 159.5, 34.74, 217, , 180, 197, 125, 161, 165, 195, 164, 136, 132, 131, 187, 174, 139, 127, 166, 243, 153, 134, 216, 235, 148, 173, 183, 139, 185, 151, 135, 125, 167, 192, 167, 136, 138, 257, 185, 244, 160, 136, 159, 115, 148, 123, 160, 121, 135, , 123, 158, 157, 181,
|
|
||||||
Tulane ,AAC, 10-13, 162, 163.82, 162.23, 161.0, 24.34, 204, , 181, 165, 267, 163, 159, 162, 156, 129, 133, 150, 155, 161, 176, 168, 155, 211, 196, 142, 175, 208, 175, 149, 192, 164, 134, 170, 147, 147, 168, 170, 142, 149, 148, 165, 187, 185, 136, 167, 143, 152, 155, 142, 169, 146, 164, , 138, 161, 151, 151,
|
|
||||||
DePaul ,BE, 5-14, 163, 165.51, 164.17, 159.5, 48.06, 287, , 229, 190, 116, 172, 176, 208, 191, 95, 120, 166, 159, 171, 137, 131, 177, 289, 122, 121, 239, 211, 179, 172, 158, 121, 164, 155, 125, 119, 163, 150, 160, 129, 132, 259, 251, 272, 161, 120, 156, 159, 128, 116, 171, 114, 116, , 102, 145, 164, 196,
|
|
||||||
Sam Houston St ,SLC, 19-9, 164, 165.69, 164.42, 169.5, 33.09, 152, , 145, 139, 311, 166, 157, 153, 179, 193, 197, 177, 140, 146, 150, 143, 135, 65, 167, 179, 140, 118, 149, 170, 194, 188, 186, 140, 176, 161, 171, 171, 176, 181, 181, 131, 173, 120, 186, 183, 170, 129, 157, 192, 210, 184, 173, , 190, 157, 169, 148,
|
|
||||||
UT San Antonio ,CUSA, 15-11, 165, 166.83, 166.46, 165.5, 15.60, 144, , 179, 171, 164, 150, 194, 178, 150, 146, 167, 145, 158, 186, 178, 186, 172, 208, 133, 145, 165, 150, 160, 177, 164, 161, 180, 171, 157, 208, 169, 165, 180, 164, 165, 166, 166, 161, 158, 174, 174, 159, 142, 169, 184, 147, 160, , 181, 168, 174, 158,
|
|
||||||
VMI ,SC, 13-12, 166, 167.30, 166.75, 169.5, 23.56, 225, , 153, 169, 145, 158, 134, 184, 138, 191, 189, 175, 173, 194, 182, 170, 173, 124, 151, 159, 179, 161, 187, 184, 130, 183, 159, 148, 184, 182, 146, 193, 188, 144, 147, 176, 146, 176, 152, 181, 188, 115, 153, 150, 133, 168, 181, , 234, 159, 165, 174,
|
|
||||||
Bradley ,MVC, 12-16, 167, 168.86, 168.88, 171.0, 23.96, 132, , 183, 200, 149, 189, 153, 207, 151, 174, 178, 160, 194, 173, 141, 154, 181, 182, 175, 150, 211, 201, 174, 206, 170, 172, 115, 161, 154, 134, 174, 200, 204, 140, 139, 187, 136, 209, 149, 147, 194, 185, 158, 148, 154, 164, 136, , 146, 170, 181, 187,
|
|
||||||
N Dakota St ,SL, 15-12, 168, 168.90, 168.77, 166.5, 24.23, 219, , 173, 179, 146, 188, 182, 200, 190, 165, 188, 174, 162, 138, 162, 157, 189, 127, 130, 154, 190, 163, 181, 218, 167, 160, 117, 144, 149, 191, 173, 152, 207, 143, 143, 194, 172, 173, 185, 161, 202, 115, 174, 164, 138, 166, 156, , 162, 160, 193, 199,
|
|
||||||
UNLV ,MWC, 12-15, 169, 170.71, 169.73, 168.5, 24.59, 255, , 202, 186, 161, 175, 192, 183, 161, 156, 155, 144, 188, 182, 140, 184, 169, 199, 179, 166, 201, 198, 141, 180, 155, 124, 128, 172, 132, 189, 179, 173, 161, 167, 167, 157, 213, 217, 151, 149, 162, 159, 162, 168, 189, 163, 146, , 130, 169, 176, 171,
|
|
||||||
South Florida ,AAC, 9-13, 170, 171.00, 170.56, 166.0, 27.32, 166, , 199, 164, 159, 184, 190, 166, 194, 140, 129, 141, 152, 172, 185, 183, 164, 230, 238, 165, 178, 216, 154, 139, 222, 151, 157, 175, 136, 162, 205, 162, 133, 175, 175, 183, 227, 194, 150, 140, 146, 185, 169, 151, 195, 182, 158, , 115, 183, 156, 145,
|
|
||||||
New Mexico St ,WAC, 12-8, 171, 173.21, 172.62, 167.0, 34.59, 134, , 162, 211, 157, 167, 140, 216, 152, 169, 200, 126, 185, 168, 135, 128, 195, 261, 156, 158, 235, 183, 152, 248, 157, 133, 251, 136, 166, 200, 175, 159, 231, 159, 159, 173, 142, 189, 193, 144, 219, 106, 167, 181, 176, 150, 155, , 168, 136, 202, 188,
|
|
||||||
Hartford ,AEC, 15-8, 172, 174.30, 173.67, 173.0, 20.40, 163, , 141, 161, 187, 160, 162, 155, 159, 163, 203, 234, 156, 156, 174, 201, 161, 193, 169, 189, 139, 135, 177, 166, 171, 222, 163, 173, 179, 146, 162, 144, 181, 189, 189, 145, 180, 178, 173, 186, 186, 172, 210, 186, 168, 186, 194, , 190, 181, 167, 180,
|
|
||||||
Ball St ,MAC, 10-13, 173, 174.66, 174.44, 176.5, 23.06, 171, , 176, 201, 163, 177, 184, 203, 177, 167, 193, 185, 189, 179, 173, 172, 191, 196, 160, 156, 196, 217, 186, 211, 152, 163, 140, 178, 152, 139, 172, 167, 215, 135, 136, 203, 135, 192, 180, 157, 209, 129, 181, 162, 155, 142, 154, , 159, 191, 191, 207,
|
|
||||||
Louisiana ,SBC, 17-9, 174, 176.46, 176.73, 177.0, 26.30, 108, , 172, 157, 198, 180, 167, 144, 180, 198, 177, 159, 170, 153, 227, 195, 175, 131, 197, 195, 137, 158, 155, 165, 204, 181, 176, 203, 186, 221, 195, 174, 173, 204, 203, 142, 149, 104, 171, 195, 179, 172, 202, 211, 194, 200, 185, , 168, 203, 177, 144,
|
|
||||||
East Carolina ,AAC, 8-11, 175, 177.24, 175.44, 171.5, 25.30, 168, , 205, 196, 169, 198, 168, 186, 148, 155, 137, 148, 174, 183, 177, 171, 170, 298, 199, 170, 189, 205, 200, 168, 182, 157, 178, 185, 174, 165, 180, 212, 170, 163, 163, 200, 189, 214, 155, 166, 168, 201, 150, 140, 158, 174, 163, , 159, 174, 162, 172,
|
|
||||||
Detroit ,HL, 12-10, 176, 178.36, 178.31, 176.5, 17.23, 165, , 159, 193, 177, 171, 171, 189, 176, 160, 205, 192, 212, 162, 163, 185, 192, 169, 139, 175, 177, 175, 189, 203, 196, 169, 169, 181, 192, 148, 166, 180, 212, 146, 146, 169, 175, 169, 166, 187, 198, 159, 198, 187, 165, 175, 184, , 207, 182, 192, 193,
|
|
||||||
Miami OH ,MAC, 12-11, 177, 179.84, 180.00, 177.0, 17.50, 160, , 171, 188, 167, 182, 177, 193, 173, 164, 202, 195, 177, 170, 196, 198, 193, 176, 195, 167, 185, 179, 198, 208, 162, 189, 170, 189, 163, 173, 177, 169, 210, 145, 144, 190, 163, 177, 169, 176, 210, 129, 188, 177, 192, 152, 178, , 175, 202, 194, 202,
|
|
||||||
Appalachian St ,SBC, 17-11, 178, 180.63, 180.10, 179.5, 25.61, 232, , 170, 177, 244, 181, 166, 157, 205, 142, 175, 180, 193, 176, 175, 192, 157, 162, 226, 190, 152, 166, 137, 163, 201, 186, 217, 179, 182, 198, 210, 130, 171, 205, 206, 172, 192, 146, 176, 185, 172, 129, 170, 217, 180, 217, 183, , 159, 190, 185, 142,
|
|
||||||
Nicholls St ,SLC, 18-7, 179, 180.94, 180.27, 183.0, 32.59, 267, , 156, 144, 200, 197, 179, 149, 247, 194, 199, 197, 144, 139, 164, 165, 159, 132, 210, 191, 135, 139, 133, 182, 216, 182, 208, 158, 197, 214, 197, 131, 177, 200, 198, 125, 223, 119, 202, 203, 180, 172, 184, 223, 204, 224, 195, , 175, 166, 187, 157,
|
|
||||||
Wagner ,NEC, 13-7, 180, 181.77, 181.65, 183.5, 36.06, 103, , 147, 145, 245, 159, 196, 130, 160, 218, 171, 208, 169, 188, 201, 193, 160, 161, 182, 216, 126, 138, 211, 138, 173, 211, 210, 191, 241, 204, 164, 184, 141, 208, 209, 140, 151, 103, 210, 218, 151, 234, 208, 191, 183, 203, 236, , 253, 179, 154, 160,
|
|
||||||
Northern Iowa ,MVC, 10-16, 181, 182.13, 182.04, 185.0, 26.51, 224, , 188, 210, 160, 185, 154, 215, 185, 134, 172, 149, 205, 199, 187, 177, 204, 167, 192, 157, 229, 231, 166, 212, 208, 140, 146, 192, 164, 167, 194, 155, 206, 160, 160, 206, 184, 233, 164, 143, 204, 159, 189, 171, 207, 179, 153, , 128, 195, 198, 192,
|
|
||||||
Fresno St ,MWC, 12-12, 182, 182.25, 181.73, 180.0, 23.44, 230, , 203, 153, 185, 178, 187, 163, 219, 170, 161, 184, 166, 193, 205, 200, 180, 245, 198, 180, 173, 182, 168, 156, 178, 173, 184, 207, 151, 212, 190, 172, 137, 184, 184, 152, 232, 175, 165, 175, 154, 172, 172, 194, 234, 181, 182, , 149, 187, 180, 150,
|
|
||||||
South Dakota ,SL, 14-11, 183, 183.73, 183.50, 179.5, 23.79, 162, , 209, 194, 174, 203, 170, 212, 215, 196, 216, 198, 178, 149, 180, 179, 201, 141, 142, 177, 202, 160, 208, 237, 172, 204, 132, 162, 156, 176, 178, 185, 221, 174, 174, 196, 179, 184, 205, 180, 220, 129, 183, 173, 179, 157, 170, , 195, 178, 201, 208,
|
|
||||||
FL Atlantic ,CUSA, 13-10, 184, 183.88, 182.69, 181.5, 29.51, 283, , 187, 215, 152, 170, 191, 230, 165, 159, 201, 151, 215, 165, 143, 191, 196, 151, 162, 162, 221, 181, 163, 228, 161, 162, 207, 157, 161, 192, 183, 187, 227, 179, 179, 199, 169, 234, 183, 182, 217, 129, 139, 176, 181, 154, 149, , 197, 184, 205, 206,
|
|
||||||
Loyola MD ,PL, 6-11, 185, 184.51, 184.85, 189.5, 38.84, 89, , 149, 204, 121, 165, 188, 206, 155, 208, 163, 169, 211, 234, 189, 240, 183, 194, 149, 193, 213, 240, 253, 189, 190, 176, 209, 141, 233, 196, 151, 213, 140, 207, 207, 240, 98, 203, 175, 210, 149, 185, 143, 137, 124, 196, 211, , 247, 133, 170, 226,
|
|
||||||
South Alabama ,SBC, 17-11, 186, 184.78, 184.44, 186.5, 25.41, 187, , 194, 180, 226, 186, 174, 159, 200, 181, 181, 182, 195, 167, 197, 188, 178, 112, 205, 197, 153, 174, 159, 171, 205, 185, 193, 205, 193, 265, 206, 145, 174, 213, 212, 182, 164, 141, 187, 190, 173, 185, 161, 224, 202, 211, 188, , 154, 201, 189, 136,
|
|
||||||
Bellarmine ,ASUN, 13-7, 187, 187.42, 179.61, 179.5, 24.07, 155, , 166, 184, 183, 179, 164, 171, 186, 216, 187, 204, 184, 189, 165, 167, 158, , 154, 186, , 155, 206, 188, 176, 152, 226, 160, 195, 143, 181, 215, 191, 180, 180, 153, 152, 152, 191, 270, 195, 159, 166, 178, 226, 169, 180, , 213, 171, 178, 176,
|
|
||||||
Wake Forest ,ACC, 6-16, 188, 187.69, 186.27, 182.5, 41.76, 261, , 257, 218, 147, 204, 212, 227, 183, 150, 141, 162, 182, 198, 167, 173, 203, 310, 181, 148, 262, 220, 193, 197, 138, 149, 165, 214, 142, 149, 189, 194, 185, 169, 168, 262, 225, 283, 167, 133, 181, 185, 165, 124, 197, 144, 134, , 134, 197, 182, 204,
|
|
||||||
Murray St ,OVC, 13-13, 189, 188.62, 188.52, 179.5, 40.32, 141, , 174, 247, 173, 183, 158, 251, 137, 178, 219, 113, 262, 181, 124, 163, 211, 159, 168, 174, 245, 221, 176, 266, 143, 170, 168, 154, 196, 150, 196, 234, 264, 166, 166, 239, 129, 223, 190, 172, 253, 152, 190, 184, 199, 148, 145, , 216, 189, 217, 251,
|
|
||||||
Monmouth NJ ,MAAC, 12-8, 190, 188.92, 189.25, 185.0, 31.93, 96, , 150, 183, 211, 173, 199, 147, 178, 240, 174, 181, 209, 157, 184, 196, 176, 150, 254, 208, 141, 173, 169, 161, 181, 208, 224, 213, 211, 202, 193, 186, 179, 226, 222, 160, 153, 111, 208, 198, 183, 234, 247, 213, 211, 221, 199, , 177, 210, 175, 179,
|
|
||||||
Norfolk St ,MEAC, 16-7, 191, 189.30, 189.50, 196.5, 33.83, 179, , 164, 159, 196, 187, 233, 143, 218, 217, 198, 250, 196, 175, 208, 197, 188, 111, 203, 205, 132, 144, 182, 158, 144, 241, 233, 225, 227, 222, 170, 176, 172, 197, 197, 119, 150, 118, 213, 211, 184, 208, 217, 210, 167, 209, 219, , 242, 207, 173, 163,
|
|
||||||
Rice ,CUSA, 15-13, 192, 189.32, 188.27, 189.0, 16.74, 172, , 177, 178, 182, 191, 172, 187, 199, 197, 190, 190, 180, 192, 226, 166, 190, 172, 191, 185, 176, 172, 196, 185, 188, 194, 177, 197, 189, 258, 187, 201, 190, 187, 187, 170, 193, 160, 162, 197, 189, 234, 182, 198, 198, 189, 197, , 195, 199, 196, 175,
|
|
||||||
Mt St Mary's ,NEC, 12-10, 193, 189.46, 188.81, 190.0, 24.84, 175, , 144, 176, 207, 174, 185, 161, 163, 215, 191, 214, 203, 212, 195, 221, 179, 187, 190, 206, 158, 164, 223, 164, 174, 198, 182, 193, 231, 183, 159, 190, 166, 212, 214, 161, 147, 142, 212, 205, 171, 201, 215, 190, 175, 212, 218, , 264, 192, 172, 183,
|
|
||||||
TX Southern ,SWAC, 16-8, 194, 189.86, 189.94, 196.0, 37.81, 181, , 167, 170, 236, 196, 200, 138, 222, 177, 196, 255, 200, 180, 203, 211, 171, 107, 264, 239, 127, 145, 162, 159, 165, 202, 236, 200, 204, 181, 208, 117, 157, 227, 224, 117, 174, 109, 224, 212, 169, 201, 196, 247, 232, 228, 215, , 190, 200, 186, 161,
|
|
||||||
Boston Univ ,PL, 7-11, 195, 191.34, 191.40, 193.0, 34.98, 161, , 182, 174, 162, 169, 208, 179, 158, 234, 159, 193, 148, 253, 214, 224, 167, 220, 193, 211, 195, 219, 222, 162, 265, 177, 198, 164, 230, 225, 176, 203, 110, 245, 247, 207, 188, 187, 168, 204, 121, 224, 163, 141, 148, 230, 228, , 211, 137, 163, 195,
|
|
||||||
Prairie View ,SWAC, 16-5, 196, 193.43, 193.69, 203.5, 52.03, 201, , 165, 151, 248, 209, 232, 122, 239, 184, 194, 259, 176, 134, 207, 206, 168, 109, 298, 248, 97, 142, 139, 142, 139, 214, 265, 219, 214, 206, 201, 120, 151, 243, 240, 70, 201, 95, 221, 237, 165, 256, 207, 260, 267, 232, 241, , 174, 218, 184, 155,
|
|
||||||
Boston College ,ACC, 4-16, 197, 193.96, 192.79, 186.0, 46.56, 276, , 240, 228, 155, 213, 189, 248, 201, 149, 144, 164, 204, 215, 153, 180, 212, 297, 186, 147, 280, 233, 218, 210, 163, 158, 152, 186, 155, 174, 186, 204, 195, 141, 142, 289, 288, 305, 177, 132, 191, 172, 175, 138, 196, 151, 133, , 134, 185, 197, 230,
|
|
||||||
St Peter's ,MAAC, 14-11, 198, 194.06, 193.21, 190.5, 22.22, 188, , 152, 191, 220, 190, 169, 174, 168, 220, 183, 186, 218, 178, 190, 164, 187, 164, 230, 209, 163, 177, 173, 181, 180, 209, 171, 206, 209, 207, 188, 205, 196, 214, 215, 205, 168, 155, 195, 200, 196, 234, 266, 208, 188, 218, 198, , 181, 212, 190, 203,
|
|
||||||
Washington ,P12, 5-21, 199, 195.83, 195.42, 187.0, 39.79, 274, , 255, 222, 158, 192, 229, 236, 202, 152, 153, 170, 186, 256, 183, 202, 213, 267, 174, 161, 268, 227, 183, 213, 187, 168, 123, 184, 150, 152, 200, 196, 192, 172, 171, 278, 266, 282, 196, 162, 187, 172, 176, 157, 191, 180, 147, , 138, 173, 199, 210,
|
|
||||||
N Kentucky ,HL, 14-11, 200, 197.35, 197.38, 200.0, 21.22, 200, , 200, 198, 206, 195, 210, 185, 192, 171, 220, 223, 214, 166, 222, 216, 205, 154, 214, 200, 170, 185, 164, 201, 233, 207, 162, 230, 199, 201, 215, 153, 213, 192, 192, 197, 195, 154, 194, 191, 207, 185, 232, 226, 187, 213, 205, , 154, 217, 206, 189,
|
|
||||||
Elon ,CAA, 10-9, 201, 197.94, 197.96, 196.0, 19.00, 236, , 195, 189, 191, 193, 217, 190, 209, 192, 214, 212, 202, 202, 191, 194, 206, 139, 171, 192, 182, 194, 213, 195, 199, 199, 253, 208, 191, 193, 184, 175, 197, 196, 196, 198, 191, 167, 220, 189, 203, 152, 197, 206, 237, 191, 208, , 223, 208, 200, 194,
|
|
||||||
Hawaii ,BWC, 11-10, 202, 199.98, 199.85, 200.5, 13.62, 178, , 214, 209, 209, 217, 211, 205, 189, 233, 192, 210, 197, 184, 202, 187, 194, 209, 194, 203, 199, 200, 212, 205, 186, 206, 211, 180, 198, 205, 199, 220, 201, 193, 193, 178, 162, 188, 198, 214, 197, 234, 187, 205, 200, 201, 204, , 204, 180, 208, 184,
|
|
||||||
S Illinois ,MVC, 12-14, 203, 201.32, 200.83, 201.0, 20.46, 190, , 228, 199, 189, 210, 221, 199, 220, 172, 207, 206, 181, 200, 239, 190, 200, 266, 216, 188, 205, 215, 207, 204, 236, 217, 154, 221, 175, 166, 214, 191, 203, 190, 190, 192, 233, 202, 178, 179, 199, 208, 204, 193, 218, 192, 189, , 165, 211, 203, 185,
|
|
||||||
Montana ,BSC, 15-13, 204, 204.97, 204.88, 201.5, 21.84, 180, , 201, 216, 194, 215, 215, 229, 216, 219, 224, 200, 207, 197, 199, 210, 233, 140, 242, 199, 231, 186, 180, 249, 207, 203, 179, 176, 187, 267, 218, 182, 236, 199, 199, 201, 190, 211, 203, 184, 227, 208, 195, 212, 173, 202, 190, , 190, 193, 226, 201,
|
|
||||||
Lafayette ,PL, 9-6, 205, 205.01, 205.06, 196.5, 38.68, 265, , 185, 167, 197, 200, 255, 169, 234, 221, 158, 194, 149, 190, 225, 259, 182, 206, 217, 243, 169, 188, 194, 167, 235, 196, 278, 204, 226, 274, 198, 195, 114, 249, 251, 175, 247, 190, 181, 238, 135, 290, 177, 166, 186, 240, 242, , 185, 172, 171, 198,
|
|
||||||
Campbell ,BSo, 17-10, 206, 206.98, 207.08, 206.5, 24.84, 151, , 208, 207, 205, 201, 198, 197, 181, 189, 244, 236, 192, 191, 206, 207, 220, 152, 173, 230, 172, 159, 202, 222, 225, 235, 202, 223, 223, 190, 202, 177, 233, 202, 205, 214, 203, 149, 228, 234, 241, 185, 227, 229, 225, 198, 235, , 253, 223, 218, 220,
|
|
||||||
La Salle ,A10, 9-16, 207, 207.87, 207.40, 205.5, 28.15, 289, , 239, 214, 179, 219, 250, 217, 254, 235, 176, 203, 183, 230, 215, 174, 219, 239, 189, 194, 233, 223, 220, 198, 193, 193, 144, 227, 190, 217, 203, 227, 193, 191, 191, 216, 270, 252, 188, 188, 193, 208, 185, 182, 159, 197, 192, , 162, 214, 209, 212,
|
|
||||||
Morgan St ,MEAC, 14-8, 208, 208.04, 207.98, 213.5, 38.57, 182, , 154, 166, 218, 206, 247, 160, 207, 280, 212, 263, 216, 196, 218, 199, 215, 130, 200, 228, 148, 167, 248, 175, 149, 252, 238, 240, 258, 254, 185, 248, 183, 217, 216, 146, 181, 134, 216, 245, 201, 256, 213, 220, 157, 214, 249, , 284, 232, 188, 186,
|
|
||||||
American Univ ,PL, 4-6, 209, 209.35, 208.75, 208.0, 41.11, 117, , 193, 156, 188, 202, 244, 175, 238, 207, 170, 227, 168, 206, 245, 264, 186, 259, 235, 242, 183, 236, 215, 157, 249, 226, 334, 201, 237, 238, 192, 207, 112, 255, 255, 241, 209, 166, 227, 227, 125, 224, 179, 183, 203, 243, 254, , 215, 177, 183, 191,
|
|
||||||
Utah Valley ,WAC, 11-11, 210, 210.91, 211.54, 210.0, 23.96, 125, , 231, 221, 203, 220, 160, 218, 198, 225, 237, 221, 199, 208, 252, 189, 208, 218, 202, 214, 210, 202, 243, 239, 198, 205, 228, 198, 210, 236, 216, 228, 234, 210, 208, 193, 156, 196, 214, 262, 218, 208, 193, 204, 219, 195, 207, , 258, 198, 216, 190,
|
|
||||||
Iowa St ,B12, 2-22, 211, 213.03, 212.35, 208.5, 53.14, 253, , 280, 288, 168, 199, 228, 256, 232, 151, 211, 163, 297, 277, 169, 141, 264, 273, 165, 164, 315, 260, 227, 275, 202, 150, 148, 202, 172, 156, 232, 262, 218, 176, 176, 317, 263, 306, 211, 146, 206, 172, 222, 156, 151, 173, 138, , 151, 196, 212, 278,
|
|
||||||
Citadel ,SC, 13-12, 212, 213.08, 213.48, 214.5, 19.96, 234, , 196, 182, 241, 214, 214, 191, 231, 238, 231, 235, 191, 239, 216, 225, 198, 156, 219, 219, 187, 192, 221, 194, 200, 243, 220, 212, 215, 227, 209, 235, 205, 215, 211, 186, 208, 181, 192, 236, 208, 208, 203, 222, 221, 229, 247, , 246, 215, 210, 182,
|
|
||||||
Montana St ,BSC, 13-10, 213, 213.56, 213.17, 216.0, 21.75, 294, , 211, 208, 215, 234, 175, 210, 244, 205, 234, 211, 208, 187, 221, 219, 230, 147, 207, 217, 212, 189, 192, 231, 221, 213, 218, 190, 194, 230, 225, 197, 223, 220, 219, 184, 242, 200, 217, 206, 221, 185, 218, 240, 220, 234, 217, , 204, 206, 228, 200,
|
|
||||||
Gardner Webb ,BSo, 11-15, 214, 215.02, 214.92, 205.0, 42.13, 156, , 198, 257, 181, 208, 193, 268, 144, 255, 263, 196, 265, 231, 181, 175, 256, 180, 166, 198, 256, 239, 247, 277, 177, 224, 156, 188, 245, 169, 191, 250, 285, 177, 177, 261, 154, 237, 241, 201, 284, 159, 230, 189, 161, 177, 202, , 286, 216, 233, 287,
|
|
||||||
Col Charleston ,CAA, 9-10, 215, 216.05, 215.75, 216.5, 19.90, 174, , 242, 234, 204, 205, 225, 221, 225, 188, 204, 215, 237, 223, 212, 234, 223, 216, 185, 204, 217, 229, 204, 214, 191, 201, 264, 267, 217, 171, 219, 210, 219, 221, 221, 220, 186, 227, 233, 199, 224, 234, 209, 202, 244, 215, 200, , 190, 249, 215, 211,
|
|
||||||
UC Davis ,BWC, 10-8, 216, 216.15, 215.65, 216.5, 23.30, 249, , 216, 192, 219, 231, 231, 188, 236, 236, 195, 216, 198, 224, 211, 238, 199, 269, 228, 229, 171, 190, 209, 192, 230, 215, 284, 210, 203, 232, 223, 202, 186, 216, 217, 188, 237, 165, 222, 223, 192, 234, 211, 243, 238, 226, 231, , 220, 194, 214, 177,
|
|
||||||
Austin Peay ,OVC, 14-13, 217, 217.47, 218.23, 212.0, 27.60, 127, , 204, 252, 210, 232, 227, 249, 196, 231, 246, 176, 253, 195, 198, 213, 243, 191, 211, 210, 241, 210, 210, 267, 203, 187, 187, 211, 225, 185, 245, 251, 266, 211, 210, 235, 165, 216, 199, 202, 259, 208, 229, 228, 217, 187, 203, , 223, 229, 242, 254,
|
|
||||||
Valparaiso ,MVC, 10-18, 218, 218.25, 218.46, 221.0, 29.36, 282, , 238, 237, 193, 227, 234, 261, 233, 190, 221, 213, 220, 242, 244, 204, 245, 219, 206, 187, 263, 252, 224, 251, 245, 192, 141, 222, 183, 177, 229, 199, 240, 188, 188, 226, 258, 268, 197, 194, 237, 159, 214, 199, 205, 199, 193, , 177, 221, 234, 238,
|
|
||||||
Canisius ,MAAC, 7-6, 219, 218.38, 217.92, 220.0, 31.70, 157, , 169, 185, 252, 194, 219, 170, 182, 252, 213, 217, 219, 227, 194, 212, 202, 221, 255, 227, 162, 204, 199, 183, 226, 232, 311, 259, 222, 215, 207, 233, 199, 244, 244, 224, 196, 139, 254, 233, 205, 234, 272, 249, 240, 258, 225, , 234, 231, 204, 205,
|
|
||||||
Evansville ,MVC, 9-16, 220, 221.28, 221.56, 224.0, 19.88, 235, , 246, 230, 202, 226, 206, 228, 226, 186, 229, 228, 229, 240, 265, 220, 225, 227, 222, 202, 240, 250, 263, 224, 244, 218, 160, 239, 201, 184, 233, 221, 220, 198, 200, 248, 229, 230, 201, 208, 223, 185, 224, 209, 224, 207, 220, , 217, 228, 225, 215,
|
|
||||||
Delaware ,CAA, 7-8, 221, 221.57, 220.98, 221.0, 21.97, 203, , 232, 236, 199, 223, 195, 232, 210, 212, 215, 226, 243, 214, 250, 205, 240, 226, 184, 207, 220, 241, 216, 220, 189, 230, 291, 266, 238, 234, 220, 188, 230, 219, 220, 250, 194, 231, 246, 193, 232, 201, 216, 203, 230, 193, 223, , 181, 255, 222, 235,
|
|
||||||
St Joseph's PA ,A10, 5-15, 222, 221.58, 221.19, 216.0, 27.92, 263, , 249, 219, 192, 211, 223, 233, 257, 213, 179, 205, 201, 271, 243, 217, 232, 282, 176, 196, 251, 238, 251, 209, 209, 190, 201, 241, 200, 219, 221, 240, 194, 194, 194, 281, 283, 262, 215, 192, 200, 256, 200, 195, 213, 194, 206, , 202, 219, 221, 223,
|
|
||||||
Ark Little Rock ,SBC, 11-15, 223, 221.89, 222.40, 225.5, 24.07, 197, , 224, 239, 214, 242, 186, 240, 221, 251, 217, 167, 257, 221, 224, 208, 231, 201, 241, 225, 230, 254, 201, 236, 220, 200, 173, 226, 219, 252, 228, 263, 242, 233, 235, 204, 157, 208, 226, 220, 248, 201, 231, 230, 201, 263, 191, , 185, 239, 232, 241,
|
|
||||||
SUNY Albany ,AEC, 7-9, 224, 224.45, 226.06, 229.0, 30.64, 100, , 197, 243, 242, 216, 204, 242, 188, 237, 235, 229, 236, 229, 179, 203, 218, 232, 204, 215, 224, 255, 254, 235, 184, 240, 266, 209, 232, 180, 213, 249, 254, 231, 229, 267, 178, 271, 243, 207, 254, 224, 267, 197, 215, 208, 209, , 264, 227, 223, 264,
|
|
||||||
Cal Baptist ,WAC, 13-10, 225, 224.60, 225.54, 223.5, 25.75, 167, , 220, 254, 221, 244, 197, 252, 223, 200, 267, 240, 224, 205, 213, 214, 228, 129, 223, 235, 266, 197, 219, 268, 218, 212, 247, 195, 236, 243, 249, 226, 272, 242, 238, 191, 216, 229, 209, 246, 246, 208, 201, 231, 222, 210, 226, , 228, 213, 246, 221,
|
|
||||||
Radford ,BSo, 15-12, 226, 225.54, 225.56, 227.0, 22.80, 194, , 219, 233, 217, 228, 222, 223, 203, 250, 258, 231, 221, 201, 241, 215, 239, 160, 215, 244, 207, 187, 203, 245, 211, 246, 192, 234, 253, 218, 227, 217, 252, 228, 230, 244, 202, 172, 238, 224, 258, 290, 238, 221, 227, 223, 234, , 228, 245, 227, 242,
|
|
||||||
WI Milwaukee ,HL, 10-12, 227, 226.23, 226.67, 230.0, 17.94, 239, , 223, 229, 229, 233, 235, 222, 229, 206, 247, 246, 247, 222, 228, 232, 238, 173, 208, 220, 214, 248, 249, 229, 254, 223, 195, 235, 228, 186, 236, 241, 246, 203, 202, 233, 215, 204, 218, 232, 230, 208, 253, 236, 185, 235, 232, , 234, 230, 231, 236,
|
|
||||||
MA Lowell ,AEC, 11-12, 228, 227.22, 225.62, 223.0, 25.30, 223, , 210, 217, 318, 218, 213, 213, 224, 245, 236, 245, 206, 216, 200, 230, 214, 248, 218, 224, 203, 224, 233, 216, 223, 238, 189, 218, 207, 223, 211, 208, 229, 223, 223, 222, 218, 343, 234, 222, 228, 224, 257, 216, 209, 244, 224, , 245, 225, 220, 245,
|
|
||||||
Oakland ,HL, 12-18, 229, 228.21, 229.19, 227.5, 23.95, 196, , 221, 224, 232, 230, 201, 220, 267, 222, 242, 225, 232, 248, 268, 248, 250, 229, 231, 226, 228, 246, 240, 227, 276, 229, 131, 246, 218, 209, 247, 206, 228, 206, 204, 211, 272, 213, 207, 215, 226, 208, 258, 258, 208, 219, 245, , 211, 234, 245, 225,
|
|
||||||
UT Arlington ,SBC, 13-13, 230, 228.82, 228.90, 231.0, 21.11, 254, , 250, 235, 233, 235, 251, 225, 230, 202, 223, 191, 240, 210, 210, 231, 224, 284, 243, 236, 227, 212, 167, 234, 242, 210, 204, 231, 205, 284, 246, 214, 232, 247, 248, 218, 243, 219, 232, 230, 238, 208, 225, 242, 228, 254, 196, , 204, 236, 237, 218,
|
|
||||||
LIU Brooklyn ,NEC, 9-9, 231, 229.49, 229.65, 227.5, 26.22, 164, , 184, 212, 256, 224, 209, 201, 211, 278, 210, 218, 234, 237, 242, 223, 210, 225, 234, 258, 194, 228, 252, 200, 206, 227, 249, 237, 282, 231, 217, 261, 209, 264, 257, 223, 200, 180, 256, 235, 211, 271, 255, 225, 214, 247, 251, , 276, 238, 211, 232,
|
|
||||||
Niagara ,MAAC, 9-11, 232, 229.87, 229.25, 234.5, 21.95, 183, , 192, 226, 243, 212, 218, 214, 193, 211, 228, 237, 258, 241, 209, 209, 221, 217, 252, 233, 209, 247, 235, 215, 212, 253, 242, 242, 248, 188, 222, 229, 225, 238, 243, 247, 198, 197, 245, 240, 234, 256, 303, 235, 239, 248, 237, , 247, 243, 224, 252,
|
|
||||||
Marist ,MAAC, 12-9, 233, 230.18, 230.46, 230.0, 28.55, 211, , 212, 203, 263, 222, 246, 182, 214, 229, 230, 260, 225, 213, 234, 235, 209, 192, 270, 251, 168, 195, 231, 190, 229, 262, 239, 260, 247, 216, 230, 225, 211, 256, 258, 181, 221, 156, 242, 247, 216, 271, 286, 254, 260, 250, 258, , 267, 250, 213, 214,
|
|
||||||
Bucknell ,PL, 5-7, 234, 230.34, 229.79, 228.0, 32.00, 237, , 217, 205, 212, 221, 275, 204, 227, 224, 184, 219, 210, 236, 233, 305, 207, 255, 227, 260, 208, 243, 237, 191, 266, 231, 327, 229, 266, 272, 212, 224, 155, 272, 268, 242, 234, 212, 229, 217, 163, 234, 191, 196, 242, 256, 256, , 242, 205, 207, 227,
|
|
||||||
Lipscomb ,ASUN, 15-12, 235, 232.55, 232.79, 236.5, 23.59, 193, , 233, 238, 246, 251, 216, 224, 256, 274, 225, 207, 230, 217, 238, 241, 226, 142, 256, 234, 244, 191, 226, 238, 257, 245, 232, 236, 246, 307, 243, 244, 239, 235, 237, 213, 217, 198, 219, 213, 245, 234, 237, 238, 257, 227, 230, , 244, 237, 238, 209,
|
|
||||||
Seattle ,WAC, 12-11, 236, 232.62, 232.10, 229.0, 21.91, 296, , 222, 249, 216, 236, 238, 262, 252, 209, 256, 243, 227, 207, 229, 228, 237, 190, 221, 222, 259, 218, 236, 263, 219, 221, 245, 194, 212, 280, 248, 222, 260, 229, 226, 210, 255, 256, 206, 249, 236, 208, 206, 234, 247, 206, 227, , 234, 204, 249, 228,
|
|
||||||
Charlotte ,CUSA, 9-16, 237, 233.00, 233.27, 235.0, 21.18, 227, , 253, 240, 201, 255, 259, 246, 235, 241, 209, 189, 235, 220, 235, 237, 259, 186, 257, 221, 242, 266, 242, 240, 215, 216, 181, 265, 216, 261, 231, 267, 245, 222, 228, 252, 236, 247, 230, 221, 233, 234, 205, 219, 212, 252, 212, , 209, 265, 236, 240,
|
|
||||||
Holy Cross ,PL, 5-11, 238, 233.20, 233.21, 234.0, 44.21, 202, , 227, 206, 238, 207, 258, 211, 195, 263, 206, 289, 190, 299, 283, 255, 197, 234, 188, 247, 238, 242, 313, 193, 278, 280, 234, 196, 286, 233, 204, 273, 144, 288, 287, 258, 231, 240, 200, 254, 157, 271, 180, 153, 166, 259, 292, , 319, 167, 195, 231,
|
|
||||||
W Carolina ,SC, 11-16, 239, 233.76, 233.83, 235.5, 17.14, 270, , 248, 223, 227, 243, 240, 237, 255, 260, 222, 202, 223, 261, 240, 243, 246, 204, 248, 238, 237, 251, 214, 225, 224, 228, 199, 250, 220, 266, 234, 236, 235, 234, 232, 195, 250, 241, 223, 228, 231, 224, 221, 239, 233, 241, 243, , 197, 252, 240, 216,
|
|
||||||
Stony Brook ,AEC, 9-14, 240, 235.69, 235.92, 233.5, 26.83, 158, , 215, 256, 225, 229, 207, 266, 208, 254, 255, 244, 259, 262, 204, 222, 241, 224, 220, 223, 255, 258, 239, 256, 213, 233, 203, 215, 235, 210, 226, 279, 270, 224, 225, 277, 197, 299, 240, 219, 262, 208, 278, 215, 216, 239, 213, , 234, 240, 247, 284,
|
|
||||||
Arkansas St ,SBC, 11-13, 241, 237.24, 238.35, 243.0, 22.12, 192, , 241, 259, 230, 239, 202, 260, 237, 203, 253, 222, 272, 259, 249, 251, 248, 148, 240, 231, 252, 249, 229, 257, 243, 247, 241, 243, 229, 249, 241, 239, 256, 246, 245, 221, 212, 245, 239, 243, 263, 185, 245, 251, 235, 222, 216, , 226, 248, 253, 255,
|
|
||||||
Ga Southern ,SBC, 13-13, 242, 237.39, 237.69, 235.5, 22.62, 247, , 237, 232, 266, 241, 226, 231, 253, 226, 227, 199, 248, 226, 232, 275, 216, 207, 273, 249, 223, 234, 184, 221, 263, 234, 271, 244, 224, 268, 261, 231, 226, 261, 264, 202, 261, 228, 236, 242, 235, 185, 226, 270, 263, 249, 240, , 197, 251, 250, 213,
|
|
||||||
Missouri KC ,SL, 11-13, 243, 237.85, 238.77, 239.0, 32.53, 251, , 261, 273, 234, 258, 241, 293, 245, 214, 272, 256, 251, 232, 172, 239, 272, 135, 209, 213, 285, 245, 230, 295, 228, 237, 214, 199, 202, 220, 251, 247, 288, 209, 213, 238, 246, 286, 237, 239, 280, 172, 239, 218, 223, 220, 201, , 247, 224, 265, 272,
|
|
||||||
Youngstown St ,HL, 15-12, 244, 237.89, 238.00, 240.5, 20.11, 198, , 225, 244, 257, 253, 237, 238, 270, 204, 250, 241, 250, 218, 264, 254, 258, 197, 253, 240, 222, 199, 232, 247, 273, 220, 215, 264, 251, 244, 254, 223, 249, 225, 227, 219, 239, 215, 204, 226, 240, 256, 265, 264, 243, 233, 250, , 213, 258, 251, 222,
|
|
||||||
UNC Asheville ,BSo, 10-10, 245, 237.90, 237.92, 239.0, 23.88, 184, , 218, 246, 222, 238, 280, 245, 204, 247, 265, 209, 238, 228, 223, 233, 255, 203, 246, 241, 218, 214, 267, 261, 217, 250, 252, 247, 277, 195, 240, 232, 268, 232, 231, 243, 199, 201, 269, 229, 277, 234, 242, 232, 206, 246, 233, , 286, 261, 243, 263,
|
|
||||||
N Colorado ,BSC, 11-11, 246, 238.78, 238.92, 238.5, 24.74, 207, , 251, 260, 223, 256, 262, 267, 248, 201, 271, 220, 245, 209, 259, 227, 271, 228, 225, 232, 261, 225, 178, 283, 239, 225, 250, 217, 213, 292, 263, 216, 274, 240, 241, 217, 238, 251, 250, 225, 272, 185, 228, 252, 236, 236, 229, , 200, 226, 264, 250,
|
|
||||||
Jackson St ,SWAC, 12-6, 247, 239.42, 239.35, 249.5, 41.81, 257, , 191, 195, 277, 246, 245, 177, 278, 228, 257, 295, 213, 204, 251, 266, 234, 171, 312, 266, 166, 168, 205, 217, 195, 257, 318, 256, 254, 248, 256, 181, 198, 267, 266, 158, 282, 163, 267, 275, 214, 234, 254, 296, 315, 261, 278, , 247, 259, 230, 217,
|
|
||||||
Merrimack ,NEC, 9-9, 248, 241.71, 239.83, 241.0, 27.71, 173, , 213, 213, 253, 225, 270, 201, 213, 283, 226, 247, 233, 245, 247, 282, 217, , 250, 264, 193, 232, 234, 199, 227, 267, 276, 253, 292, 241, 224, 237, 208, 265, 270, 227, 222, 179, 271, 256, 213, 271, 263, 241, 252, 264, 276, , 230, 247, 219, 233,
|
|
||||||
San Diego ,WCC, 3-11, 249, 242.68, 242.29, 241.0, 28.73, 277, , 258, 248, 224, 237, 224, 241, 268, 244, 208, 233, 249, 270, 231, 247, 251, 315, 232, 212, 272, 261, 250, 242, 269, 191, 313, 233, 208, 240, 250, 276, 216, 201, 201, 283, 294, 288, 248, 231, 215, 234, 223, 233, 256, 185, 222, , 217, 222, 241, 246,
|
|
||||||
G Washington ,A10, 5-12, 250, 243.19, 242.94, 245.0, 23.77, 241, , 256, 271, 213, 245, 205, 264, 240, 223, 218, 230, 273, 243, 230, 226, 260, 291, 251, 218, 270, 287, 260, 254, 210, 219, 257, 257, 249, 250, 258, 245, 247, 218, 218, 293, 274, 280, 231, 209, 249, 256, 241, 207, 229, 205, 214, , 217, 246, 244, 267,
|
|
||||||
New Hampshire ,AEC, 10-9, 251, 243.55, 243.29, 243.5, 18.69, 248, , 226, 231, 269, 240, 230, 219, 217, 257, 239, 253, 222, 235, 219, 269, 222, 240, 245, 259, 204, 213, 225, 219, 237, 242, 274, 252, 243, 226, 239, 238, 244, 258, 259, 230, 244, 292, 249, 241, 247, 271, 283, 244, 254, 278, 244, , 247, 253, 235, 249,
|
|
||||||
Illinois St ,MVC, 7-18, 252, 245.43, 245.44, 248.5, 31.14, 290, , 269, 277, 228, 254, 249, 282, 246, 199, 249, 248, 270, 275, 253, 218, 261, 249, 224, 201, 292, 272, 258, 278, 248, 236, 183, 232, 206, 199, 242, 284, 269, 195, 195, 303, 271, 308, 225, 216, 267, 208, 235, 214, 253, 216, 210, , 233, 242, 258, 282,
|
|
||||||
Stetson ,ASUN, 11-14, 253, 250.15, 250.88, 253.0, 15.28, 221, , 245, 258, 247, 260, 260, 263, 281, 227, 248, 266, 256, 250, 248, 253, 236, 238, 236, 245, 247, 265, 268, 255, 261, 256, 240, 249, 256, 256, 266, 255, 255, 241, 242, 231, 240, 243, 244, 253, 268, 185, 250, 246, 264, 231, 259, , 272, 257, 257, 258,
|
|
||||||
Longwood ,BSo, 12-16, 254, 253.53, 253.69, 253.0, 26.89, 186, , 236, 267, 235, 252, 239, 265, 212, 268, 286, 264, 271, 252, 269, 242, 283, 236, 213, 250, 254, 256, 293, 274, 238, 283, 196, 263, 293, 224, 244, 243, 281, 230, 233, 268, 220, 226, 263, 251, 300, 234, 273, 245, 231, 225, 272, , 312, 271, 259, 294,
|
|
||||||
UNC Wilmington ,CAA, 7-10, 255, 253.88, 251.70, 252.0, 20.65, 304, , 243, 270, 237, 266, 236, 271, 228, 246, 243, 224, 276, 238, 217, 229, 254, 285, 212, 252, 260, 264, 257, 262, , 244, 281, 245, 261, 242, 237, 286, 271, 236, 234, 271, 241, 281, 264, 244, 265, 234, 219, 227, 258, 251, 221, , 280, 256, 254, 269,
|
|
||||||
St Francis NY ,NEC, 9-10, 256, 254.93, 255.10, 257.5, 26.33, 252, , 230, 220, 278, 247, 265, 209, 251, 295, 232, 261, 242, 263, 263, 308, 229, 250, 259, 284, 206, 244, 273, 207, 240, 263, 270, 273, 296, 260, 235, 256, 217, 290, 283, 236, 245, 195, 276, 266, 222, 256, 281, 255, 259, 286, 291, , 292, 264, 229, 244,
|
|
||||||
Quinnipiac ,MAAC, 9-13, 257, 256.08, 256.96, 256.5, 26.22, 153, , 244, 262, 261, 249, 254, 243, 206, 249, 245, 273, 283, 264, 255, 250, 249, 223, 247, 263, 234, 271, 262, 232, 234, 296, 230, 279, 276, 253, 253, 280, 250, 280, 276, 266, 219, 225, 265, 260, 257, 312, 320, 256, 282, 255, 265, , 259, 273, 248, 266,
|
|
||||||
UC San Diego ,BWC, 7-10, 258, 259.31, 256.26, 254.5, 33.77, 159, , 279, 245, 290, 263, 248, 253, 276, 264, 233, 280, 226, 313, 288, 274, 242, , 266, 254, , 270, 327, 233, 252, 249, 321, 228, 265, 163, 252, 297, 224, 239, 236, 251, 204, 238, 258, 327, 229, 271, 244, 261, 278, 257, 262, , 276, 220, 255, 234,
|
|
||||||
North Alabama ,ASUN, 13-11, 259, 259.66, 260.79, 263.0, 25.69, 264, , 274, 261, 279, 277, 266, 254, 279, 242, 270, 287, 252, 258, 254, 281, 244, 158, 269, 277, 215, 206, 245, 253, 288, 264, 296, 262, 268, 245, 282, 242, 253, 275, 275, 232, 256, 236, 253, 293, 261, 208, 252, 273, 308, 290, 263, , 276, 263, 266, 239,
|
|
||||||
Tarleton St ,WAC, 10-10, 260, 259.74, 254.69, 255.0, 34.03, 220, , 247, 265, 254, 261, 220, 291, 243, 312, 292, 265, 231, 308, 192, 236, 247, 306, 237, 255, , 230, 299, 290, 258, 270, , 182, 250, 187, 255, 290, 292, 254, 260, 234, , 264, 235, 308, 276, 201, 220, 253, 274, 204, 238, , 311, 209, 273, 256,
|
|
||||||
CS Sacramento ,BSC, 8-12, 261, 259.89, 260.00, 259.5, 19.58, 256, , 266, 269, 240, 280, 267, 288, 266, 290, 288, 242, 260, 251, 220, 258, 275, 251, 274, 256, 283, 262, 241, 293, 253, 239, 279, 220, 221, 271, 259, 277, 298, 251, 254, 269, 230, 258, 278, 259, 279, 224, 233, 267, 255, 265, 246, , 253, 241, 281, 262,
|
|
||||||
Sacred Heart ,NEC, 9-9, 262, 260.56, 260.81, 274.0, 38.50, 229, , 234, 202, 255, 257, 293, 196, 277, 296, 241, 282, 217, 247, 292, 330, 235, 263, 287, 307, 192, 222, 238, 196, 271, 289, 297, 283, 295, 314, 262, 219, 202, 307, 309, 215, 293, 183, 286, 291, 212, 300, 280, 278, 286, 287, 305, , 240, 277, 239, 224,
|
|
||||||
Idaho St ,BSC, 13-11, 263, 260.80, 260.69, 263.0, 22.71, 322, , 276, 266, 249, 275, 252, 275, 282, 266, 285, 276, 246, 244, 236, 278, 277, 213, 263, 261, 269, 207, 228, 287, 262, 261, 262, 224, 244, 304, 272, 270, 276, 260, 262, 228, 281, 263, 257, 267, 271, 208, 243, 271, 249, 271, 257, , 284, 233, 276, 253,
|
|
||||||
FL Gulf Coast ,ASUN, 10-8, 264, 260.92, 261.69, 266.0, 28.61, 306, , 283, 253, 285, 279, 273, 235, 274, 265, 254, 286, 241, 225, 257, 279, 227, 170, 267, 279, 198, 226, 255, 241, 284, 260, 315, 278, 260, 229, 291, 259, 243, 283, 280, 209, 280, 222, 274, 288, 252, 271, 264, 269, 294, 297, 255, , 286, 270, 256, 219,
|
|
||||||
CS Fullerton ,BWC, 6-10, 265, 261.80, 261.52, 259.0, 17.58, 297, , 260, 274, 239, 271, 263, 270, 242, 292, 259, 291, 266, 257, 258, 267, 257, 252, 244, 262, 243, 274, 277, 259, 231, 258, 303, 238, 262, 239, 257, 306, 262, 259, 253, 272, 259, 275, 255, 292, 255, 234, 251, 248, 245, 260, 264, , 283, 235, 263, 257,
|
|
||||||
F Dickinson ,NEC, 9-15, 266, 263.05, 263.10, 260.0, 19.59, 233, , 254, 242, 250, 250, 286, 250, 259, 297, 238, 252, 269, 291, 256, 294, 253, 258, 261, 274, 246, 268, 284, 230, 251, 276, 223, 272, 290, 278, 238, 278, 238, 287, 282, 265, 257, 246, 280, 257, 242, 271, 302, 257, 241, 262, 280, , 302, 267, 252, 265,
|
|
||||||
Portland St ,BSC, 9-13, 267, 263.21, 263.21, 257.5, 24.04, 299, , 288, 287, 231, 270, 257, 298, 250, 232, 284, 249, 287, 246, 260, 257, 292, 202, 265, 246, 290, 281, 244, 299, 232, 248, 258, 255, 259, 328, 268, 257, 300, 252, 252, 275, 235, 294, 272, 250, 288, 224, 240, 250, 251, 253, 248, , 247, 262, 279, 273,
|
|
||||||
WI Green Bay ,HL, 8-17, 268, 263.51, 263.69, 267.5, 20.31, 218, , 267, 282, 260, 259, 242, 280, 271, 243, 282, 267, 298, 267, 289, 252, 280, 281, 229, 253, 278, 284, 266, 271, 287, 255, 219, 271, 269, 228, 274, 264, 277, 237, 239, 296, 273, 270, 251, 252, 278, 234, 297, 268, 250, 238, 260, , 234, 272, 278, 283,
|
|
||||||
William & Mary ,CAA, 7-10, 269, 264.60, 265.60, 267.0, 27.82, 298, , 265, 225, 264, 267, 292, 234, 309, 267, 251, 269, 228, 254, 309, 293, 265, 265, 284, 269, 232, 257, 217, 226, 286, 279, 309, 285, 240, 275, 275, 211, 237, 289, 291, 263, 298, 232, 287, 261, 243, 290, 261, 279, 285, 281, 273, , 177, 281, 260, 247,
|
|
||||||
IUPUI ,HL, 8-10, 270, 265.39, 265.96, 263.5, 17.97, 250, , 259, 241, 286, 264, 283, 239, 262, 281, 283, 298, 255, 255, 282, 256, 263, 262, 258, 267, 225, 267, 285, 246, 298, 266, 295, 284, 263, 263, 270, 268, 257, 253, 250, 256, 252, 206, 261, 280, 251, 271, 279, 285, 275, 267, 288, , 276, 279, 262, 248,
|
|
||||||
Long Beach St ,BWC, 6-12, 271, 266.05, 266.10, 268.0, 15.28, 266, , 262, 268, 251, 268, 269, 277, 269, 272, 264, 277, 263, 281, 261, 245, 268, 290, 233, 257, 275, 283, 286, 265, 260, 275, 290, 251, 234, 246, 271, 300, 263, 250, 246, 288, 287, 284, 270, 272, 256, 256, 248, 274, 273, 237, 269, , 274, 244, 277, 261,
|
|
||||||
Southern Miss ,CUSA, 8-17, 272, 266.60, 266.60, 267.0, 26.50, 313, , 290, 289, 208, 262, 243, 308, 241, 277, 276, 232, 285, 278, 262, 244, 281, 242, 239, 237, 303, 292, 296, 291, 246, 251, 227, 261, 242, 294, 269, 326, 295, 248, 249, 295, 226, 304, 252, 255, 282, 271, 234, 237, 265, 268, 239, , 292, 266, 272, 276,
|
|
||||||
CS Northridge ,BWC, 9-13, 273, 267.79, 267.79, 268.0, 18.65, 310, , 275, 251, 268, 283, 282, 255, 290, 239, 252, 293, 239, 249, 286, 280, 262, 278, 289, 283, 257, 276, 274, 250, 268, 273, 263, 268, 257, 262, 279, 269, 241, 268, 267, 253, 303, 255, 247, 289, 239, 300, 259, 276, 269, 285, 294, , 230, 254, 268, 237,
|
|
||||||
Fairfield ,MAAC, 10-17, 274, 268.99, 268.96, 272.5, 21.52, 212, , 263, 264, 273, 248, 276, 258, 272, 230, 262, 288, 284, 307, 279, 277, 266, 247, 294, 271, 250, 286, 272, 244, 272, 285, 229, 282, 275, 251, 273, 230, 251, 291, 300, 255, 253, 239, 273, 273, 264, 256, 331, 284, 283, 277, 290, , 280, 285, 267, 281,
|
|
||||||
Samford ,SC, 6-13, 275, 269.38, 269.69, 268.5, 18.41, 244, , 277, 275, 270, 274, 284, 279, 249, 309, 268, 239, 277, 292, 267, 260, 267, 215, 262, 268, 277, 277, 280, 270, 247, 282, 288, 254, 274, 286, 267, 315, 273, 262, 256, 291, 248, 290, 268, 264, 274, 300, 236, 262, 262, 242, 268, , 290, 268, 269, 259,
|
|
||||||
Troy ,SBC, 11-17, 276, 269.55, 269.75, 269.0, 20.82, 258, , 272, 250, 300, 272, 271, 257, 289, 269, 261, 251, 268, 294, 277, 291, 252, 246, 300, 272, 253, 273, 264, 243, 294, 272, 268, 269, 255, 324, 286, 281, 248, 298, 297, 208, 265, 253, 259, 268, 250, 256, 246, 299, 287, 288, 281, , 267, 278, 271, 229,
|
|
||||||
Coppin St ,MEAC, 9-13, 277, 271.45, 271.98, 274.5, 29.24, 206, , 252, 227, 276, 276, 288, 226, 275, 318, 266, 317, 261, 293, 291, 262, 273, 257, 249, 292, 219, 253, 290, 223, 250, 307, 280, 304, 308, 306, 260, 274, 222, 296, 279, 246, 290, 220, 292, 306, 244, 312, 270, 291, 261, 266, 310, , 307, 284, 261, 243,
|
|
||||||
SE Missouri St ,OVC, 11-16, 278, 273.36, 273.88, 274.5, 16.22, 286, , 285, 281, 265, 273, 261, 272, 261, 279, 291, 279, 281, 288, 284, 268, 276, 254, 275, 265, 271, 289, 307, 286, 259, 295, 216, 277, 284, 247, 276, 258, 280, 263, 263, 245, 254, 249, 260, 299, 285, 271, 271, 272, 277, 274, 282, , 308, 280, 274, 274,
|
|
||||||
NC A&T ,MEAC, 11-10, 279, 276.38, 277.02, 282.5, 29.02, 311, , 264, 255, 312, 287, 281, 247, 331, 259, 301, 297, 254, 286, 272, 287, 289, 237, 309, 298, 248, 209, 246, 284, 292, 302, 312, 275, 294, 237, 284, 198, 265, 276, 277, 225, 321, 254, 289, 294, 266, 224, 268, 318, 295, 300, 304, , 264, 275, 285, 268,
|
|
||||||
St Francis PA ,NEC, 6-16, 280, 277.91, 278.67, 279.0, 21.77, 210, , 268, 280, 258, 269, 253, 285, 258, 298, 260, 268, 296, 302, 274, 302, 270, 274, 282, 293, 282, 298, 279, 264, 255, 303, 235, 276, 309, 281, 264, 299, 267, 295, 294, 316, 228, 276, 302, 279, 275, 300, 309, 259, 248, 299, 284, , 272, 282, 270, 302,
|
|
||||||
IL Chicago ,HL, 9-13, 281, 279.47, 280.10, 280.5, 18.09, 315, , 289, 278, 298, 292, 310, 273, 285, 285, 287, 278, 280, 233, 298, 272, 284, 256, 290, 290, 265, 279, 259, 272, 302, 265, 246, 302, 267, 289, 287, 272, 293, 271, 272, 276, 291, 259, 266, 263, 281, 300, 293, 292, 272, 295, 274, , 220, 298, 286, 280,
|
|
||||||
NJIT ,AEC, 7-12, 282, 282.98, 283.10, 280.5, 16.70, 269, , 281, 279, 272, 281, 303, 289, 260, 314, 273, 272, 267, 269, 246, 265, 274, 296, 281, 282, 267, 293, 283, 269, 264, 293, 273, 274, 271, 273, 265, 316, 297, 286, 288, 302, 277, 313, 295, 278, 292, 300, 321, 265, 270, 305, 270, , 308, 287, 280, 308,
|
|
||||||
Towson ,CAA, 4-14, 283, 283.52, 284.06, 286.5, 19.59, 284, , 302, 300, 262, 288, 296, 304, 295, 258, 269, 257, 308, 279, 278, 300, 290, 307, 276, 273, 296, 321, 265, 282, 267, 274, 275, 309, 289, 255, 290, 265, 286, 282, 290, 321, 284, 309, 307, 248, 290, 256, 275, 266, 290, 292, 261, , 226, 297, 287, 301,
|
|
||||||
UTRGV ,WAC, 9-10, 284, 284.40, 284.31, 284.5, 22.61, 309, , 295, 304, 291, 309, 278, 303, 263, 319, 298, 254, 275, 260, 266, 271, 269, 346, 272, 296, 293, 259, 275, 305, 274, 281, 322, 248, 272, 321, 289, 296, 317, 285, 284, 254, 279, 302, 284, 286, 291, 234, 249, 277, 310, 291, 253, , 295, 260, 293, 270,
|
|
||||||
PFW ,HL, 8-15, 285, 284.57, 284.83, 286.0, 15.65, 293, , 284, 286, 281, 282, 290, 290, 286, 270, 294, 283, 304, 276, 280, 313, 286, 329, 288, 270, 279, 307, 311, 285, 295, 271, 248, 293, 280, 235, 283, 287, 296, 266, 265, 294, 269, 269, 293, 276, 287, 290, 305, 293, 268, 272, 279, , 286, 291, 290, 288,
|
|
||||||
Manhattan ,MAAC, 7-13, 286, 284.62, 285.19, 286.5, 18.54, 215, , 270, 283, 297, 265, 305, 274, 264, 275, 275, 275, 309, 287, 273, 296, 279, 271, 296, 288, 264, 304, 288, 260, 270, 287, 285, 310, 299, 257, 281, 293, 275, 305, 307, 299, 278, 257, 294, 284, 286, 290, 335, 295, 288, 282, 295, , 292, 302, 282, 298,
|
|
||||||
Jacksonville ,ASUN, 11-13, 287, 286.10, 286.27, 288.5, 13.64, 319, , 287, 284, 302, 295, 297, 281, 298, 286, 290, 307, 274, 265, 290, 288, 282, 253, 277, 287, 258, 275, 278, 280, 297, 291, 289, 290, 291, 282, 294, 291, 283, 293, 293, 249, 289, 273, 275, 303, 289, 271, 269, 286, 302, 312, 296, , 295, 290, 288, 275,
|
|
||||||
Grambling ,SWAC, 12-12, 288, 286.27, 287.48, 293.5, 30.65, 222, , 278, 272, 323, 298, 268, 244, 310, 291, 305, 320, 313, 272, 300, 289, 285, 198, 325, 316, 249, 237, 271, 279, 256, 309, 298, 294, 314, 312, 300, 253, 261, 318, 315, 229, 276, 221, 298, 318, 273, 312, 296, 323, 317, 316, 309, , 291, 293, 284, 271,
|
|
||||||
ULM ,SBC, 7-19, 289, 286.41, 287.23, 291.5, 21.41, 242, , 292, 306, 274, 286, 287, 311, 273, 248, 293, 262, 315, 314, 299, 263, 291, 295, 283, 276, 299, 318, 306, 296, 279, 288, 225, 286, 278, 315, 292, 301, 301, 294, 295, 314, 249, 295, 291, 290, 306, 224, 284, 283, 279, 279, 266, , 295, 292, 295, 304,
|
|
||||||
High Point ,BSo, 9-15, 290, 286.83, 287.19, 285.0, 18.81, 243, , 282, 295, 293, 284, 277, 302, 265, 303, 303, 274, 292, 283, 281, 273, 304, 260, 278, 286, 288, 280, 316, 302, 275, 292, 244, 281, 310, 270, 277, 305, 316, 269, 274, 309, 260, 260, 301, 283, 316, 300, 304, 275, 266, 273, 300, , 322, 294, 292, 318,
|
|
||||||
North Dakota ,SL, 9-17, 291, 287.01, 287.90, 287.0, 17.63, 325, , 311, 285, 280, 300, 302, 309, 308, 284, 299, 300, 264, 289, 305, 261, 297, 280, 271, 281, 287, 296, 295, 301, 293, 284, 213, 287, 252, 285, 297, 271, 299, 278, 285, 286, 297, 289, 300, 281, 297, 256, 285, 287, 281, 284, 283, , 274, 286, 300, 297,
|
|
||||||
New Orleans ,SLC, 10-15, 292, 288.37, 288.77, 290.0, 19.73, 305, , 291, 311, 259, 285, 272, 312, 291, 273, 314, 285, 312, 296, 270, 249, 293, 287, 260, 280, 308, 312, 302, 323, 280, 301, 260, 258, 303, 277, 293, 288, 314, 284, 278, 274, 275, 291, 297, 301, 308, 234, 274, 289, 301, 275, 277, , 326, 269, 298, 306,
|
|
||||||
New Mexico ,MWC, 6-16, 293, 288.50, 289.56, 295.0, 24.80, 335, , 301, 292, 271, 297, 274, 301, 303, 299, 281, 258, 303, 309, 308, 304, 296, 319, 305, 275, 321, 290, 256, 294, 300, 269, 256, 296, 239, 313, 302, 309, 279, 277, 281, 307, 324, 324, 277, 258, 270, 290, 260, 303, 319, 270, 267, , 200, 274, 301, 277,
|
|
||||||
Southern Univ ,SWAC, 8-11, 294, 289.16, 289.85, 291.5, 23.92, 228, , 271, 301, 309, 290, 264, 269, 304, 293, 310, 306, 326, 266, 275, 276, 287, 231, 318, 311, 273, 269, 270, 310, 241, 300, 316, 280, 321, 288, 288, 260, 289, 304, 303, 270, 262, 242, 314, 307, 299, 290, 289, 315, 325, 307, 303, , 303, 295, 289, 310,
|
|
||||||
Florida Intl ,CUSA, 9-17, 295, 289.99, 290.50, 293.5, 21.75, 303, , 297, 316, 287, 307, 289, 319, 284, 307, 277, 238, 305, 284, 296, 246, 303, 304, 293, 294, 311, 301, 269, 303, 285, 268, 259, 298, 264, 329, 295, 325, 313, 292, 289, 280, 299, 318, 262, 271, 294, 324, 262, 288, 289, 283, 252, , 240, 303, 310, 286,
|
|
||||||
Florida A&M ,MEAC, 8-12, 296, 291.13, 291.56, 294.5, 20.03, 331, , 273, 291, 305, 304, 256, 286, 306, 317, 321, 310, 302, 273, 285, 295, 309, 279, 285, 297, 284, 263, 282, 315, 277, 320, 287, 270, 306, 259, 285, 282, 303, 273, 273, 282, 318, 301, 304, 300, 301, 234, 277, 300, 246, 304, 298, , 298, 283, 294, 316,
|
|
||||||
North Florida ,ASUN, 8-15, 297, 291.95, 292.29, 293.5, 14.03, 307, , 296, 290, 283, 293, 309, 296, 313, 289, 289, 292, 286, 268, 304, 298, 301, 305, 280, 285, 286, 288, 261, 288, 303, 297, 294, 301, 288, 326, 296, 246, 291, 297, 299, 304, 302, 293, 296, 282, 305, 271, 276, 290, 305, 294, 287, , 259, 304, 296, 293,
|
|
||||||
W Michigan ,MAC, 5-16, 298, 292.98, 293.52, 299.0, 19.19, 268, , 308, 315, 284, 299, 291, 317, 305, 253, 297, 305, 299, 297, 302, 285, 307, 320, 310, 278, 314, 302, 309, 307, 290, 306, 286, 305, 273, 269, 299, 292, 305, 257, 261, 323, 308, 316, 288, 269, 309, 256, 294, 282, 296, 245, 285, , 262, 300, 304, 305,
|
|
||||||
Lehigh ,PL, 4-11, 299, 293.31, 294.40, 297.0, 27.71, 326, , 294, 263, 288, 289, 323, 278, 294, 315, 240, 281, 244, 298, 318, 326, 278, 333, 292, 317, 281, 310, 301, 252, 318, 294, 323, 297, 311, 331, 280, 302, 214, 326, 325, 292, 313, 298, 281, 297, 225, 324, 256, 263, 280, 313, 317, , 306, 276, 275, 300,
|
|
||||||
Rider ,MAAC, 6-17, 300, 293.39, 293.31, 293.5, 15.48, 262, , 286, 293, 289, 278, 307, 294, 280, 282, 278, 284, 317, 311, 287, 290, 288, 303, 311, 300, 289, 306, 281, 273, 282, 298, 261, 306, 298, 296, 278, 294, 290, 308, 308, 324, 267, 287, 305, 298, 296, 312, 337, 297, 284, 289, 297, , 267, 306, 291, 312,
|
|
||||||
Lamar ,SLC, 10-18, 301, 293.82, 294.65, 300.0, 18.21, 279, , 303, 302, 299, 291, 279, 300, 311, 256, 313, 296, 294, 310, 293, 297, 295, 241, 301, 304, 300, 291, 292, 316, 314, 286, 269, 289, 302, 301, 306, 254, 304, 301, 302, 264, 301, 274, 308, 304, 302, 234, 299, 310, 318, 298, 302, , 300, 289, 309, 292,
|
|
||||||
E Illinois ,OVC, 9-18, 302, 297.33, 298.46, 301.5, 16.60, 316, , 299, 313, 303, 306, 299, 310, 301, 308, 306, 270, 310, 295, 276, 284, 308, 268, 297, 303, 306, 305, 287, 314, 283, 254, 231, 299, 297, 305, 304, 308, 312, 302, 301, 300, 319, 297, 279, 295, 311, 300, 307, 301, 271, 311, 286, , 298, 305, 307, 309,
|
|
||||||
Northwestern LA ,SLC, 11-18, 303, 298.01, 297.81, 298.0, 17.68, 292, , 320, 298, 294, 302, 306, 283, 314, 288, 317, 311, 290, 301, 297, 283, 294, 276, 291, 314, 294, 282, 305, 318, , 316, 243, 288, 300, 316, 311, 252, 294, 317, 313, 260, 314, 266, 313, 317, 295, 271, 292, 316, 298, 308, 308, , 303, 288, 302, 289,
|
|
||||||
MTSU ,CUSA, 5-18, 304, 298.48, 299.04, 299.5, 16.52, 285, , 319, 320, 282, 296, 311, 320, 283, 294, 295, 271, 314, 300, 295, 270, 315, 308, 299, 291, 318, 323, 312, 317, 289, 277, 254, 312, 283, 308, 303, 311, 315, 299, 298, 326, 295, 319, 299, 277, 307, 290, 282, 281, 300, 276, 271, , 303, 310, 308, 303,
|
|
||||||
E Michigan ,MAC, 6-12, 305, 298.51, 299.31, 305.0, 21.67, 324, , 325, 312, 310, 308, 334, 316, 318, 300, 296, 294, 289, 303, 307, 306, 305, 277, 323, 295, 309, 278, 276, 313, 305, 259, 333, 320, 281, 264, 315, 266, 308, 270, 271, 298, 320, 317, 310, 274, 312, 271, 295, 311, 304, 269, 289, , 230, 315, 315, 291,
|
|
||||||
C Michigan ,MAC, 7-16, 306, 298.55, 298.71, 301.5, 19.20, 340, , 312, 318, 292, 301, 313, 321, 302, 262, 304, 304, 306, 282, 294, 292, 298, 312, 306, 289, 313, 316, 300, 319, 281, 318, 283, 315, 270, 298, 307, 295, 320, 274, 269, 319, 315, 321, 285, 265, 319, 256, 290, 298, 276, 280, 275, , 267, 316, 313, 313,
|
|
||||||
Northern Arizona ,BSC, 6-16, 307, 302.24, 301.89, 305.0, 16.20, 271, , 306, 299, 301, 305, 295, 299, 328, 271, 309, 312, 293, 306, 323, 321, 316, 272, 317, 308, 305, 303, 291, 308, , 299, 293, 295, 279, 311, 322, 283, 302, 314, 318, 313, 307, 277, 312, 302, 303, 256, 291, 321, 307, 323, 313, , 267, 299, 312, 295,
|
|
||||||
Hampton ,BSo, 11-14, 308, 304.20, 305.44, 308.5, 17.90, 328, , 313, 294, 308, 303, 314, 295, 300, 302, 311, 318, 288, 280, 315, 324, 312, 235, 308, 319, 274, 294, 304, 298, 299, 324, 277, 326, 318, 291, 305, 285, 311, 320, 317, 273, 304, 267, 316, 309, 318, 324, 310, 306, 297, 310, 321, , 313, 326, 305, 315,
|
|
||||||
Air Force ,MWC, 5-20, 309, 305.28, 306.54, 309.0, 20.66, 323, , 322, 305, 313, 312, 312, 287, 332, 311, 280, 301, 307, 320, 340, 322, 306, 309, 332, 310, 310, 299, 289, 289, 316, 290, 267, 324, 287, 334, 319, 317, 282, 316, 321, 318, 331, 307, 290, 305, 269, 324, 288, 305, 321, 301, 306, , 223, 309, 297, 279,
|
|
||||||
Fordham ,A10, 2-12, 310, 305.42, 305.94, 306.0, 19.32, 334, , 321, 309, 295, 313, 318, 315, 326, 261, 274, 303, 282, 290, 319, 325, 313, 342, 328, 301, 312, 328, 303, 292, 320, 278, 324, 331, 285, 302, 320, 304, 287, 281, 292, 320, 336, 331, 306, 287, 298, 312, 287, 280, 303, 306, 299, , 259, 320, 303, 311,
|
|
||||||
Robert Morris ,HL, 4-15, 311, 306.37, 306.90, 307.5, 16.52, 302, , 314, 326, 296, 310, 294, 331, 296, 276, 312, 290, 331, 305, 303, 314, 319, 324, 268, 299, 323, 319, 308, 322, 309, 305, 300, 313, 307, 279, 310, 307, 331, 279, 286, 330, 292, 325, 322, 285, 328, 290, 319, 302, 293, 296, 293, , 280, 317, 322, 328,
|
|
||||||
Binghamton ,AEC, 4-14, 312, 306.85, 307.92, 311.0, 17.80, 238, , 298, 319, 275, 294, 285, 322, 287, 301, 307, 324, 318, 318, 301, 307, 300, 326, 286, 309, 307, 329, 323, 300, 291, 308, 301, 311, 320, 290, 298, 312, 321, 312, 314, 329, 268, 330, 317, 316, 320, 312, 336, 294, 292, 303, 315, , 321, 311, 311, 327,
|
|
||||||
SIUE ,OVC, 9-17, 313, 308.25, 308.81, 312.0, 12.42, 273, , 293, 310, 322, 316, 298, 305, 312, 310, 315, 319, 300, 315, 321, 311, 314, 283, 322, 313, 298, 300, 315, 311, 313, 322, 282, 308, 313, 295, 318, 318, 310, 311, 312, 290, 312, 285, 282, 319, 310, 331, 306, 322, 314, 318, 319, , 314, 314, 314, 299,
|
|
||||||
Portland ,WCC, 6-15, 314, 310.42, 311.25, 319.5, 23.60, 330, , 330, 297, 320, 319, 322, 276, 327, 324, 279, 330, 278, 319, 337, 315, 310, 347, 319, 321, 302, 285, 310, 281, 323, 311, 330, 333, 322, 339, 327, 322, 259, 323, 320, 279, 335, 312, 283, 324, 260, 341, 301, 320, 324, 315, 329, , 253, 318, 299, 260,
|
|
||||||
W Illinois ,SL, 7-15, 315, 311.48, 312.10, 313.0, 11.93, 329, , 316, 321, 314, 320, 308, 327, 319, 305, 320, 313, 301, 304, 312, 299, 320, 311, 304, 302, 319, 309, 330, 325, 304, 315, 292, 292, 301, 318, 313, 313, 324, 300, 296, 322, 328, 323, 315, 311, 322, 271, 300, 304, 320, 293, 307, , 324, 301, 324, 321,
|
|
||||||
Tennessee Tech ,OVC, 5-22, 316, 313.70, 314.33, 315.0, 13.10, 288, , 309, 327, 317, 311, 300, 325, 307, 306, 322, 302, 328, 335, 316, 310, 323, 300, 313, 306, 324, 334, 324, 326, 308, 313, 272, 314, 317, 303, 316, 323, 323, 303, 305, 335, 311, 315, 311, 315, 325, 271, 324, 313, 311, 309, 316, , 323, 319, 321, 325,
|
|
||||||
Howard ,MEAC, 1-4, 317, 314.13, 315.62, 327.0, 31.34, 281, , 332, 276, 337, 327, 332, 259, 293, 343, 302, 339, 295, 316, 331, 334, 333, 331, 324, 328, 197, 340, 332, 258, 310, 332, 345, 345, 340, 300, 312, 320, 278, 309, 306, 287, 264, 248, 340, 330, 323, 341, , 317, 342, 330, 340, , 344, 343, 283, 307,
|
|
||||||
SC Upstate ,BSo, 5-18, 318, 314.47, 315.60, 320.0, 17.08, 246, , 305, 325, 307, 314, 304, 326, 288, 322, 323, 308, 324, 321, 330, 303, 335, 286, 279, 315, 316, 324, 329, 324, 311, 321, 302, 327, 325, 320, 309, 329, 330, 310, 311, 341, 286, 303, 324, 310, 333, 300, 326, 308, 299, 319, 320, , 329, 333, 320, 336,
|
|
||||||
NE Omaha ,SL, 5-20, 319, 314.91, 315.90, 318.0, 15.47, 327, , 326, 329, 304, 323, 316, 332, 320, 316, 324, 309, 322, 323, 311, 309, 334, 299, 295, 305, 328, 327, 322, 331, 315, 312, 255, 303, 304, 322, 324, 321, 329, 306, 304, 336, 325, 329, 321, 296, 329, 271, 313, 309, 309, 314, 301, , 300, 312, 328, 334,
|
|
||||||
Central Conn ,NEC, 5-16, 320, 316.31, 317.04, 319.0, 15.16, 300, , 310, 296, 321, 315, 331, 306, 299, 331, 300, 328, 316, 329, 322, 336, 299, 325, 316, 334, 295, 315, 337, 276, 306, 333, 299, 328, 330, 310, 301, 324, 284, 333, 331, 325, 317, 300, 327, 326, 293, 331, 332, 307, 313, 329, 335, , 334, 323, 306, 317,
|
|
||||||
Dixie St ,WAC, 8-13, 321, 316.54, 315.07, 317.0, 13.47, 295, , 323, 307, 330, 322, 315, 313, 315, 320, 318, 325, 279, 325, 325, 312, 302, , 314, 324, , 297, 343, 312, 319, 327, 331, 307, 315, 319, 317, 319, 318, 327, 323, 285, , 296, 309, 340, 304, 312, 298, 325, 328, 320, 328, , 314, 296, 317, 290,
|
|
||||||
Maine ,AEC, 2-7, 322, 317.14, 317.83, 321.0, 16.19, 333, , 300, 303, 334, 324, 301, 318, 316, 304, 319, 331, 291, 274, 310, 333, 311, 345, 330, 323, 291, 320, 297, 297, 334, 335, 343, 322, 305, 276, 308, 298, 322, 332, 336, 308, 327, 320, 334, 320, 324, 300, 325, 324, 327, 332, 327, , 316, 330, 319, 326,
|
|
||||||
NC Central ,MEAC, 5-9, 323, 317.72, 318.42, 320.5, 14.28, 320, , 307, 322, 331, 334, 333, 314, 335, 313, 330, 315, 321, 285, 314, 318, 332, 323, 327, 331, 304, 295, 294, 327, 312, 323, 338, 316, 335, 293, 325, 275, 325, 319, 319, 297, 322, 326, 330, 313, 327, 312, 311, 328, 291, 339, 318, , 308, 325, 316, 330,
|
|
||||||
Cent Arkansas ,SLC, 5-19, 324, 317.85, 318.65, 322.5, 11.37, 278, , 328, 330, 306, 321, 321, 323, 323, 327, 328, 314, 323, 331, 306, 286, 326, 314, 303, 327, 325, 314, 319, 332, 321, 304, 304, 300, 323, 317, 321, 328, 326, 325, 324, 327, 306, 310, 331, 322, 321, 312, 308, 327, 323, 327, 312, , 324, 308, 325, 324,
|
|
||||||
Tennessee St ,OVC, 4-19, 325, 318.89, 319.40, 318.0, 15.67, 301, , 317, 335, 316, 318, 317, 338, 292, 323, 333, 299, 338, 333, 313, 301, 336, 293, 307, 312, 336, 344, 321, 336, 301, 319, 306, 318, 328, 283, 323, 331, 339, 315, 310, 342, 285, 332, 318, 314, 337, 290, 333, 314, 316, 321, 311, , 317, 327, 331, 338,
|
|
||||||
Presbyterian ,BSo, 7-15, 326, 318.98, 319.54, 318.5, 10.34, 308, , 304, 328, 315, 317, 319, 330, 297, 326, 327, 316, 325, 317, 317, 317, 328, 313, 302, 318, 317, 322, 326, 328, 307, 326, 308, 317, 326, 287, 314, 332, 334, 313, 316, 331, 305, 314, 320, 321, 336, 312, 328, 312, 312, 326, 324, , 333, 328, 326, 337,
|
|
||||||
San Jose St ,MWC, 5-16, 327, 319.34, 320.50, 323.5, 18.22, 318, , 324, 317, 333, 325, 324, 297, 336, 321, 308, 332, 319, 330, 336, 342, 325, 316, 340, 320, 320, 325, 314, 304, 332, 325, 325, 335, 312, 342, 332, 310, 258, 324, 322, 310, 340, 322, 303, 325, 283, 336, 315, 335, 343, 302, 336, , 263, 321, 323, 285,
|
|
||||||
Alabama A&M ,SWAC, 6-9, 328, 322.28, 323.42, 327.5, 19.00, 314, , 318, 308, 341, 339, 336, 284, 324, 342, 329, 338, 327, 312, 332, 319, 317, 294, 342, 341, 276, 308, 320, 309, 296, 341, 339, 336, 332, 335, 328, 327, 307, 340, 340, 284, 300, 265, 336, 339, 313, 338, 317, 339, 338, 340, 337, , 326, 336, 318, 314,
|
|
||||||
Cal Poly ,BWC, 4-20, 329, 323.27, 323.75, 323.0, 8.97, 321, , 335, 331, 319, 326, 320, 329, 325, 328, 316, 327, 332, 337, 326, 323, 322, 344, 315, 322, 329, 336, 331, 320, 322, 317, 307, 321, 316, 297, 326, 338, 319, 322, 326, 334, 323, 334, 323, 332, 314, 300, 312, 326, 326, 322, 323, , 326, 313, 329, 319,
|
|
||||||
Alcorn St ,SWAC, 6-13, 330, 323.62, 324.96, 330.0, 18.27, 259, , 315, 323, 339, 328, 328, 292, 339, 333, 332, 341, 335, 322, 329, 337, 329, 270, 339, 339, 301, 317, 318, 321, 317, 336, 337, 332, 339, 337, 331, 303, 306, 335, 338, 305, 326, 278, 333, 336, 315, 331, 322, 341, 339, 333, 339, , 319, 335, 327, 322,
|
|
||||||
McNeese St ,SLC, 10-14, 331, 324.51, 326.19, 332.0, 21.03, 346, , 338, 336, 326, 337, 326, 342, 340, 330, 336, 322, 334, 326, 271, 320, 318, 233, 333, 332, 337, 330, 298, 341, 333, 310, 336, 291, 329, 327, 336, 334, 341, 334, 332, 301, 329, 342, 332, 328, 338, 271, 314, 337, 334, 331, 314, , 332, 307, 339, 332,
|
|
||||||
TN Martin ,OVC, 8-16, 332, 324.85, 325.88, 330.0, 14.27, 312, , 329, 314, 340, 330, 339, 307, 333, 329, 326, 337, 311, 332, 338, 338, 321, 301, 338, 337, 297, 313, 325, 306, 336, 339, 332, 340, 327, 323, 338, 314, 309, 339, 339, 306, 330, 279, 319, 331, 317, 336, 329, 338, 336, 336, 338, , 317, 334, 330, 296,
|
|
||||||
SE Louisiana ,SLC, 8-18, 333, 325.00, 326.27, 328.0, 11.46, 342, , 327, 324, 325, 331, 329, 324, 334, 336, 334, 326, 320, 324, 320, 328, 324, 264, 334, 329, 322, 311, 328, 330, 330, 329, 305, 319, 324, 336, 329, 330, 327, 329, 330, 311, 334, 311, 328, 329, 326, 324, 316, 336, 330, 338, 326, , 330, 322, 332, 320,
|
|
||||||
N Illinois ,MAC, 3-16, 334, 325.20, 326.62, 329.0, 15.30, 336, , 334, 332, 332, 329, 341, 328, 337, 287, 325, 321, 330, 327, 335, 335, 337, 332, 335, 325, 326, 333, 317, 329, 329, 314, 320, 339, 319, 325, 337, 289, 328, 321, 327, 332, 341, 337, 326, 312, 332, 312, 327, 333, 306, 324, 322, , 253, 338, 335, 331,
|
|
||||||
Kennesaw ,ASUN, 5-19, 335, 326.31, 328.25, 331.0, 17.15, 231, , 333, 339, 329, 333, 325, 339, 322, 337, 331, 336, 336, 341, 324, 331, 327, 334, 321, 326, 332, 332, 339, 333, 325, 328, 310, 323, 331, 299, 335, 339, 335, 328, 328, 337, 296, 336, 325, 338, 335, 300, 318, 319, 329, 317, 330, , 342, 329, 333, 333,
|
|
||||||
Incarnate Word ,SLC, 8-14, 336, 328.32, 329.54, 330.5, 10.06, 317, , 331, 333, 327, 336, 327, 335, 317, 338, 337, 335, 329, 328, 333, 316, 330, 275, 331, 336, 327, 326, 334, 337, 326, 331, 328, 325, 334, 341, 330, 341, 337, 330, 334, 312, 316, 328, 329, 335, 331, 331, 323, 329, 331, 328, 332, , 336, 324, 334, 323,
|
|
||||||
Charleston So ,BSo, 3-18, 337, 331.28, 332.56, 335.5, 11.59, 275, , 337, 341, 324, 332, 340, 343, 321, 334, 338, 323, 339, 338, 328, 327, 339, 328, 320, 330, 338, 337, 338, 340, 327, 338, 326, 334, 341, 309, 333, 337, 343, 331, 329, 344, 310, 338, 338, 323, 343, 324, 340, 330, 322, 325, 333, , 337, 337, 337, 343,
|
|
||||||
TAM C. Christi ,SLC, 5-19, 338, 332.40, 333.31, 335.5, 10.48, 291, , 341, 343, 328, 338, 335, 344, 329, 325, 340, 329, 340, 339, 334, 329, 338, 302, 326, 335, 340, 338, 336, 344, 335, 330, 319, 329, 337, 333, 339, 336, 345, 336, 337, 339, 309, 341, 337, 334, 340, 312, 334, 332, 337, 335, 325, , 331, 332, 338, 339,
|
|
||||||
Houston Bap ,SLC, 6-19, 339, 332.41, 332.96, 333.0, 4.97, 343, , 339, 334, 336, 335, 330, 333, 330, 335, 339, 333, 333, 334, 327, 332, 331, 317, 336, 338, 330, 335, 335, 335, 331, 337, 314, 330, 333, 330, 334, 333, 333, 338, 333, 328, 333, 327, 335, 337, 330, 331, 330, 331, 332, 341, 334, , 338, 331, 336, 329,
|
|
||||||
Denver ,SL, 2-19, 340, 338.47, 339.06, 339.0, 5.61, 337, , 344, 347, 335, 342, 337, 347, 338, 332, 343, 334, 344, 340, 339, 339, 343, 343, 329, 333, 343, 347, 341, 347, 328, 334, 329, 337, 336, 340, 341, 347, 347, 337, 335, 346, 332, 347, 339, 333, 345, 330, 343, 334, 335, 334, 331, , 339, 339, 344, 344,
|
|
||||||
Ark Pine Bluff ,SWAC, 4-21, 341, 339.23, 339.94, 341.0, 4.60, 338, , 336, 337, 343, 340, 338, 334, 344, 339, 342, 342, 343, 343, 342, 344, 341, 318, 346, 342, 334, 331, 342, 338, 338, 340, 335, 338, 342, 344, 342, 342, 332, 341, 342, 340, 342, 335, 341, 344, 334, 341, 338, 342, 344, 343, 342, , 342, 340, 340, 340,
|
|
||||||
Idaho ,BSC, 1-21, 342, 340.24, 341.00, 341.0, 4.50, 339, , 345, 344, 338, 341, 343, 345, 341, 340, 341, 340, 342, 342, 343, 340, 344, 335, 337, 340, 342, 346, 340, 343, 339, 342, 317, 341, 338, 343, 344, 345, 344, 342, 343, 347, 338, 344, 343, 341, 342, 338, 339, 340, 333, 337, 341, , 334, 341, 343, 342,
|
|
||||||
Alabama St ,SWAC, 4-14, 343, 340.26, 340.94, 342.0, 5.07, 341, , 340, 340, 344, 344, 342, 337, 343, 344, 344, 343, 346, 336, 341, 341, 340, 322, 345, 345, 331, 342, 333, 339, 324, 344, 342, 342, 343, 345, 343, 340, 338, 345, 345, 333, 337, 333, 344, 343, 341, 341, 342, 345, 345, 345, 343, , 340, 344, 342, 341,
|
|
||||||
Delaware St ,MEAC, 3-16, 344, 340.82, 341.35, 342.0, 3.46, 332, , 342, 338, 342, 343, 345, 340, 342, 345, 335, 344, 341, 345, 344, 343, 342, 336, 341, 344, 335, 343, 345, 334, 337, 343, 340, 344, 346, 346, 340, 344, 336, 343, 341, 338, 339, 340, 342, 345, 339, 345, 341, 343, 340, 342, 345, , 345, 342, 341, 335,
|
|
||||||
S Carolina St ,MEAC, 1-17, 345, 342.92, 343.60, 344.0, 3.40, 344, , 343, 345, 345, 345, 344, 346, 345, 341, 345, 345, 345, 344, 345, 345, 345, 327, 343, 343, 341, 345, 344, 345, 340, 345, 341, 343, 344, 332, 345, 343, 346, 344, 344, 343, 343, 346, 345, 342, 347, 338, 345, 344, 341, 344, 344, , 341, 345, 345, 347,
|
|
||||||
Chicago St ,WAC, 0-9, 346, 343.12, 344.08, 346.0, 5.67, 347, , 346, 342, 346, 346, 346, 336, 346, 346, 347, 346, 337, 346, 346, 346, 346, 330, 344, 346, 333, 339, 346, 346, 341, 346, 346, 346, 345, 338, 346, 335, 342, 346, 346, 315, 345, 345, 347, 346, 346, 346, 344, 346, 346, 346, 346, , 346, 346, 346, 346,
|
|
||||||
MS Valley St ,SWAC, 2-22, 347, 344.73, 345.65, 347.0, 4.17, 345, , 347, 346, 347, 347, 347, 341, 347, 347, 346, 347, 347, 347, 347, 347, 347, 321, 347, 347, 339, 341, 347, 342, 342, 347, 344, 347, 347, 347, 347, 346, 340, 347, 347, 345, 344, 339, 346, 347, 344, 347, 346, 347, 347, 347, 347, , 347, 347, 347, 345,
|
|
||||||
|
Reference in New Issue
Block a user