tournament 1.1.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) hide show
  1. data/History.txt +15 -0
  2. data/Manifest.txt +241 -2
  3. data/README.txt +152 -12
  4. data/Rakefile +9 -6
  5. data/bin/benchmark_pool +0 -0
  6. data/bin/gui.rb +3 -1
  7. data/bin/picker +0 -0
  8. data/bin/pool +139 -15
  9. data/lib/tournament/bracket.rb +33 -50
  10. data/lib/tournament/entry.rb +3 -0
  11. data/lib/tournament/pool.rb +144 -93
  12. data/lib/tournament/scoring_strategy.rb +69 -0
  13. data/lib/tournament/webgui_installer.rb +109 -0
  14. data/tasks/ann.rake +19 -14
  15. data/tasks/bones.rake +6 -25
  16. data/tasks/gem.rake +46 -36
  17. data/tasks/git.rake +41 -0
  18. data/tasks/jamis.rb +589 -0
  19. data/tasks/notes.rake +28 -0
  20. data/tasks/post_load.rake +18 -11
  21. data/tasks/{doc.rake → rdoc.rake} +12 -9
  22. data/tasks/rubyforge.rake +12 -12
  23. data/tasks/setup.rb +121 -80
  24. data/tasks/spec.rake +12 -13
  25. data/tasks/svn.rake +15 -11
  26. data/tasks/test.rake +6 -6
  27. data/test/test_tournament.rb +8 -0
  28. data/test/test_webgui_installer.rb +64 -0
  29. data/webgui/README +256 -0
  30. data/webgui/Rakefile +10 -0
  31. data/webgui/app/controllers/admin_controller.rb +61 -0
  32. data/webgui/app/controllers/application.rb +25 -0
  33. data/webgui/app/controllers/entry_controller.rb +97 -0
  34. data/webgui/app/controllers/pool_controller.rb +4 -0
  35. data/webgui/app/controllers/reports_controller.rb +7 -0
  36. data/webgui/app/controllers/sessions_controller.rb +43 -0
  37. data/webgui/app/controllers/teams_controller.rb +75 -0
  38. data/webgui/app/controllers/users_controller.rb +57 -0
  39. data/webgui/app/helpers/admin_helper.rb +2 -0
  40. data/webgui/app/helpers/application_helper.rb +3 -0
  41. data/webgui/app/helpers/entry_helper.rb +2 -0
  42. data/webgui/app/helpers/pool_helper.rb +2 -0
  43. data/webgui/app/helpers/reports_helper.rb +2 -0
  44. data/webgui/app/helpers/sessions_helper.rb +2 -0
  45. data/webgui/app/helpers/teams_helper.rb +2 -0
  46. data/webgui/app/helpers/users_helper.rb +93 -0
  47. data/webgui/app/models/entry.rb +42 -0
  48. data/webgui/app/models/pool.rb +141 -0
  49. data/webgui/app/models/region.rb +3 -0
  50. data/webgui/app/models/role.rb +4 -0
  51. data/webgui/app/models/seeding.rb +4 -0
  52. data/webgui/app/models/team.rb +6 -0
  53. data/webgui/app/models/user.rb +98 -0
  54. data/webgui/app/models/user_mailer.rb +25 -0
  55. data/webgui/app/views/admin/bracket.html.erb +3 -0
  56. data/webgui/app/views/admin/entries.html.erb +25 -0
  57. data/webgui/app/views/admin/index.html.erb +17 -0
  58. data/webgui/app/views/admin/pool.html.erb +53 -0
  59. data/webgui/app/views/entry/index.html.erb +16 -0
  60. data/webgui/app/views/entry/print.erb +1 -0
  61. data/webgui/app/views/entry/print.html.erb +1 -0
  62. data/webgui/app/views/entry/show.html.erb +1 -0
  63. data/webgui/app/views/layouts/bracket.html.erb +37 -0
  64. data/webgui/app/views/layouts/default.html.erb +62 -0
  65. data/webgui/app/views/layouts/print.html.erb +12 -0
  66. data/webgui/app/views/layouts/report.html.erb +38 -0
  67. data/webgui/app/views/pool/index.html.erb +36 -0
  68. data/webgui/app/views/reports/_report.html.erb +11 -0
  69. data/webgui/app/views/reports/show.html.erb +12 -0
  70. data/webgui/app/views/sessions/new.html.erb +21 -0
  71. data/webgui/app/views/shared/_admins.html.erb +8 -0
  72. data/webgui/app/views/shared/_bracket.html.erb +1296 -0
  73. data/webgui/app/views/teams/choose.html.erb +57 -0
  74. data/webgui/app/views/user_mailer/activation.erb +3 -0
  75. data/webgui/app/views/user_mailer/signup_notification.erb +8 -0
  76. data/webgui/app/views/users/_user_bar.html.erb +8 -0
  77. data/webgui/app/views/users/new.html.erb +19 -0
  78. data/webgui/config/boot.rb +109 -0
  79. data/webgui/config/database.yml +22 -0
  80. data/webgui/config/environment.rb +78 -0
  81. data/webgui/config/environments/development.rb +29 -0
  82. data/webgui/config/environments/production.rb +24 -0
  83. data/webgui/config/environments/test.rb +22 -0
  84. data/webgui/config/initializers/inflections.rb +10 -0
  85. data/webgui/config/initializers/mime_types.rb +5 -0
  86. data/webgui/config/initializers/new_rails_defaults.rb +17 -0
  87. data/webgui/config/initializers/pool.rb +33 -0
  88. data/webgui/config/initializers/site_keys.rb +38 -0
  89. data/webgui/config/locales/en.yml +5 -0
  90. data/webgui/config/routes.rb +56 -0
  91. data/webgui/db/development.sqlite3 +0 -0
  92. data/webgui/db/migrate/20090216015836_create_entries.rb +13 -0
  93. data/webgui/db/migrate/20090217001611_add_tie_break_to_entry.rb +9 -0
  94. data/webgui/db/migrate/20090217004039_create_users.rb +23 -0
  95. data/webgui/db/migrate/20090217014940_relate_entry_and_user.rb +10 -0
  96. data/webgui/db/migrate/20090218024350_create_roles.rb +17 -0
  97. data/webgui/db/migrate/20090218024657_add_postition_to_roles.rb +9 -0
  98. data/webgui/db/migrate/20090218025240_add_admin_role.rb +10 -0
  99. data/webgui/db/migrate/20090225022928_create_pools.rb +16 -0
  100. data/webgui/db/migrate/20090225030346_associate_pool_and_entry.rb +9 -0
  101. data/webgui/db/migrate/20090225072358_change_pool_data_column.rb +9 -0
  102. data/webgui/db/migrate/20090225072849_add_completed_to_entries.rb +9 -0
  103. data/webgui/db/migrate/20090225074149_add_pool_id_index_to_entries.rb +9 -0
  104. data/webgui/db/migrate/20090225084414_add_user_id_to_pool.rb +9 -0
  105. data/webgui/db/migrate/20090226021913_add_active_to_pools.rb +9 -0
  106. data/webgui/db/migrate/20090226142240_rename_bracket_column_to_data.rb +9 -0
  107. data/webgui/db/migrate/20090301014710_create_teams.rb +84 -0
  108. data/webgui/db/migrate/20090301025902_add_more_teams.rb +16 -0
  109. data/webgui/db/migrate/20090301041526_create_seedings.rb +16 -0
  110. data/webgui/db/migrate/20090301090511_create_regions.rb +14 -0
  111. data/webgui/db/migrate/teams.txt +347 -0
  112. data/webgui/db/pool.yml +408 -0
  113. data/webgui/db/schema.rb +91 -0
  114. data/webgui/db/test.sqlite3 +0 -0
  115. data/webgui/doc/README_FOR_APP +5 -0
  116. data/webgui/lib/authenticated_system.rb +189 -0
  117. data/webgui/lib/authenticated_test_helper.rb +11 -0
  118. data/webgui/lib/form_object.rb +70 -0
  119. data/webgui/lib/pdf_helper.rb +47 -0
  120. data/webgui/lib/prince.rb +74 -0
  121. data/webgui/lib/saves_picks.rb +23 -0
  122. data/webgui/lib/tasks/admin.rake +10 -0
  123. data/webgui/public/404.html +30 -0
  124. data/webgui/public/422.html +30 -0
  125. data/webgui/public/500.html +33 -0
  126. data/webgui/public/dispatch.cgi +10 -0
  127. data/webgui/public/dispatch.fcgi +24 -0
  128. data/webgui/public/dispatch.rb +10 -0
  129. data/webgui/public/favicon.ico +0 -0
  130. data/webgui/public/images/2009FinalFour.png +0 -0
  131. data/webgui/public/images/rails.png +0 -0
  132. data/webgui/public/javascripts/application.js +2 -0
  133. data/webgui/public/javascripts/bracket.js +73 -0
  134. data/webgui/public/javascripts/controls.js +963 -0
  135. data/webgui/public/javascripts/dragdrop.js +973 -0
  136. data/webgui/public/javascripts/effects.js +1128 -0
  137. data/webgui/public/javascripts/prototype.js +4320 -0
  138. data/webgui/public/robots.txt +5 -0
  139. data/webgui/public/stylesheets/bracket-print.css +39 -0
  140. data/webgui/public/stylesheets/bracket.css +125 -0
  141. data/webgui/public/stylesheets/main.css +144 -0
  142. data/webgui/public/stylesheets/prince.css +6 -0
  143. data/webgui/public/stylesheets/prince_landscape.css +1 -0
  144. data/webgui/script/about +4 -0
  145. data/webgui/script/console +3 -0
  146. data/webgui/script/dbconsole +3 -0
  147. data/webgui/script/destroy +3 -0
  148. data/webgui/script/generate +3 -0
  149. data/webgui/script/performance/benchmarker +3 -0
  150. data/webgui/script/performance/profiler +3 -0
  151. data/webgui/script/performance/request +3 -0
  152. data/webgui/script/plugin +3 -0
  153. data/webgui/script/process/inspector +3 -0
  154. data/webgui/script/process/reaper +3 -0
  155. data/webgui/script/process/spawner +3 -0
  156. data/webgui/script/runner +3 -0
  157. data/webgui/script/server +3 -0
  158. data/webgui/test/fixtures/entries.yml +10 -0
  159. data/webgui/test/fixtures/pools.yml +14 -0
  160. data/webgui/test/fixtures/regions.yml +11 -0
  161. data/webgui/test/fixtures/roles.yml +11 -0
  162. data/webgui/test/fixtures/roles_users.yml +3 -0
  163. data/webgui/test/fixtures/seedings.yml +12 -0
  164. data/webgui/test/fixtures/teams.yml +3051 -0
  165. data/webgui/test/fixtures/users.yml +44 -0
  166. data/webgui/test/functional/admin_controller_test.rb +8 -0
  167. data/webgui/test/functional/entry_controller_test.rb +27 -0
  168. data/webgui/test/functional/pool_controller_test.rb +8 -0
  169. data/webgui/test/functional/reports_controller_test.rb +8 -0
  170. data/webgui/test/functional/sessions_controller_test.rb +82 -0
  171. data/webgui/test/functional/teams_controller_test.rb +216 -0
  172. data/webgui/test/functional/users_controller_test.rb +88 -0
  173. data/webgui/test/performance/browsing_test.rb +9 -0
  174. data/webgui/test/test_helper.rb +38 -0
  175. data/webgui/test/unit/entry_test.rb +8 -0
  176. data/webgui/test/unit/pool_test.rb +8 -0
  177. data/webgui/test/unit/region_test.rb +8 -0
  178. data/webgui/test/unit/role_test.rb +8 -0
  179. data/webgui/test/unit/seeding_test.rb +8 -0
  180. data/webgui/test/unit/team_test.rb +10 -0
  181. data/webgui/test/unit/user_mailer_test.rb +31 -0
  182. data/webgui/test/unit/user_test.rb +109 -0
  183. data/webgui/vendor/plugins/auto_complete/README +23 -0
  184. data/webgui/vendor/plugins/auto_complete/Rakefile +22 -0
  185. data/webgui/vendor/plugins/auto_complete/init.rb +2 -0
  186. data/webgui/vendor/plugins/auto_complete/lib/auto_complete.rb +47 -0
  187. data/webgui/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +143 -0
  188. data/webgui/vendor/plugins/auto_complete/test/auto_complete_test.rb +67 -0
  189. data/webgui/vendor/plugins/enumerations_mixin/ATTENTION +15 -0
  190. data/webgui/vendor/plugins/enumerations_mixin/LICENSE +20 -0
  191. data/webgui/vendor/plugins/enumerations_mixin/README_ENUMERATIONS +163 -0
  192. data/webgui/vendor/plugins/enumerations_mixin/init.rb +21 -0
  193. data/webgui/vendor/plugins/enumerations_mixin/lib/active_record/acts/enumerated.rb +177 -0
  194. data/webgui/vendor/plugins/enumerations_mixin/lib/active_record/aggregations/has_enumerated.rb +60 -0
  195. data/webgui/vendor/plugins/enumerations_mixin/lib/active_record/virtual_enumerations.rb +68 -0
  196. data/webgui/vendor/plugins/enumerations_mixin/virtual_enumerations_sample.rb +76 -0
  197. data/webgui/vendor/plugins/restful_authentication/.gitignore +21 -0
  198. data/webgui/vendor/plugins/restful_authentication/CHANGELOG +68 -0
  199. data/webgui/vendor/plugins/restful_authentication/README.textile +224 -0
  200. data/webgui/vendor/plugins/restful_authentication/Rakefile +32 -0
  201. data/webgui/vendor/plugins/restful_authentication/TODO +15 -0
  202. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/USAGE +1 -0
  203. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/authenticated_generator.rb +478 -0
  204. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/lib/insert_routes.rb +54 -0
  205. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/_model_partial.html.erb +8 -0
  206. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/activation.erb +3 -0
  207. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_system.rb +189 -0
  208. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_test_helper.rb +22 -0
  209. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/controller.rb +43 -0
  210. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb +2 -0
  211. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/login.html.erb +16 -0
  212. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/mailer.rb +25 -0
  213. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/migration.rb +26 -0
  214. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model.rb +83 -0
  215. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_controller.rb +85 -0
  216. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb +93 -0
  217. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper_spec.rb +158 -0
  218. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/observer.rb +11 -0
  219. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/signup.html.erb +19 -0
  220. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.erb +8 -0
  221. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/site_keys.rb +38 -0
  222. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/access_control_spec.rb +90 -0
  223. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb +102 -0
  224. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb +139 -0
  225. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/users_controller_spec.rb +198 -0
  226. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/fixtures/users.yml +60 -0
  227. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/helpers/users_helper_spec.rb +141 -0
  228. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/models/user_spec.rb +290 -0
  229. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/rest_auth_stories.rb +22 -0
  230. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/rest_auth_stories_helper.rb +81 -0
  231. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_navigation_steps.rb +49 -0
  232. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_resource_steps.rb +179 -0
  233. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_response_steps.rb +171 -0
  234. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/user_steps.rb +153 -0
  235. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/users/accounts.story +186 -0
  236. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/users/sessions.story +134 -0
  237. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/functional_test.rb +82 -0
  238. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/mailer_test.rb +31 -0
  239. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/model_functional_test.rb +93 -0
  240. data/webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/unit_test.rb +164 -0
  241. data/webgui/vendor/plugins/restful_authentication/init.rb +1 -0
  242. data/webgui/vendor/plugins/restful_authentication/install.rb +1 -0
  243. data/webgui/vendor/plugins/restful_authentication/lib/authentication/by_cookie_token.rb +82 -0
  244. data/webgui/vendor/plugins/restful_authentication/lib/authentication/by_password.rb +64 -0
  245. data/webgui/vendor/plugins/restful_authentication/lib/authentication.rb +40 -0
  246. data/webgui/vendor/plugins/restful_authentication/lib/authorization/aasm_roles.rb +63 -0
  247. data/webgui/vendor/plugins/restful_authentication/lib/authorization/stateful_roles.rb +62 -0
  248. data/webgui/vendor/plugins/restful_authentication/lib/authorization.rb +14 -0
  249. data/webgui/vendor/plugins/restful_authentication/lib/trustification/email_validation.rb +20 -0
  250. data/webgui/vendor/plugins/restful_authentication/lib/trustification.rb +14 -0
  251. data/webgui/vendor/plugins/restful_authentication/notes/AccessControl.txt +2 -0
  252. data/webgui/vendor/plugins/restful_authentication/notes/Authentication.txt +5 -0
  253. data/webgui/vendor/plugins/restful_authentication/notes/Authorization.txt +154 -0
  254. data/webgui/vendor/plugins/restful_authentication/notes/RailsPlugins.txt +78 -0
  255. data/webgui/vendor/plugins/restful_authentication/notes/SecurityFramework.graffle +0 -0
  256. data/webgui/vendor/plugins/restful_authentication/notes/SecurityFramework.png +0 -0
  257. data/webgui/vendor/plugins/restful_authentication/notes/SecurityPatterns.txt +163 -0
  258. data/webgui/vendor/plugins/restful_authentication/notes/Tradeoffs.txt +126 -0
  259. data/webgui/vendor/plugins/restful_authentication/notes/Trustification.txt +49 -0
  260. data/webgui/vendor/plugins/restful_authentication/rails/init.rb +3 -0
  261. data/webgui/vendor/plugins/restful_authentication/restful-authentication.gemspec +33 -0
  262. data/webgui/vendor/plugins/restful_authentication/tasks/auth.rake +33 -0
  263. metadata +288 -8
  264. data/tasks/annotations.rake +0 -22
@@ -0,0 +1,3051 @@
1
+ Web:
2
+
3
+ name: Weber State
4
+ created_at: 2009-03-01 04:12:32
5
+ updated_at: 2009-03-01 04:12:32
6
+ id: "329"
7
+ short_name: Web
8
+
9
+
10
+ VA:
11
+
12
+ name: Virginia
13
+ created_at: 2009-03-01 04:12:32
14
+ updated_at: 2009-03-01 04:12:32
15
+ id: "322"
16
+ short_name: VA
17
+
18
+
19
+ Bwn:
20
+
21
+ name: Brown
22
+ created_at: 2009-03-01 04:12:29
23
+ updated_at: 2009-03-01 04:12:29
24
+ id: "85"
25
+ short_name: Bwn
26
+
27
+
28
+ GT:
29
+
30
+ name: Georgetown
31
+ created_at: 2009-03-01 01:58:19
32
+ updated_at: 2009-03-01 01:58:19
33
+ id: "31"
34
+ short_name: GT
35
+
36
+
37
+ AkS:
38
+
39
+ name: Arkansas State
40
+ created_at: 2009-03-01 04:12:29
41
+ updated_at: 2009-03-01 04:12:29
42
+ id: "73"
43
+ short_name: AkS
44
+
45
+
46
+ TPA:
47
+
48
+ name: Texas-Pan American
49
+ created_at: 2009-03-01 04:12:32
50
+ updated_at: 2009-03-01 04:12:32
51
+ id: "300"
52
+ short_name: TPA
53
+
54
+
55
+ SFP:
56
+
57
+ name: St. Francis (PA)
58
+ created_at: 2009-03-01 04:12:32
59
+ updated_at: 2009-03-01 04:12:32
60
+ id: "288"
61
+ short_name: SFP
62
+
63
+
64
+ SCS:
65
+
66
+ name: South Carolina State
67
+ created_at: 2009-03-01 04:12:32
68
+ updated_at: 2009-03-01 04:12:32
69
+ id: "276"
70
+ short_name: SCS
71
+
72
+
73
+ SF:
74
+
75
+ name: San Francisco
76
+ created_at: 2009-03-01 04:12:31
77
+ updated_at: 2009-03-01 04:12:31
78
+ id: "268"
79
+ short_name: SF
80
+
81
+
82
+ OkS:
83
+
84
+ name: Oklahoma State
85
+ created_at: 2009-03-01 04:12:31
86
+ updated_at: 2009-03-01 04:12:31
87
+ id: "242"
88
+ short_name: OkS
89
+
90
+
91
+ Cen:
92
+
93
+ name: Centenary
94
+ created_at: 2009-03-01 04:12:29
95
+ updated_at: 2009-03-01 04:12:29
96
+ id: "95"
97
+ short_name: Cen
98
+
99
+
100
+ SAl:
101
+
102
+ name: South Alabama
103
+ created_at: 2009-03-01 01:58:18
104
+ updated_at: 2009-03-01 01:58:18
105
+ id: "14"
106
+ short_name: SAl
107
+
108
+
109
+ Wis:
110
+
111
+ name: Wisconsin
112
+ created_at: 2009-03-01 01:58:19
113
+ updated_at: 2009-03-01 01:58:19
114
+ id: "27"
115
+ short_name: Wis
116
+
117
+
118
+ Lip:
119
+
120
+ name: Lipscomb
121
+ created_at: 2009-03-01 04:12:30
122
+ updated_at: 2009-03-01 04:12:30
123
+ id: "178"
124
+ short_name: Lip
125
+
126
+
127
+ BYU:
128
+
129
+ name: BYU
130
+ created_at: 2009-03-01 01:58:19
131
+ updated_at: 2009-03-01 01:58:19
132
+ id: "51"
133
+ short_name: BYU
134
+
135
+
136
+ UNC:
137
+
138
+ name: North Carolina
139
+ created_at: 2009-03-01 01:58:18
140
+ updated_at: 2009-03-01 01:58:18
141
+ id: "1"
142
+ short_name: UNC
143
+
144
+
145
+ Stn:
146
+
147
+ name: Seton Hall
148
+ created_at: 2009-03-01 04:12:32
149
+ updated_at: 2009-03-01 04:12:32
150
+ id: "273"
151
+ short_name: Stn
152
+
153
+
154
+ MoS:
155
+
156
+ name: Montana State
157
+ created_at: 2009-03-01 04:12:31
158
+ updated_at: 2009-03-01 04:12:31
159
+ id: "208"
160
+ short_name: MoS
161
+
162
+
163
+ ASt:
164
+
165
+ name: Alabama State
166
+ created_at: 2009-03-01 04:12:29
167
+ updated_at: 2009-03-01 04:12:29
168
+ id: "68"
169
+ short_name: ASt
170
+
171
+
172
+ CSF:
173
+
174
+ name: CSU Fullerton
175
+ created_at: 2009-03-01 01:58:19
176
+ updated_at: 2009-03-01 01:58:19
177
+ id: "28"
178
+ short_name: CSF
179
+
180
+
181
+ Ham:
182
+
183
+ name: Hampton
184
+ created_at: 2009-03-01 04:12:30
185
+ updated_at: 2009-03-01 04:12:30
186
+ id: "148"
187
+ short_name: Ham
188
+
189
+
190
+ Val:
191
+
192
+ name: Valparaiso
193
+ created_at: 2009-03-01 04:12:32
194
+ updated_at: 2009-03-01 04:12:32
195
+ id: "320"
196
+ short_name: Val
197
+
198
+
199
+ Tul:
200
+
201
+ name: Tulsa
202
+ created_at: 2009-03-01 04:12:32
203
+ updated_at: 2009-03-01 04:12:32
204
+ id: "306"
205
+ short_name: Tul
206
+
207
+
208
+ SDk:
209
+
210
+ name: South Dakota
211
+ created_at: 2009-03-01 04:12:32
212
+ updated_at: 2009-03-01 04:12:32
213
+ id: "277"
214
+ short_name: SDk
215
+
216
+
217
+ EKy:
218
+
219
+ name: Eastern Kentucky
220
+ created_at: 2009-03-01 04:12:30
221
+ updated_at: 2009-03-01 04:12:30
222
+ id: "125"
223
+ short_name: EKy
224
+
225
+
226
+ TSA:
227
+
228
+ name: Texas-San Antonio
229
+ created_at: 2009-03-01 04:12:32
230
+ updated_at: 2009-03-01 04:12:32
231
+ id: "301"
232
+ short_name: TSA
233
+
234
+
235
+ Nev:
236
+
237
+ name: Nevada
238
+ created_at: 2009-03-01 04:12:31
239
+ updated_at: 2009-03-01 04:12:31
240
+ id: "215"
241
+ short_name: Nev
242
+
243
+
244
+ NMS:
245
+
246
+ name: New Mexico State
247
+ created_at: 2009-03-01 04:12:31
248
+ updated_at: 2009-03-01 04:12:31
249
+ id: "218"
250
+ short_name: NMS
251
+
252
+
253
+ Bay:
254
+
255
+ name: Baylor
256
+ created_at: 2009-03-01 01:58:19
257
+ updated_at: 2009-03-01 01:58:19
258
+ id: "58"
259
+ short_name: Bay
260
+
261
+
262
+ UNG:
263
+
264
+ name: UNC Greensboro
265
+ created_at: 2009-03-01 04:12:32
266
+ updated_at: 2009-03-01 04:12:32
267
+ id: "314"
268
+ short_name: UNG
269
+
270
+
271
+ UAB:
272
+
273
+ name: UAB
274
+ created_at: 2009-03-01 04:12:32
275
+ updated_at: 2009-03-01 04:12:32
276
+ id: "307"
277
+ short_name: UAB
278
+
279
+
280
+ Aub:
281
+
282
+ name: Auburn
283
+ created_at: 2009-03-01 04:12:29
284
+ updated_at: 2009-03-01 04:12:29
285
+ id: "77"
286
+ short_name: Aub
287
+
288
+
289
+ Tem:
290
+
291
+ name: Temple
292
+ created_at: 2009-03-01 01:58:19
293
+ updated_at: 2009-03-01 01:58:19
294
+ id: "38"
295
+ short_name: Tem
296
+
297
+
298
+ Van:
299
+
300
+ name: Vanderbilt
301
+ created_at: 2009-03-01 01:58:18
302
+ updated_at: 2009-03-01 01:58:18
303
+ id: "23"
304
+ short_name: Van
305
+
306
+
307
+ Dra:
308
+
309
+ name: Drake
310
+ created_at: 2009-03-01 01:58:19
311
+ updated_at: 2009-03-01 01:58:19
312
+ id: "53"
313
+ short_name: Dra
314
+
315
+
316
+ LaT:
317
+
318
+ name: Louisiana Tech
319
+ created_at: 2009-03-01 04:12:30
320
+ updated_at: 2009-03-01 04:12:30
321
+ id: "182"
322
+ short_name: LaT
323
+
324
+
325
+ HiP:
326
+
327
+ name: High Point
328
+ created_at: 2009-03-01 04:12:30
329
+ updated_at: 2009-03-01 04:12:30
330
+ id: "152"
331
+ short_name: HiP
332
+
333
+
334
+ Tow:
335
+
336
+ name: Towson
337
+ created_at: 2009-03-01 04:12:32
338
+ updated_at: 2009-03-01 04:12:32
339
+ id: "303"
340
+ short_name: Tow
341
+
342
+
343
+ MrS:
344
+
345
+ name: Morehead State
346
+ created_at: 2009-03-01 04:12:31
347
+ updated_at: 2009-03-01 04:12:31
348
+ id: "209"
349
+ short_name: MrS
350
+
351
+
352
+ Ten:
353
+
354
+ name: Tennessee
355
+ created_at: 2009-03-01 01:58:18
356
+ updated_at: 2009-03-01 01:58:18
357
+ id: "15"
358
+ short_name: Ten
359
+
360
+
361
+ Jck:
362
+
363
+ name: Jacksonville
364
+ created_at: 2009-03-01 04:12:30
365
+ updated_at: 2009-03-01 04:12:30
366
+ id: "169"
367
+ short_name: Jck
368
+
369
+
370
+ Ore:
371
+
372
+ name: Oregon
373
+ created_at: 2009-03-01 01:58:19
374
+ updated_at: 2009-03-01 01:58:19
375
+ id: "36"
376
+ short_name: Ore
377
+
378
+
379
+ Sts:
380
+
381
+ name: Stetson
382
+ created_at: 2009-03-01 04:12:32
383
+ updated_at: 2009-03-01 04:12:32
384
+ id: "292"
385
+ short_name: Sts
386
+
387
+
388
+ Msh:
389
+
390
+ name: Marshall
391
+ created_at: 2009-03-01 04:12:30
392
+ updated_at: 2009-03-01 04:12:30
393
+ id: "192"
394
+ short_name: Msh
395
+
396
+
397
+ GSo:
398
+
399
+ name: Georgia Southern
400
+ created_at: 2009-03-01 04:12:30
401
+ updated_at: 2009-03-01 04:12:30
402
+ id: "143"
403
+ short_name: GSo
404
+
405
+
406
+ DSt:
407
+
408
+ name: Delaware State
409
+ created_at: 2009-03-01 04:12:29
410
+ updated_at: 2009-03-01 04:12:29
411
+ id: "116"
412
+ short_name: DSt
413
+
414
+
415
+ Yal:
416
+
417
+ name: Yale
418
+ created_at: 2009-03-01 04:12:33
419
+ updated_at: 2009-03-01 04:12:33
420
+ id: "339"
421
+ short_name: Yal
422
+
423
+
424
+ Sav:
425
+
426
+ name: Savannah State
427
+ created_at: 2009-03-01 04:12:32
428
+ updated_at: 2009-03-01 04:12:32
429
+ id: "271"
430
+ short_name: Sav
431
+
432
+
433
+ Ina:
434
+
435
+ name: Iona
436
+ created_at: 2009-03-01 04:12:30
437
+ updated_at: 2009-03-01 04:12:30
438
+ id: "164"
439
+ short_name: Ina
440
+
441
+
442
+ Kan:
443
+
444
+ name: Kansas
445
+ created_at: 2009-03-01 01:58:18
446
+ updated_at: 2009-03-01 01:58:18
447
+ id: "17"
448
+ short_name: Kan
449
+
450
+
451
+ IPF:
452
+
453
+ name: IPFW
454
+ created_at: 2009-03-01 04:12:30
455
+ updated_at: 2009-03-01 04:12:30
456
+ id: "166"
457
+ short_name: IPF
458
+
459
+
460
+ Fur:
461
+
462
+ name: Furman
463
+ created_at: 2009-03-01 04:12:30
464
+ updated_at: 2009-03-01 04:12:30
465
+ id: "140"
466
+ short_name: Fur
467
+
468
+
469
+ LMD:
470
+
471
+ name: Loyola (MD)
472
+ created_at: 2009-03-01 04:12:30
473
+ updated_at: 2009-03-01 04:12:30
474
+ id: "186"
475
+ short_name: LMD
476
+
477
+
478
+ SIU:
479
+
480
+ name: SIU Edwardsville
481
+ created_at: 2009-03-01 04:12:32
482
+ updated_at: 2009-03-01 04:12:32
483
+ id: "274"
484
+ short_name: SIU
485
+
486
+
487
+ Leh:
488
+
489
+ name: Lehigh
490
+ created_at: 2009-03-01 04:12:30
491
+ updated_at: 2009-03-01 04:12:30
492
+ id: "176"
493
+ short_name: Leh
494
+
495
+
496
+ Mia:
497
+
498
+ name: Miami (FL)
499
+ created_at: 2009-03-01 01:58:19
500
+ updated_at: 2009-03-01 01:58:19
501
+ id: "45"
502
+ short_name: Mia
503
+
504
+
505
+ KSU:
506
+
507
+ name: Kansas St.
508
+ created_at: 2009-03-01 01:58:19
509
+ updated_at: 2009-03-01 01:58:19
510
+ id: "26"
511
+ short_name: KSU
512
+
513
+
514
+ Cht:
515
+
516
+ name: Chattanooga
517
+ created_at: 2009-03-01 04:12:29
518
+ updated_at: 2009-03-01 04:12:29
519
+ id: "102"
520
+ short_name: Cht
521
+
522
+
523
+ CMU:
524
+
525
+ name: Central Michigan
526
+ created_at: 2009-03-01 04:12:29
527
+ updated_at: 2009-03-01 04:12:29
528
+ id: "98"
529
+ short_name: CMU
530
+
531
+
532
+ CSN:
533
+
534
+ name: Cal State Northridge
535
+ created_at: 2009-03-01 04:12:29
536
+ updated_at: 2009-03-01 04:12:29
537
+ id: "91"
538
+ short_name: CSN
539
+
540
+
541
+ Ark:
542
+
543
+ name: Arkansas
544
+ created_at: 2009-03-01 01:58:18
545
+ updated_at: 2009-03-01 01:58:18
546
+ id: "4"
547
+ short_name: Ark
548
+
549
+
550
+ Ind:
551
+
552
+ name: Indiana
553
+ created_at: 2009-03-01 01:58:18
554
+ updated_at: 2009-03-01 01:58:18
555
+ id: "3"
556
+ short_name: Ind
557
+
558
+
559
+ Try:
560
+
561
+ name: Troy
562
+ created_at: 2009-03-01 04:12:32
563
+ updated_at: 2009-03-01 04:12:32
564
+ id: "304"
565
+ short_name: Try
566
+
567
+
568
+ GSt:
569
+
570
+ name: Georgia State
571
+ created_at: 2009-03-01 04:12:30
572
+ updated_at: 2009-03-01 04:12:30
573
+ id: "144"
574
+ short_name: GSt
575
+
576
+
577
+ Haw:
578
+
579
+ name: Hawaii
580
+ created_at: 2009-03-01 04:12:30
581
+ updated_at: 2009-03-01 04:12:30
582
+ id: "151"
583
+ short_name: Haw
584
+
585
+
586
+ Arm:
587
+
588
+ name: Army
589
+ created_at: 2009-03-01 04:12:29
590
+ updated_at: 2009-03-01 04:12:29
591
+ id: "76"
592
+ short_name: Arm
593
+
594
+
595
+ USt:
596
+
597
+ name: Utah State
598
+ created_at: 2009-03-01 04:12:32
599
+ updated_at: 2009-03-01 04:12:32
600
+ id: "317"
601
+ short_name: USt
602
+
603
+
604
+ NCS:
605
+
606
+ name: North Carolina State
607
+ created_at: 2009-03-01 04:12:31
608
+ updated_at: 2009-03-01 04:12:31
609
+ id: "225"
610
+ short_name: NCS
611
+
612
+
613
+ ECa:
614
+
615
+ name: East Carolina
616
+ created_at: 2009-03-01 04:12:30
617
+ updated_at: 2009-03-01 04:12:30
618
+ id: "122"
619
+ short_name: ECa
620
+
621
+
622
+ Lou:
623
+
624
+ name: Louisville
625
+ created_at: 2009-03-01 01:58:18
626
+ updated_at: 2009-03-01 01:58:18
627
+ id: "11"
628
+ short_name: Lou
629
+
630
+
631
+ APB:
632
+
633
+ name: Arkansas-Pine Bluff
634
+ created_at: 2009-03-01 04:12:29
635
+ updated_at: 2009-03-01 04:12:29
636
+ id: "75"
637
+ short_name: APB
638
+
639
+
640
+ SJn:
641
+
642
+ name: St. John's
643
+ created_at: 2009-03-01 04:12:32
644
+ updated_at: 2009-03-01 04:12:32
645
+ id: "289"
646
+ short_name: SJn
647
+
648
+
649
+ SeL:
650
+
651
+ name: Southeastern Louisiana
652
+ created_at: 2009-03-01 04:12:32
653
+ updated_at: 2009-03-01 04:12:32
654
+ id: "280"
655
+ short_name: SeL
656
+
657
+
658
+ SCa:
659
+
660
+ name: South Carolina
661
+ created_at: 2009-03-01 04:12:32
662
+ updated_at: 2009-03-01 04:12:32
663
+ id: "275"
664
+ short_name: SCa
665
+
666
+
667
+ JkS:
668
+
669
+ name: Jacksonville State
670
+ created_at: 2009-03-01 04:12:30
671
+ updated_at: 2009-03-01 04:12:30
672
+ id: "170"
673
+ short_name: JkS
674
+
675
+
676
+ MES:
677
+
678
+ name: Maryland-Eastern Shore
679
+ created_at: 2009-03-01 04:12:30
680
+ updated_at: 2009-03-01 04:12:30
681
+ id: "194"
682
+ short_name: MES
683
+
684
+
685
+ OD:
686
+
687
+ name: Old Dominion
688
+ created_at: 2009-03-01 04:12:31
689
+ updated_at: 2009-03-01 04:12:31
690
+ id: "243"
691
+ short_name: OD
692
+
693
+
694
+ Cal:
695
+
696
+ name: California
697
+ created_at: 2009-03-01 04:12:29
698
+ updated_at: 2009-03-01 04:12:29
699
+ id: "92"
700
+ short_name: Cal
701
+
702
+
703
+ R:
704
+
705
+ name: Rutgers
706
+ created_at: 2009-03-01 04:12:31
707
+ updated_at: 2009-03-01 04:12:31
708
+ id: "261"
709
+ short_name: R
710
+
711
+
712
+ LI:
713
+
714
+ name: Long Island
715
+ created_at: 2009-03-01 04:12:30
716
+ updated_at: 2009-03-01 04:12:30
717
+ id: "180"
718
+ short_name: LI
719
+
720
+
721
+ NDk:
722
+
723
+ name: North Dakota
724
+ created_at: 2009-03-01 04:12:31
725
+ updated_at: 2009-03-01 04:12:31
726
+ id: "228"
727
+ short_name: NDk
728
+
729
+
730
+ Am:
731
+
732
+ name: American
733
+ created_at: 2009-03-01 01:58:18
734
+ updated_at: 2009-03-01 01:58:18
735
+ id: "16"
736
+ short_name: Am
737
+
738
+
739
+ Loy:
740
+
741
+ name: Loyola Marymount
742
+ created_at: 2009-03-01 04:12:30
743
+ updated_at: 2009-03-01 04:12:30
744
+ id: "187"
745
+ short_name: Loy
746
+
747
+
748
+ JSt:
749
+
750
+ name: Jackson State
751
+ created_at: 2009-03-01 04:12:30
752
+ updated_at: 2009-03-01 04:12:30
753
+ id: "168"
754
+ short_name: JSt
755
+
756
+
757
+ Can:
758
+
759
+ name: Canisius
760
+ created_at: 2009-03-01 04:12:29
761
+ updated_at: 2009-03-01 04:12:29
762
+ id: "94"
763
+ short_name: Can
764
+
765
+
766
+ Tex:
767
+
768
+ name: Texas
769
+ created_at: 2009-03-01 01:58:19
770
+ updated_at: 2009-03-01 01:58:19
771
+ id: "47"
772
+ short_name: Tex
773
+
774
+
775
+ Msr:
776
+
777
+ name: Missouri
778
+ created_at: 2009-03-01 04:12:31
779
+ updated_at: 2009-03-01 04:12:31
780
+ id: "204"
781
+ short_name: Msr
782
+
783
+
784
+ CCS:
785
+
786
+ name: Central Connecticut State
787
+ created_at: 2009-03-01 04:12:29
788
+ updated_at: 2009-03-01 04:12:29
789
+ id: "97"
790
+ short_name: CCS
791
+
792
+
793
+ TTc:
794
+
795
+ name: Tennessee Tech
796
+ created_at: 2009-03-01 04:12:32
797
+ updated_at: 2009-03-01 04:12:32
798
+ id: "296"
799
+ short_name: TTc
800
+
801
+
802
+ PV&:
803
+
804
+ name: Prairie View A&M
805
+ created_at: 2009-03-01 04:12:31
806
+ updated_at: 2009-03-01 04:12:31
807
+ id: "250"
808
+ short_name: PV&
809
+
810
+
811
+ NCW:
812
+
813
+ name: North Carolina-Wilmington
814
+ created_at: 2009-03-01 04:12:31
815
+ updated_at: 2009-03-01 04:12:31
816
+ id: "227"
817
+ short_name: NCW
818
+
819
+
820
+ Ida:
821
+
822
+ name: Idaho
823
+ created_at: 2009-03-01 04:12:30
824
+ updated_at: 2009-03-01 04:12:30
825
+ id: "158"
826
+ short_name: Ida
827
+
828
+
829
+ BCk:
830
+
831
+ name: Bethune-Cookman
832
+ created_at: 2009-03-01 04:12:29
833
+ updated_at: 2009-03-01 04:12:29
834
+ id: "79"
835
+ short_name: BCk
836
+
837
+
838
+ Ohi:
839
+
840
+ name: Ohio
841
+ created_at: 2009-03-01 04:12:31
842
+ updated_at: 2009-03-01 04:12:31
843
+ id: "240"
844
+ short_name: Ohi
845
+
846
+
847
+ Ctn:
848
+
849
+ name: Charleston
850
+ created_at: 2009-03-01 04:12:29
851
+ updated_at: 2009-03-01 04:12:29
852
+ id: "99"
853
+ short_name: Ctn
854
+
855
+
856
+ Duk:
857
+
858
+ name: Duke
859
+ created_at: 2009-03-01 01:58:19
860
+ updated_at: 2009-03-01 01:58:19
861
+ id: "63"
862
+ short_name: Duk
863
+
864
+
865
+ ORo:
866
+
867
+ name: Oral Roberts
868
+ created_at: 2009-03-01 01:58:19
869
+ updated_at: 2009-03-01 01:58:19
870
+ id: "40"
871
+ short_name: ORo
872
+
873
+
874
+ Cgh:
875
+
876
+ name: Creighton
877
+ created_at: 2009-03-01 04:12:29
878
+ updated_at: 2009-03-01 04:12:29
879
+ id: "112"
880
+ short_name: Cgh
881
+
882
+
883
+ Mst:
884
+
885
+ name: Marist
886
+ created_at: 2009-03-01 04:12:30
887
+ updated_at: 2009-03-01 04:12:30
888
+ id: "191"
889
+ short_name: Mst
890
+
891
+
892
+ NAr:
893
+
894
+ name: Northern Arizona
895
+ created_at: 2009-03-01 04:12:31
896
+ updated_at: 2009-03-01 04:12:31
897
+ id: "233"
898
+ short_name: NAr
899
+
900
+
901
+ Iwa:
902
+
903
+ name: Iowa
904
+ created_at: 2009-03-01 04:12:30
905
+ updated_at: 2009-03-01 04:12:30
906
+ id: "165"
907
+ short_name: Iwa
908
+
909
+
910
+ UA:
911
+
912
+ name: Arizona
913
+ created_at: 2009-03-01 01:58:19
914
+ updated_at: 2009-03-01 01:58:19
915
+ id: "62"
916
+ short_name: UA
917
+
918
+
919
+ Mil:
920
+
921
+ name: Milwaukee
922
+ created_at: 2009-03-01 04:12:31
923
+ updated_at: 2009-03-01 04:12:31
924
+ id: "201"
925
+ short_name: Mil
926
+
927
+
928
+ Gon:
929
+
930
+ name: Gonzaga
931
+ created_at: 2009-03-01 01:58:19
932
+ updated_at: 2009-03-01 01:58:19
933
+ id: "29"
934
+ short_name: Gon
935
+
936
+
937
+ IlC:
938
+
939
+ name: Illinois-Chicago
940
+ created_at: 2009-03-01 04:12:30
941
+ updated_at: 2009-03-01 04:12:30
942
+ id: "162"
943
+ short_name: IlC
944
+
945
+
946
+ Cmb:
947
+
948
+ name: Campbell
949
+ created_at: 2009-03-01 04:12:29
950
+ updated_at: 2009-03-01 04:12:29
951
+ id: "93"
952
+ short_name: Cmb
953
+
954
+
955
+ Hvd:
956
+
957
+ name: Harvard
958
+ created_at: 2009-03-01 04:12:30
959
+ updated_at: 2009-03-01 04:12:30
960
+ id: "150"
961
+ short_name: Hvd
962
+
963
+
964
+ BC:
965
+
966
+ name: Boston College
967
+ created_at: 2009-03-01 04:12:29
968
+ updated_at: 2009-03-01 04:12:29
969
+ id: "81"
970
+ short_name: BC
971
+
972
+
973
+ Wag:
974
+
975
+ name: Wagner
976
+ created_at: 2009-03-01 04:12:32
977
+ updated_at: 2009-03-01 04:12:32
978
+ id: "326"
979
+ short_name: Wag
980
+
981
+
982
+ W-S:
983
+
984
+ name: Winston-Salem
985
+ created_at: 2009-03-01 04:12:32
986
+ updated_at: 2009-03-01 04:12:32
987
+ id: "335"
988
+ short_name: W-S
989
+
990
+
991
+ UTP:
992
+
993
+ name: UTEP
994
+ created_at: 2009-03-01 04:12:32
995
+ updated_at: 2009-03-01 04:12:32
996
+ id: "319"
997
+ short_name: UTP
998
+
999
+
1000
+ Min:
1001
+
1002
+ name: Minnesota
1003
+ created_at: 2009-03-01 04:12:31
1004
+ updated_at: 2009-03-01 04:12:31
1005
+ id: "202"
1006
+ short_name: Min
1007
+
1008
+
1009
+ Del:
1010
+
1011
+ name: Delaware
1012
+ created_at: 2009-03-01 04:12:29
1013
+ updated_at: 2009-03-01 04:12:29
1014
+ id: "115"
1015
+ short_name: Del
1016
+
1017
+
1018
+ SMs:
1019
+
1020
+ name: Southern Miss
1021
+ created_at: 2009-03-01 04:12:32
1022
+ updated_at: 2009-03-01 04:12:32
1023
+ id: "283"
1024
+ short_name: SMs
1025
+
1026
+
1027
+ Sie:
1028
+
1029
+ name: Siena
1030
+ created_at: 2009-03-01 01:58:18
1031
+ updated_at: 2009-03-01 01:58:18
1032
+ id: "24"
1033
+ short_name: Sie
1034
+
1035
+
1036
+ FSU:
1037
+
1038
+ name: Florida State
1039
+ created_at: 2009-03-01 04:12:30
1040
+ updated_at: 2009-03-01 04:12:30
1041
+ id: "137"
1042
+ short_name: FSU
1043
+
1044
+
1045
+ StB:
1046
+
1047
+ name: St. Bonaventure
1048
+ created_at: 2009-03-01 04:12:32
1049
+ updated_at: 2009-03-01 04:12:32
1050
+ id: "286"
1051
+ short_name: StB
1052
+
1053
+
1054
+ SMt:
1055
+
1056
+ name: Southern Methodist
1057
+ created_at: 2009-03-01 04:12:32
1058
+ updated_at: 2009-03-01 04:12:32
1059
+ id: "282"
1060
+ short_name: SMt
1061
+
1062
+
1063
+ RI:
1064
+
1065
+ name: Rhode Island
1066
+ created_at: 2009-03-01 04:12:31
1067
+ updated_at: 2009-03-01 04:12:31
1068
+ id: "256"
1069
+ short_name: RI
1070
+
1071
+
1072
+ Laf:
1073
+
1074
+ name: Lafayette
1075
+ created_at: 2009-03-01 04:12:30
1076
+ updated_at: 2009-03-01 04:12:30
1077
+ id: "174"
1078
+ short_name: Laf
1079
+
1080
+
1081
+ Bra:
1082
+
1083
+ name: Bradley
1084
+ created_at: 2009-03-01 04:12:29
1085
+ updated_at: 2009-03-01 04:12:29
1086
+ id: "84"
1087
+ short_name: Bra
1088
+
1089
+
1090
+ Den:
1091
+
1092
+ name: Denver
1093
+ created_at: 2009-03-01 04:12:29
1094
+ updated_at: 2009-03-01 04:12:29
1095
+ id: "117"
1096
+ short_name: Den
1097
+
1098
+
1099
+ CAr:
1100
+
1101
+ name: Central Arkansas
1102
+ created_at: 2009-03-01 04:12:29
1103
+ updated_at: 2009-03-01 04:12:29
1104
+ id: "96"
1105
+ short_name: CAr
1106
+
1107
+
1108
+ BG:
1109
+
1110
+ name: Bowling Green
1111
+ created_at: 2009-03-01 04:12:29
1112
+ updated_at: 2009-03-01 04:12:29
1113
+ id: "83"
1114
+ short_name: BG
1115
+
1116
+
1117
+ StC:
1118
+
1119
+ name: Santa Clara
1120
+ created_at: 2009-03-01 04:12:32
1121
+ updated_at: 2009-03-01 04:12:32
1122
+ id: "270"
1123
+ short_name: StC
1124
+
1125
+
1126
+ Fdm:
1127
+
1128
+ name: Fordham
1129
+ created_at: 2009-03-01 04:12:30
1130
+ updated_at: 2009-03-01 04:12:30
1131
+ id: "138"
1132
+ short_name: Fdm
1133
+
1134
+
1135
+ Evn:
1136
+
1137
+ name: Evansville
1138
+ created_at: 2009-03-01 04:12:30
1139
+ updated_at: 2009-03-01 04:12:30
1140
+ id: "129"
1141
+ short_name: Evn
1142
+
1143
+
1144
+ Drt:
1145
+
1146
+ name: Dartmouth
1147
+ created_at: 2009-03-01 04:12:29
1148
+ updated_at: 2009-03-01 04:12:29
1149
+ id: "113"
1150
+ short_name: Drt
1151
+
1152
+
1153
+ TCU:
1154
+
1155
+ name: TCU
1156
+ created_at: 2009-03-01 04:12:32
1157
+ updated_at: 2009-03-01 04:12:32
1158
+ id: "294"
1159
+ short_name: TCU
1160
+
1161
+
1162
+ Duq:
1163
+
1164
+ name: Duquesne
1165
+ created_at: 2009-03-01 04:12:30
1166
+ updated_at: 2009-03-01 04:12:30
1167
+ id: "121"
1168
+ short_name: Duq
1169
+
1170
+
1171
+ UG:
1172
+
1173
+ name: Georgia
1174
+ created_at: 2009-03-01 01:58:19
1175
+ updated_at: 2009-03-01 01:58:19
1176
+ id: "60"
1177
+ short_name: UG
1178
+
1179
+
1180
+ FDk:
1181
+
1182
+ name: Fairleigh Dickinson
1183
+ created_at: 2009-03-01 04:12:30
1184
+ updated_at: 2009-03-01 04:12:30
1185
+ id: "131"
1186
+ short_name: FDk
1187
+
1188
+
1189
+ Bin:
1190
+
1191
+ name: Binghamton
1192
+ created_at: 2009-03-01 04:12:29
1193
+ updated_at: 2009-03-01 04:12:29
1194
+ id: "80"
1195
+ short_name: Bin
1196
+
1197
+
1198
+ ClS:
1199
+
1200
+ name: Cleveland State
1201
+ created_at: 2009-03-01 04:12:29
1202
+ updated_at: 2009-03-01 04:12:29
1203
+ id: "106"
1204
+ short_name: ClS
1205
+
1206
+
1207
+ Okl:
1208
+
1209
+ name: Oklahoma
1210
+ created_at: 2009-03-01 01:58:18
1211
+ updated_at: 2009-03-01 01:58:18
1212
+ id: "9"
1213
+ short_name: Okl
1214
+
1215
+
1216
+ BSt:
1217
+
1218
+ name: Boise St.
1219
+ created_at: 2009-03-01 01:58:18
1220
+ updated_at: 2009-03-01 01:58:18
1221
+ id: "12"
1222
+ short_name: BSt
1223
+
1224
+
1225
+ Mis:
1226
+
1227
+ name: Mississippi
1228
+ created_at: 2009-03-01 04:12:31
1229
+ updated_at: 2009-03-01 04:12:31
1230
+ id: "203"
1231
+ short_name: Mis
1232
+
1233
+
1234
+ PSt:
1235
+
1236
+ name: Portland St.
1237
+ created_at: 2009-03-01 01:58:18
1238
+ updated_at: 2009-03-01 01:58:18
1239
+ id: "18"
1240
+ short_name: PSt
1241
+
1242
+
1243
+ SHS:
1244
+
1245
+ name: Sam Houston State
1246
+ created_at: 2009-03-01 04:12:31
1247
+ updated_at: 2009-03-01 04:12:31
1248
+ id: "265"
1249
+ short_name: SHS
1250
+
1251
+
1252
+ ApS:
1253
+
1254
+ name: Appalachian State
1255
+ created_at: 2009-03-01 04:12:29
1256
+ updated_at: 2009-03-01 04:12:29
1257
+ id: "71"
1258
+ short_name: ApS
1259
+
1260
+
1261
+ W&M:
1262
+
1263
+ name: William & Mary
1264
+ created_at: 2009-03-01 04:12:32
1265
+ updated_at: 2009-03-01 04:12:32
1266
+ id: "334"
1267
+ short_name: W&M
1268
+
1269
+
1270
+ SFl:
1271
+
1272
+ name: South Florida
1273
+ created_at: 2009-03-01 04:12:32
1274
+ updated_at: 2009-03-01 04:12:32
1275
+ id: "278"
1276
+ short_name: SFl
1277
+
1278
+
1279
+ NTx:
1280
+
1281
+ name: North Texas
1282
+ created_at: 2009-03-01 04:12:31
1283
+ updated_at: 2009-03-01 04:12:31
1284
+ id: "231"
1285
+ short_name: NTx
1286
+
1287
+
1288
+ TxA:
1289
+
1290
+ name: TX Arlington
1291
+ created_at: 2009-03-01 01:58:19
1292
+ updated_at: 2009-03-01 01:58:19
1293
+ id: "34"
1294
+ short_name: TxA
1295
+
1296
+
1297
+ Drx:
1298
+
1299
+ name: Drexel
1300
+ created_at: 2009-03-01 04:12:30
1301
+ updated_at: 2009-03-01 04:12:30
1302
+ id: "120"
1303
+ short_name: Drx
1304
+
1305
+
1306
+ VAC:
1307
+
1308
+ name: Virginia Commonwealth
1309
+ created_at: 2009-03-01 04:12:32
1310
+ updated_at: 2009-03-01 04:12:32
1311
+ id: "323"
1312
+ short_name: VAC
1313
+
1314
+
1315
+ UMK:
1316
+
1317
+ name: UMKC
1318
+ created_at: 2009-03-01 04:12:32
1319
+ updated_at: 2009-03-01 04:12:32
1320
+ id: "313"
1321
+ short_name: UMK
1322
+
1323
+
1324
+ USC:
1325
+
1326
+ name: USC
1327
+ created_at: 2009-03-01 01:58:18
1328
+ updated_at: 2009-03-01 01:58:18
1329
+ id: "25"
1330
+ short_name: USC
1331
+
1332
+
1333
+ Mon:
1334
+
1335
+ name: Montana
1336
+ created_at: 2009-03-01 04:12:31
1337
+ updated_at: 2009-03-01 04:12:31
1338
+ id: "207"
1339
+ short_name: Mon
1340
+
1341
+
1342
+ CoS:
1343
+
1344
+ name: Colorado State
1345
+ created_at: 2009-03-01 04:12:29
1346
+ updated_at: 2009-03-01 04:12:29
1347
+ id: "110"
1348
+ short_name: CoS
1349
+
1350
+
1351
+ Det:
1352
+
1353
+ name: Detroit
1354
+ created_at: 2009-03-01 04:12:30
1355
+ updated_at: 2009-03-01 04:12:30
1356
+ id: "119"
1357
+ short_name: Det
1358
+
1359
+
1360
+ FAt:
1361
+
1362
+ name: Florida Atlantic
1363
+ created_at: 2009-03-01 04:12:30
1364
+ updated_at: 2009-03-01 04:12:30
1365
+ id: "134"
1366
+ short_name: FAt
1367
+
1368
+
1369
+ Akr:
1370
+
1371
+ name: Akron
1372
+ created_at: 2009-03-01 04:12:29
1373
+ updated_at: 2009-03-01 04:12:29
1374
+ id: "66"
1375
+ short_name: Akr
1376
+
1377
+
1378
+ Cgt:
1379
+
1380
+ name: Colgate
1381
+ created_at: 2009-03-01 04:12:29
1382
+ updated_at: 2009-03-01 04:12:29
1383
+ id: "108"
1384
+ short_name: Cgt
1385
+
1386
+
1387
+ Lam:
1388
+
1389
+ name: Lamar
1390
+ created_at: 2009-03-01 04:12:30
1391
+ updated_at: 2009-03-01 04:12:30
1392
+ id: "175"
1393
+ short_name: Lam
1394
+
1395
+
1396
+ UCD:
1397
+
1398
+ name: UC Davis
1399
+ created_at: 2009-03-01 04:12:32
1400
+ updated_at: 2009-03-01 04:12:32
1401
+ id: "308"
1402
+ short_name: UCD
1403
+
1404
+
1405
+ SSt:
1406
+
1407
+ name: Sacramento State
1408
+ created_at: 2009-03-01 04:12:31
1409
+ updated_at: 2009-03-01 04:12:31
1410
+ id: "262"
1411
+ short_name: SSt
1412
+
1413
+
1414
+ Rad:
1415
+
1416
+ name: Radford
1417
+ created_at: 2009-03-01 04:12:31
1418
+ updated_at: 2009-03-01 04:12:31
1419
+ id: "255"
1420
+ short_name: Rad
1421
+
1422
+
1423
+ EIl:
1424
+
1425
+ name: Eastern Illinois
1426
+ created_at: 2009-03-01 04:12:30
1427
+ updated_at: 2009-03-01 04:12:30
1428
+ id: "124"
1429
+ short_name: EIl
1430
+
1431
+
1432
+ UM:
1433
+
1434
+ name: Michigan
1435
+ created_at: 2009-03-01 04:12:31
1436
+ updated_at: 2009-03-01 04:12:31
1437
+ id: "199"
1438
+ short_name: UM
1439
+
1440
+
1441
+ StJ:
1442
+
1443
+ name: St. Joseph's
1444
+ created_at: 2009-03-01 01:58:18
1445
+ updated_at: 2009-03-01 01:58:18
1446
+ id: "10"
1447
+ short_name: StJ
1448
+
1449
+
1450
+ CCa:
1451
+
1452
+ name: Coastal Carolina
1453
+ created_at: 2009-03-01 04:12:29
1454
+ updated_at: 2009-03-01 04:12:29
1455
+ id: "107"
1456
+ short_name: CCa
1457
+
1458
+
1459
+ BaS:
1460
+
1461
+ name: Ball State
1462
+ created_at: 2009-03-01 04:12:29
1463
+ updated_at: 2009-03-01 04:12:29
1464
+ id: "78"
1465
+ short_name: BaS
1466
+
1467
+
1468
+ SIl:
1469
+
1470
+ name: Southern Illinois
1471
+ created_at: 2009-03-01 04:12:32
1472
+ updated_at: 2009-03-01 04:12:32
1473
+ id: "281"
1474
+ short_name: SIl
1475
+
1476
+
1477
+ LIL:
1478
+
1479
+ name: Loyola (IL)
1480
+ created_at: 2009-03-01 04:12:30
1481
+ updated_at: 2009-03-01 04:12:30
1482
+ id: "185"
1483
+ short_name: LIL
1484
+
1485
+
1486
+ Nia:
1487
+
1488
+ name: Niagara
1489
+ created_at: 2009-03-01 04:12:31
1490
+ updated_at: 2009-03-01 04:12:31
1491
+ id: "220"
1492
+ short_name: Nia
1493
+
1494
+
1495
+ LSU:
1496
+
1497
+ name: LSU
1498
+ created_at: 2009-03-01 04:12:30
1499
+ updated_at: 2009-03-01 04:12:30
1500
+ id: "188"
1501
+ short_name: LSU
1502
+
1503
+
1504
+ Buf:
1505
+
1506
+ name: Buffalo
1507
+ created_at: 2009-03-01 04:12:29
1508
+ updated_at: 2009-03-01 04:12:29
1509
+ id: "88"
1510
+ short_name: Buf
1511
+
1512
+
1513
+ JmM:
1514
+
1515
+ name: James Madison
1516
+ created_at: 2009-03-01 04:12:30
1517
+ updated_at: 2009-03-01 04:12:30
1518
+ id: "171"
1519
+ short_name: JmM
1520
+
1521
+
1522
+ Pit:
1523
+
1524
+ name: Pittsburgh
1525
+ created_at: 2009-03-01 01:58:19
1526
+ updated_at: 2009-03-01 01:58:19
1527
+ id: "39"
1528
+ short_name: Pit
1529
+
1530
+
1531
+ WiS:
1532
+
1533
+ name: Wichita State
1534
+ created_at: 2009-03-01 04:12:32
1535
+ updated_at: 2009-03-01 04:12:32
1536
+ id: "333"
1537
+ short_name: WiS
1538
+
1539
+
1540
+ Was:
1541
+
1542
+ name: Washington
1543
+ created_at: 2009-03-01 04:12:32
1544
+ updated_at: 2009-03-01 04:12:32
1545
+ id: "328"
1546
+ short_name: Was
1547
+
1548
+
1549
+ UCF:
1550
+
1551
+ name: UCF
1552
+ created_at: 2009-03-01 04:12:32
1553
+ updated_at: 2009-03-01 04:12:32
1554
+ id: "312"
1555
+ short_name: UCF
1556
+
1557
+
1558
+ StL:
1559
+
1560
+ name: Saint Louis
1561
+ created_at: 2009-03-01 04:12:31
1562
+ updated_at: 2009-03-01 04:12:31
1563
+ id: "264"
1564
+ short_name: StL
1565
+
1566
+
1567
+ Pri:
1568
+
1569
+ name: Princeton
1570
+ created_at: 2009-03-01 04:12:31
1571
+ updated_at: 2009-03-01 04:12:31
1572
+ id: "252"
1573
+ short_name: Pri
1574
+
1575
+
1576
+ Oak:
1577
+
1578
+ name: Oakland
1579
+ created_at: 2009-03-01 04:12:31
1580
+ updated_at: 2009-03-01 04:12:31
1581
+ id: "239"
1582
+ short_name: Oak
1583
+
1584
+
1585
+ NC&:
1586
+
1587
+ name: North Carolina A&T
1588
+ created_at: 2009-03-01 04:12:31
1589
+ updated_at: 2009-03-01 04:12:31
1590
+ id: "223"
1591
+ short_name: NC&
1592
+
1593
+
1594
+ WKy:
1595
+
1596
+ name: W. Kentucky
1597
+ created_at: 2009-03-01 01:58:19
1598
+ updated_at: 2009-03-01 01:58:19
1599
+ id: "54"
1600
+ short_name: WKy
1601
+
1602
+
1603
+ MTS:
1604
+
1605
+ name: Middle Tennessee State
1606
+ created_at: 2009-03-01 04:12:31
1607
+ updated_at: 2009-03-01 04:12:31
1608
+ id: "200"
1609
+ short_name: MTS
1610
+
1611
+
1612
+ Syr:
1613
+
1614
+ name: Syracuse
1615
+ created_at: 2009-03-01 04:12:32
1616
+ updated_at: 2009-03-01 04:12:32
1617
+ id: "293"
1618
+ short_name: Syr
1619
+
1620
+
1621
+ Nic:
1622
+
1623
+ name: Nicholls State
1624
+ created_at: 2009-03-01 04:12:31
1625
+ updated_at: 2009-03-01 04:12:31
1626
+ id: "221"
1627
+ short_name: Nic
1628
+
1629
+
1630
+ StM:
1631
+
1632
+ name: St. Mary's
1633
+ created_at: 2009-03-01 01:58:19
1634
+ updated_at: 2009-03-01 01:58:19
1635
+ id: "46"
1636
+ short_name: StM
1637
+
1638
+
1639
+ Hof:
1640
+
1641
+ name: Hofstra
1642
+ created_at: 2009-03-01 04:12:30
1643
+ updated_at: 2009-03-01 04:12:30
1644
+ id: "153"
1645
+ short_name: Hof
1646
+
1647
+
1648
+ HCr:
1649
+
1650
+ name: Holy Cross
1651
+ created_at: 2009-03-01 04:12:30
1652
+ updated_at: 2009-03-01 04:12:30
1653
+ id: "154"
1654
+ short_name: HCr
1655
+
1656
+
1657
+ Vil:
1658
+
1659
+ name: Villanova
1660
+ created_at: 2009-03-01 01:58:18
1661
+ updated_at: 2009-03-01 01:58:18
1662
+ id: "22"
1663
+ short_name: Vil
1664
+
1665
+
1666
+ Eln:
1667
+
1668
+ name: Elon
1669
+ created_at: 2009-03-01 04:12:30
1670
+ updated_at: 2009-03-01 04:12:30
1671
+ id: "128"
1672
+ short_name: Eln
1673
+
1674
+
1675
+ Wy:
1676
+
1677
+ name: Wyoming
1678
+ created_at: 2009-03-01 04:12:33
1679
+ updated_at: 2009-03-01 04:12:33
1680
+ id: "338"
1681
+ short_name: Wy
1682
+
1683
+
1684
+ Sea:
1685
+
1686
+ name: Seattle
1687
+ created_at: 2009-03-01 04:12:32
1688
+ updated_at: 2009-03-01 04:12:32
1689
+ id: "272"
1690
+ short_name: Sea
1691
+
1692
+
1693
+ IlS:
1694
+
1695
+ name: Illinois State
1696
+ created_at: 2009-03-01 04:12:30
1697
+ updated_at: 2009-03-01 04:12:30
1698
+ id: "161"
1699
+ short_name: IlS
1700
+
1701
+
1702
+ ND:
1703
+
1704
+ name: Notre Dame
1705
+ created_at: 2009-03-01 01:58:18
1706
+ updated_at: 2009-03-01 01:58:18
1707
+ id: "5"
1708
+ short_name: ND
1709
+
1710
+
1711
+ MgS:
1712
+
1713
+ name: Morgan State
1714
+ created_at: 2009-03-01 04:12:31
1715
+ updated_at: 2009-03-01 04:12:31
1716
+ id: "210"
1717
+ short_name: MgS
1718
+
1719
+
1720
+ Uta:
1721
+
1722
+ name: Utah
1723
+ created_at: 2009-03-01 04:12:32
1724
+ updated_at: 2009-03-01 04:12:32
1725
+ id: "316"
1726
+ short_name: Uta
1727
+
1728
+
1729
+ UCI:
1730
+
1731
+ name: UC Irvine
1732
+ created_at: 2009-03-01 04:12:32
1733
+ updated_at: 2009-03-01 04:12:32
1734
+ id: "309"
1735
+ short_name: UCI
1736
+
1737
+
1738
+ ASU:
1739
+
1740
+ name: Arizona State
1741
+ created_at: 2009-03-01 04:12:29
1742
+ updated_at: 2009-03-01 04:12:29
1743
+ id: "72"
1744
+ short_name: ASU
1745
+
1746
+
1747
+ A&M:
1748
+
1749
+ name: Texas A&M
1750
+ created_at: 2009-03-01 01:58:19
1751
+ updated_at: 2009-03-01 01:58:19
1752
+ id: "52"
1753
+ short_name: A&M
1754
+
1755
+
1756
+ Cpn:
1757
+
1758
+ name: Coppin State
1759
+ created_at: 2009-03-01 04:12:29
1760
+ updated_at: 2009-03-01 04:12:29
1761
+ id: "111"
1762
+ short_name: Cpn
1763
+
1764
+
1765
+ StP:
1766
+
1767
+ name: St. Peter's
1768
+ created_at: 2009-03-01 04:12:32
1769
+ updated_at: 2009-03-01 04:12:32
1770
+ id: "290"
1771
+ short_name: StP
1772
+
1773
+
1774
+ OSU:
1775
+
1776
+ name: Ohio State
1777
+ created_at: 2009-03-01 04:12:31
1778
+ updated_at: 2009-03-01 04:12:31
1779
+ id: "241"
1780
+ short_name: OSU
1781
+
1782
+
1783
+ Buk:
1784
+
1785
+ name: Bucknell
1786
+ created_at: 2009-03-01 04:12:29
1787
+ updated_at: 2009-03-01 04:12:29
1788
+ id: "87"
1789
+ short_name: Buk
1790
+
1791
+
1792
+ BU:
1793
+
1794
+ name: Boston University
1795
+ created_at: 2009-03-01 04:12:29
1796
+ updated_at: 2009-03-01 04:12:29
1797
+ id: "82"
1798
+ short_name: BU
1799
+
1800
+
1801
+ Mem:
1802
+
1803
+ name: Memphis
1804
+ created_at: 2009-03-01 01:58:19
1805
+ updated_at: 2009-03-01 01:58:19
1806
+ id: "33"
1807
+ short_name: Mem
1808
+
1809
+
1810
+ Por:
1811
+
1812
+ name: Portland
1813
+ created_at: 2009-03-01 04:12:31
1814
+ updated_at: 2009-03-01 04:12:31
1815
+ id: "249"
1816
+ short_name: Por
1817
+
1818
+
1819
+ Nfk:
1820
+
1821
+ name: Norfolk State
1822
+ created_at: 2009-03-01 04:12:31
1823
+ updated_at: 2009-03-01 04:12:31
1824
+ id: "222"
1825
+ short_name: Nfk
1826
+
1827
+
1828
+ GBy:
1829
+
1830
+ name: Green Bay
1831
+ created_at: 2009-03-01 04:12:30
1832
+ updated_at: 2009-03-01 04:12:30
1833
+ id: "147"
1834
+ short_name: GBy
1835
+
1836
+
1837
+ HBa:
1838
+
1839
+ name: Houston Baptist
1840
+ created_at: 2009-03-01 04:12:30
1841
+ updated_at: 2009-03-01 04:12:30
1842
+ id: "156"
1843
+ short_name: HBa
1844
+
1845
+
1846
+ Pro:
1847
+
1848
+ name: Providence
1849
+ created_at: 2009-03-01 04:12:31
1850
+ updated_at: 2009-03-01 04:12:31
1851
+ id: "253"
1852
+ short_name: Pro
1853
+
1854
+
1855
+ GTc:
1856
+
1857
+ name: Georgia Tech
1858
+ created_at: 2009-03-01 04:12:30
1859
+ updated_at: 2009-03-01 04:12:30
1860
+ id: "145"
1861
+ short_name: GTc
1862
+
1863
+
1864
+ VAM:
1865
+
1866
+ name: Virginia Military
1867
+ created_at: 2009-03-01 04:12:32
1868
+ updated_at: 2009-03-01 04:12:32
1869
+ id: "324"
1870
+ short_name: VAM
1871
+
1872
+
1873
+ KSt:
1874
+
1875
+ name: Kent St.
1876
+ created_at: 2009-03-01 01:58:18
1877
+ updated_at: 2009-03-01 01:58:18
1878
+ id: "20"
1879
+ short_name: KSt
1880
+
1881
+
1882
+ ULA:
1883
+
1884
+ name: UCLA
1885
+ created_at: 2009-03-01 01:58:19
1886
+ updated_at: 2009-03-01 01:58:19
1887
+ id: "49"
1888
+ short_name: ULA
1889
+
1890
+
1891
+ Bel:
1892
+
1893
+ name: Belmont
1894
+ created_at: 2009-03-01 01:58:19
1895
+ updated_at: 2009-03-01 01:58:19
1896
+ id: "64"
1897
+ short_name: Bel
1898
+
1899
+
1900
+ YSt:
1901
+
1902
+ name: Youngstown State
1903
+ created_at: 2009-03-01 04:12:33
1904
+ updated_at: 2009-03-01 04:12:33
1905
+ id: "340"
1906
+ short_name: YSt
1907
+
1908
+
1909
+ WMi:
1910
+
1911
+ name: Western Michigan
1912
+ created_at: 2009-03-01 04:12:32
1913
+ updated_at: 2009-03-01 04:12:32
1914
+ id: "332"
1915
+ short_name: WMi
1916
+
1917
+
1918
+ NCo:
1919
+
1920
+ name: Northern Colorado
1921
+ created_at: 2009-03-01 04:12:31
1922
+ updated_at: 2009-03-01 04:12:31
1923
+ id: "234"
1924
+ short_name: NCo
1925
+
1926
+
1927
+ Mur:
1928
+
1929
+ name: Murray State
1930
+ created_at: 2009-03-01 04:12:31
1931
+ updated_at: 2009-03-01 04:12:31
1932
+ id: "211"
1933
+ short_name: Mur
1934
+
1935
+
1936
+ GWa:
1937
+
1938
+ name: George Washington
1939
+ created_at: 2009-03-01 04:12:30
1940
+ updated_at: 2009-03-01 04:12:30
1941
+ id: "142"
1942
+ short_name: GWa
1943
+
1944
+
1945
+ NMx:
1946
+
1947
+ name: New Mexico
1948
+ created_at: 2009-03-01 04:12:31
1949
+ updated_at: 2009-03-01 04:12:31
1950
+ id: "217"
1951
+ short_name: NMx
1952
+
1953
+
1954
+ KnS:
1955
+
1956
+ name: Kennesaw State
1957
+ created_at: 2009-03-01 04:12:30
1958
+ updated_at: 2009-03-01 04:12:30
1959
+ id: "172"
1960
+ short_name: KnS
1961
+
1962
+
1963
+ Mne:
1964
+
1965
+ name: Maine
1966
+ created_at: 2009-03-01 04:12:30
1967
+ updated_at: 2009-03-01 04:12:30
1968
+ id: "189"
1969
+ short_name: Mne
1970
+
1971
+
1972
+ WCa:
1973
+
1974
+ name: Western Carolina
1975
+ created_at: 2009-03-01 04:12:32
1976
+ updated_at: 2009-03-01 04:12:32
1977
+ id: "330"
1978
+ short_name: WCa
1979
+
1980
+
1981
+ NFl:
1982
+
1983
+ name: North Florida
1984
+ created_at: 2009-03-01 04:12:31
1985
+ updated_at: 2009-03-01 04:12:31
1986
+ id: "230"
1987
+ short_name: NFl
1988
+
1989
+
1990
+ Mer:
1991
+
1992
+ name: Mercer
1993
+ created_at: 2009-03-01 04:12:30
1994
+ updated_at: 2009-03-01 04:12:30
1995
+ id: "197"
1996
+ short_name: Mer
1997
+
1998
+
1999
+ ETS:
2000
+
2001
+ name: East Tennessee State
2002
+ created_at: 2009-03-01 04:12:30
2003
+ updated_at: 2009-03-01 04:12:30
2004
+ id: "123"
2005
+ short_name: ETS
2006
+
2007
+
2008
+ ChS:
2009
+
2010
+ name: Chicago State
2011
+ created_at: 2009-03-01 04:12:29
2012
+ updated_at: 2009-03-01 04:12:29
2013
+ id: "103"
2014
+ short_name: ChS
2015
+
2016
+
2017
+ Pen:
2018
+
2019
+ name: Pennsylvania
2020
+ created_at: 2009-03-01 04:12:31
2021
+ updated_at: 2009-03-01 04:12:31
2022
+ id: "247"
2023
+ short_name: Pen
2024
+
2025
+
2026
+ AF:
2027
+
2028
+ name: Air Force
2029
+ created_at: 2009-03-01 04:12:29
2030
+ updated_at: 2009-03-01 04:12:29
2031
+ id: "65"
2032
+ short_name: AF
2033
+
2034
+
2035
+ G-W:
2036
+
2037
+ name: Gardner-Webb
2038
+ created_at: 2009-03-01 04:12:30
2039
+ updated_at: 2009-03-01 04:12:30
2040
+ id: "141"
2041
+ short_name: G-W
2042
+
2043
+
2044
+ CSo:
2045
+
2046
+ name: Charleston Southern
2047
+ created_at: 2009-03-01 04:12:29
2048
+ updated_at: 2009-03-01 04:12:29
2049
+ id: "100"
2050
+ short_name: CSo
2051
+
2052
+
2053
+ WrS:
2054
+
2055
+ name: Wright State
2056
+ created_at: 2009-03-01 04:12:32
2057
+ updated_at: 2009-03-01 04:12:32
2058
+ id: "337"
2059
+ short_name: WrS
2060
+
2061
+
2062
+ WkF:
2063
+
2064
+ name: Wake Forest
2065
+ created_at: 2009-03-01 04:12:32
2066
+ updated_at: 2009-03-01 04:12:32
2067
+ id: "327"
2068
+ short_name: WkF
2069
+
2070
+
2071
+ UsU:
2072
+
2073
+ name: USC Upstate
2074
+ created_at: 2009-03-01 04:12:32
2075
+ updated_at: 2009-03-01 04:12:32
2076
+ id: "315"
2077
+ short_name: UsU
2078
+
2079
+
2080
+ LSa:
2081
+
2082
+ name: La Salle
2083
+ created_at: 2009-03-01 04:12:30
2084
+ updated_at: 2009-03-01 04:12:30
2085
+ id: "173"
2086
+ short_name: LSa
2087
+
2088
+
2089
+ Fla:
2090
+
2091
+ name: Florida
2092
+ created_at: 2009-03-01 04:12:30
2093
+ updated_at: 2009-03-01 04:12:30
2094
+ id: "132"
2095
+ short_name: Fla
2096
+
2097
+
2098
+ Mry:
2099
+
2100
+ name: Maryland
2101
+ created_at: 2009-03-01 04:12:30
2102
+ updated_at: 2009-03-01 04:12:30
2103
+ id: "193"
2104
+ short_name: Mry
2105
+
2106
+
2107
+ SDS:
2108
+
2109
+ name: San Diego State
2110
+ created_at: 2009-03-01 04:12:31
2111
+ updated_at: 2009-03-01 04:12:31
2112
+ id: "267"
2113
+ short_name: SDS
2114
+
2115
+
2116
+ Pep:
2117
+
2118
+ name: Pepperdine
2119
+ created_at: 2009-03-01 04:12:31
2120
+ updated_at: 2009-03-01 04:12:31
2121
+ id: "248"
2122
+ short_name: Pep
2123
+
2124
+
2125
+ WVa:
2126
+
2127
+ name: West Virginia
2128
+ created_at: 2009-03-01 01:58:19
2129
+ updated_at: 2009-03-01 01:58:19
2130
+ id: "61"
2131
+ short_name: WVa
2132
+
2133
+
2134
+ UCR:
2135
+
2136
+ name: UC Riverside
2137
+ created_at: 2009-03-01 04:12:32
2138
+ updated_at: 2009-03-01 04:12:32
2139
+ id: "310"
2140
+ short_name: UCR
2141
+
2142
+
2143
+ Sou:
2144
+
2145
+ name: Southern University
2146
+ created_at: 2009-03-01 04:12:32
2147
+ updated_at: 2009-03-01 04:12:32
2148
+ id: "284"
2149
+ short_name: Sou
2150
+
2151
+
2152
+ NIl:
2153
+
2154
+ name: Northern Illinois
2155
+ created_at: 2009-03-01 04:12:31
2156
+ updated_at: 2009-03-01 04:12:31
2157
+ id: "235"
2158
+ short_name: NIl
2159
+
2160
+
2161
+ Pur:
2162
+
2163
+ name: Purdue
2164
+ created_at: 2009-03-01 01:58:19
2165
+ updated_at: 2009-03-01 01:58:19
2166
+ id: "57"
2167
+ short_name: Pur
2168
+
2169
+
2170
+ ALR:
2171
+
2172
+ name: Arkansas-Little Rock
2173
+ created_at: 2009-03-01 04:12:29
2174
+ updated_at: 2009-03-01 04:12:29
2175
+ id: "74"
2176
+ short_name: ALR
2177
+
2178
+
2179
+ VAT:
2180
+
2181
+ name: Virginia Tech
2182
+ created_at: 2009-03-01 04:12:32
2183
+ updated_at: 2009-03-01 04:12:32
2184
+ id: "325"
2185
+ short_name: VAT
2186
+
2187
+
2188
+ TxS:
2189
+
2190
+ name: Texas Southern
2191
+ created_at: 2009-03-01 04:12:32
2192
+ updated_at: 2009-03-01 04:12:32
2193
+ id: "299"
2194
+ short_name: TxS
2195
+
2196
+
2197
+ But:
2198
+
2199
+ name: Butler
2200
+ created_at: 2009-03-01 01:58:18
2201
+ updated_at: 2009-03-01 01:58:18
2202
+ id: "13"
2203
+ short_name: But
2204
+
2205
+
2206
+ IUP:
2207
+
2208
+ name: IUPUI
2209
+ created_at: 2009-03-01 04:12:30
2210
+ updated_at: 2009-03-01 04:12:30
2211
+ id: "167"
2212
+ short_name: IUP
2213
+
2214
+
2215
+ McN:
2216
+
2217
+ name: McNeese State
2218
+ created_at: 2009-03-01 04:12:30
2219
+ updated_at: 2009-03-01 04:12:30
2220
+ id: "196"
2221
+ short_name: McN
2222
+
2223
+
2224
+ TAC:
2225
+
2226
+ name: Texas A&M-CC
2227
+ created_at: 2009-03-01 04:12:32
2228
+ updated_at: 2009-03-01 04:12:32
2229
+ id: "298"
2230
+ short_name: TAC
2231
+
2232
+
2233
+ MSM:
2234
+
2235
+ name: Mt. St. Mary's
2236
+ created_at: 2009-03-01 01:58:18
2237
+ updated_at: 2009-03-01 01:58:18
2238
+ id: "2"
2239
+ short_name: MSM
2240
+
2241
+
2242
+ Il:
2243
+
2244
+ name: Illinois
2245
+ created_at: 2009-03-01 04:12:30
2246
+ updated_at: 2009-03-01 04:12:30
2247
+ id: "160"
2248
+ short_name: Il
2249
+
2250
+
2251
+ Lgw:
2252
+
2253
+ name: Longwood
2254
+ created_at: 2009-03-01 04:12:30
2255
+ updated_at: 2009-03-01 04:12:30
2256
+ id: "181"
2257
+ short_name: Lgw
2258
+
2259
+
2260
+ Dav:
2261
+
2262
+ name: Davidson
2263
+ created_at: 2009-03-01 01:58:19
2264
+ updated_at: 2009-03-01 01:58:19
2265
+ id: "30"
2266
+ short_name: Dav
2267
+
2268
+
2269
+ Bry:
2270
+
2271
+ name: Bryant University
2272
+ created_at: 2009-03-01 04:12:29
2273
+ updated_at: 2009-03-01 04:12:29
2274
+ id: "86"
2275
+ short_name: Bry
2276
+
2277
+
2278
+ APe:
2279
+
2280
+ name: Austin Peay
2281
+ created_at: 2009-03-01 01:58:19
2282
+ updated_at: 2009-03-01 01:58:19
2283
+ id: "48"
2284
+ short_name: APe
2285
+
2286
+
2287
+ Pac:
2288
+
2289
+ name: Pacific
2290
+ created_at: 2009-03-01 04:12:31
2291
+ updated_at: 2009-03-01 04:12:31
2292
+ id: "245"
2293
+ short_name: Pac
2294
+
2295
+
2296
+ NIo:
2297
+
2298
+ name: Northern Iowa
2299
+ created_at: 2009-03-01 04:12:31
2300
+ updated_at: 2009-03-01 04:12:31
2301
+ id: "236"
2302
+ short_name: NIo
2303
+
2304
+
2305
+ Nea:
2306
+
2307
+ name: Northeastern
2308
+ created_at: 2009-03-01 04:12:31
2309
+ updated_at: 2009-03-01 04:12:31
2310
+ id: "232"
2311
+ short_name: Nea
2312
+
2313
+
2314
+ Mnm:
2315
+
2316
+ name: Monmouth
2317
+ created_at: 2009-03-01 04:12:31
2318
+ updated_at: 2009-03-01 04:12:31
2319
+ id: "206"
2320
+ short_name: Mnm
2321
+
2322
+
2323
+ Cin:
2324
+
2325
+ name: Cincinnati
2326
+ created_at: 2009-03-01 04:12:29
2327
+ updated_at: 2009-03-01 04:12:29
2328
+ id: "104"
2329
+ short_name: Cin
2330
+
2331
+
2332
+ TnM:
2333
+
2334
+ name: Tennessee-Martin
2335
+ created_at: 2009-03-01 04:12:32
2336
+ updated_at: 2009-03-01 04:12:32
2337
+ id: "297"
2338
+ short_name: TnM
2339
+
2340
+
2341
+ CPy:
2342
+
2343
+ name: Cal Poly
2344
+ created_at: 2009-03-01 04:12:29
2345
+ updated_at: 2009-03-01 04:12:29
2346
+ id: "89"
2347
+ short_name: CPy
2348
+
2349
+
2350
+ Neb:
2351
+
2352
+ name: Nebraska
2353
+ created_at: 2009-03-01 04:12:31
2354
+ updated_at: 2009-03-01 04:12:31
2355
+ id: "214"
2356
+ short_name: Neb
2357
+
2358
+
2359
+ Hou:
2360
+
2361
+ name: Houston
2362
+ created_at: 2009-03-01 04:12:30
2363
+ updated_at: 2009-03-01 04:12:30
2364
+ id: "155"
2365
+ short_name: Hou
2366
+
2367
+
2368
+ SFA:
2369
+
2370
+ name: Stephen F. Austin
2371
+ created_at: 2009-03-01 04:12:32
2372
+ updated_at: 2009-03-01 04:12:32
2373
+ id: "291"
2374
+ short_name: SFA
2375
+
2376
+
2377
+ ScH:
2378
+
2379
+ name: Sacred Heart
2380
+ created_at: 2009-03-01 04:12:31
2381
+ updated_at: 2009-03-01 04:12:31
2382
+ id: "263"
2383
+ short_name: ScH
2384
+
2385
+
2386
+ Pby:
2387
+
2388
+ name: Presbyterian
2389
+ created_at: 2009-03-01 04:12:31
2390
+ updated_at: 2009-03-01 04:12:31
2391
+ id: "251"
2392
+ short_name: Pby
2393
+
2394
+
2395
+ Nvy:
2396
+
2397
+ name: Navy
2398
+ created_at: 2009-03-01 04:12:31
2399
+ updated_at: 2009-03-01 04:12:31
2400
+ id: "213"
2401
+ short_name: Nvy
2402
+
2403
+
2404
+ MsS:
2405
+
2406
+ name: Missouri State
2407
+ created_at: 2009-03-01 04:12:31
2408
+ updated_at: 2009-03-01 04:12:31
2409
+ id: "205"
2410
+ short_name: MsS
2411
+
2412
+
2413
+ Day:
2414
+
2415
+ name: Dayton
2416
+ created_at: 2009-03-01 04:12:29
2417
+ updated_at: 2009-03-01 04:12:29
2418
+ id: "114"
2419
+ short_name: Day
2420
+
2421
+
2422
+ UBC:
2423
+
2424
+ name: UMBC
2425
+ created_at: 2009-03-01 01:58:19
2426
+ updated_at: 2009-03-01 01:58:19
2427
+ id: "32"
2428
+ short_name: UBC
2429
+
2430
+
2431
+ SJS:
2432
+
2433
+ name: San Jose State
2434
+ created_at: 2009-03-01 04:12:31
2435
+ updated_at: 2009-03-01 04:12:31
2436
+ id: "269"
2437
+ short_name: SJS
2438
+
2439
+
2440
+ Lib:
2441
+
2442
+ name: Liberty
2443
+ created_at: 2009-03-01 04:12:30
2444
+ updated_at: 2009-03-01 04:12:30
2445
+ id: "177"
2446
+ short_name: Lib
2447
+
2448
+
2449
+ LBS:
2450
+
2451
+ name: Long Beach State
2452
+ created_at: 2009-03-01 04:12:30
2453
+ updated_at: 2009-03-01 04:12:30
2454
+ id: "179"
2455
+ short_name: LBS
2456
+
2457
+
2458
+ How:
2459
+
2460
+ name: Howard
2461
+ created_at: 2009-03-01 04:12:30
2462
+ updated_at: 2009-03-01 04:12:30
2463
+ id: "157"
2464
+ short_name: How
2465
+
2466
+
2467
+ Clm:
2468
+
2469
+ name: Clemson
2470
+ created_at: 2009-03-01 01:58:18
2471
+ updated_at: 2009-03-01 01:58:18
2472
+ id: "21"
2473
+ short_name: Clm
2474
+
2475
+
2476
+ RbM:
2477
+
2478
+ name: Robert Morris
2479
+ created_at: 2009-03-01 04:12:31
2480
+ updated_at: 2009-03-01 04:12:31
2481
+ id: "260"
2482
+ short_name: RbM
2483
+
2484
+
2485
+ OrS:
2486
+
2487
+ name: Oregon State
2488
+ created_at: 2009-03-01 04:12:31
2489
+ updated_at: 2009-03-01 04:12:31
2490
+ id: "244"
2491
+ short_name: OrS
2492
+
2493
+
2494
+ Hrt:
2495
+
2496
+ name: Hartford
2497
+ created_at: 2009-03-01 04:12:30
2498
+ updated_at: 2009-03-01 04:12:30
2499
+ id: "149"
2500
+ short_name: Hrt
2501
+
2502
+
2503
+ FSt:
2504
+
2505
+ name: Fresno State
2506
+ created_at: 2009-03-01 04:12:30
2507
+ updated_at: 2009-03-01 04:12:30
2508
+ id: "139"
2509
+ short_name: FSt
2510
+
2511
+
2512
+ TSt:
2513
+
2514
+ name: Tennessee State
2515
+ created_at: 2009-03-01 04:12:32
2516
+ updated_at: 2009-03-01 04:12:32
2517
+ id: "295"
2518
+ short_name: TSt
2519
+
2520
+
2521
+ NW:
2522
+
2523
+ name: Northwestern
2524
+ created_at: 2009-03-01 04:12:31
2525
+ updated_at: 2009-03-01 04:12:31
2526
+ id: "237"
2527
+ short_name: NW
2528
+
2529
+
2530
+ Man:
2531
+
2532
+ name: Manhattan
2533
+ created_at: 2009-03-01 04:12:30
2534
+ updated_at: 2009-03-01 04:12:30
2535
+ id: "190"
2536
+ short_name: Man
2537
+
2538
+
2539
+ FGC:
2540
+
2541
+ name: Florida Gulf Coast
2542
+ created_at: 2009-03-01 04:12:30
2543
+ updated_at: 2009-03-01 04:12:30
2544
+ id: "135"
2545
+ short_name: FGC
2546
+
2547
+
2548
+ Cit:
2549
+
2550
+ name: Citadel
2551
+ created_at: 2009-03-01 04:12:29
2552
+ updated_at: 2009-03-01 04:12:29
2553
+ id: "105"
2554
+ short_name: Cit
2555
+
2556
+
2557
+ Sta:
2558
+
2559
+ name: Stanford
2560
+ created_at: 2009-03-01 01:58:19
2561
+ updated_at: 2009-03-01 01:58:19
2562
+ id: "43"
2563
+ short_name: Sta
2564
+
2565
+
2566
+ Col:
2567
+
2568
+ name: Colorado
2569
+ created_at: 2009-03-01 04:12:29
2570
+ updated_at: 2009-03-01 04:12:29
2571
+ id: "109"
2572
+ short_name: Col
2573
+
2574
+
2575
+ SUt:
2576
+
2577
+ name: Southern Utah
2578
+ created_at: 2009-03-01 04:12:32
2579
+ updated_at: 2009-03-01 04:12:32
2580
+ id: "285"
2581
+ short_name: SUt
2582
+
2583
+
2584
+ SMS:
2585
+
2586
+ name: Southeast Missouri State
2587
+ created_at: 2009-03-01 04:12:32
2588
+ updated_at: 2009-03-01 04:12:32
2589
+ id: "279"
2590
+ short_name: SMS
2591
+
2592
+
2593
+ Cha:
2594
+
2595
+ name: Charlotte
2596
+ created_at: 2009-03-01 04:12:29
2597
+ updated_at: 2009-03-01 04:12:29
2598
+ id: "101"
2599
+ short_name: Cha
2600
+
2601
+
2602
+ NJI:
2603
+
2604
+ name: N.J.I.T.
2605
+ created_at: 2009-03-01 04:12:31
2606
+ updated_at: 2009-03-01 04:12:31
2607
+ id: "212"
2608
+ short_name: NJI
2609
+
2610
+
2611
+ NHa:
2612
+
2613
+ name: New Hampshire
2614
+ created_at: 2009-03-01 04:12:31
2615
+ updated_at: 2009-03-01 04:12:31
2616
+ id: "216"
2617
+ short_name: NHa
2618
+
2619
+
2620
+ MSU:
2621
+
2622
+ name: Michigan St.
2623
+ created_at: 2009-03-01 01:58:19
2624
+ updated_at: 2009-03-01 01:58:19
2625
+ id: "37"
2626
+ short_name: MSU
2627
+
2628
+
2629
+ FAM:
2630
+
2631
+ name: Florida A&M
2632
+ created_at: 2009-03-01 04:12:30
2633
+ updated_at: 2009-03-01 04:12:30
2634
+ id: "133"
2635
+ short_name: FAM
2636
+
2637
+
2638
+ EMU:
2639
+
2640
+ name: Eastern Michigan
2641
+ created_at: 2009-03-01 04:12:30
2642
+ updated_at: 2009-03-01 04:12:30
2643
+ id: "126"
2644
+ short_name: EMU
2645
+
2646
+
2647
+ Frf:
2648
+
2649
+ name: Fairfield
2650
+ created_at: 2009-03-01 04:12:30
2651
+ updated_at: 2009-03-01 04:12:30
2652
+ id: "130"
2653
+ short_name: Frf
2654
+
2655
+
2656
+ FIn:
2657
+
2658
+ name: Florida International
2659
+ created_at: 2009-03-01 04:12:30
2660
+ updated_at: 2009-03-01 04:12:30
2661
+ id: "136"
2662
+ short_name: FIn
2663
+
2664
+
2665
+ Con:
2666
+
2667
+ name: Connecticut
2668
+ created_at: 2009-03-01 01:58:19
2669
+ updated_at: 2009-03-01 01:58:19
2670
+ id: "55"
2671
+ short_name: Con
2672
+
2673
+
2674
+ Ken:
2675
+
2676
+ name: Kentucky
2677
+ created_at: 2009-03-01 01:58:19
2678
+ updated_at: 2009-03-01 01:58:19
2679
+ id: "42"
2680
+ short_name: Ken
2681
+
2682
+
2683
+ Ver:
2684
+
2685
+ name: Vermont
2686
+ created_at: 2009-03-01 04:12:32
2687
+ updated_at: 2009-03-01 04:12:32
2688
+ id: "321"
2689
+ short_name: Ver
2690
+
2691
+
2692
+ NDS:
2693
+
2694
+ name: North Dakota State
2695
+ created_at: 2009-03-01 04:12:31
2696
+ updated_at: 2009-03-01 04:12:31
2697
+ id: "229"
2698
+ short_name: NDS
2699
+
2700
+
2701
+ Ala:
2702
+
2703
+ name: Alabama
2704
+ created_at: 2009-03-01 04:12:29
2705
+ updated_at: 2009-03-01 04:12:29
2706
+ id: "67"
2707
+ short_name: Ala
2708
+
2709
+
2710
+ MVS:
2711
+
2712
+ name: Mis. Valley St
2713
+ created_at: 2009-03-01 01:58:19
2714
+ updated_at: 2009-03-01 01:58:19
2715
+ id: "50"
2716
+ short_name: MVS
2717
+
2718
+
2719
+ GM:
2720
+
2721
+ name: George Mason
2722
+ created_at: 2009-03-01 01:58:18
2723
+ updated_at: 2009-03-01 01:58:18
2724
+ id: "6"
2725
+ short_name: GM
2726
+
2727
+
2728
+ Tln:
2729
+
2730
+ name: Tulane
2731
+ created_at: 2009-03-01 04:12:32
2732
+ updated_at: 2009-03-01 04:12:32
2733
+ id: "305"
2734
+ short_name: Tln
2735
+
2736
+
2737
+ Mar:
2738
+
2739
+ name: Marquette
2740
+ created_at: 2009-03-01 01:58:19
2741
+ updated_at: 2009-03-01 01:58:19
2742
+ id: "41"
2743
+ short_name: Mar
2744
+
2745
+
2746
+ ISt:
2747
+
2748
+ name: Idaho State
2749
+ created_at: 2009-03-01 04:12:30
2750
+ updated_at: 2009-03-01 04:12:30
2751
+ id: "159"
2752
+ short_name: ISt
2753
+
2754
+
2755
+ Alb:
2756
+
2757
+ name: Albany
2758
+ created_at: 2009-03-01 04:12:29
2759
+ updated_at: 2009-03-01 04:12:29
2760
+ id: "69"
2761
+ short_name: Alb
2762
+
2763
+
2764
+ Wof:
2765
+
2766
+ name: Wofford
2767
+ created_at: 2009-03-01 04:12:32
2768
+ updated_at: 2009-03-01 04:12:32
2769
+ id: "336"
2770
+ short_name: Wof
2771
+
2772
+
2773
+ Rch:
2774
+
2775
+ name: Richmond
2776
+ created_at: 2009-03-01 04:12:31
2777
+ updated_at: 2009-03-01 04:12:31
2778
+ id: "258"
2779
+ short_name: Rch
2780
+
2781
+
2782
+ Win:
2783
+
2784
+ name: Winthrop
2785
+ created_at: 2009-03-01 01:58:18
2786
+ updated_at: 2009-03-01 01:58:18
2787
+ id: "8"
2788
+ short_name: Win
2789
+
2790
+
2791
+ Xav:
2792
+
2793
+ name: Xavier
2794
+ created_at: 2009-03-01 01:58:19
2795
+ updated_at: 2009-03-01 01:58:19
2796
+ id: "59"
2797
+ short_name: Xav
2798
+
2799
+
2800
+ Mas:
2801
+
2802
+ name: Massachusetts
2803
+ created_at: 2009-03-01 04:12:30
2804
+ updated_at: 2009-03-01 04:12:30
2805
+ id: "195"
2806
+ short_name: Mas
2807
+
2808
+
2809
+ MiS:
2810
+
2811
+ name: Mississippi St.
2812
+ created_at: 2009-03-01 01:58:19
2813
+ updated_at: 2009-03-01 01:58:19
2814
+ id: "35"
2815
+ short_name: MiS
2816
+
2817
+
2818
+ Alc:
2819
+
2820
+ name: Alcorn State
2821
+ created_at: 2009-03-01 04:12:29
2822
+ updated_at: 2009-03-01 04:12:29
2823
+ id: "70"
2824
+ short_name: Alc
2825
+
2826
+
2827
+ EWa:
2828
+
2829
+ name: Eastern Washington
2830
+ created_at: 2009-03-01 04:12:30
2831
+ updated_at: 2009-03-01 04:12:30
2832
+ id: "127"
2833
+ short_name: EWa
2834
+
2835
+
2836
+ WSt:
2837
+
2838
+ name: Washington St.
2839
+ created_at: 2009-03-01 01:58:18
2840
+ updated_at: 2009-03-01 01:58:18
2841
+ id: "7"
2842
+ short_name: WSt
2843
+
2844
+
2845
+ InS:
2846
+
2847
+ name: Indiana State
2848
+ created_at: 2009-03-01 04:12:30
2849
+ updated_at: 2009-03-01 04:12:30
2850
+ id: "163"
2851
+ short_name: InS
2852
+
2853
+
2854
+ MOH:
2855
+
2856
+ name: Miami (OH)
2857
+ created_at: 2009-03-01 04:12:31
2858
+ updated_at: 2009-03-01 04:12:31
2859
+ id: "198"
2860
+ short_name: MOH
2861
+
2862
+
2863
+ NOr:
2864
+
2865
+ name: New Orleans
2866
+ created_at: 2009-03-01 04:12:31
2867
+ updated_at: 2009-03-01 04:12:31
2868
+ id: "219"
2869
+ short_name: NOr
2870
+
2871
+
2872
+ WIl:
2873
+
2874
+ name: Western Illinois
2875
+ created_at: 2009-03-01 04:12:32
2876
+ updated_at: 2009-03-01 04:12:32
2877
+ id: "331"
2878
+ short_name: WIl
2879
+
2880
+
2881
+ Tol:
2882
+
2883
+ name: Toledo
2884
+ created_at: 2009-03-01 04:12:32
2885
+ updated_at: 2009-03-01 04:12:32
2886
+ id: "302"
2887
+ short_name: Tol
2888
+
2889
+
2890
+ Qui:
2891
+
2892
+ name: Quinnipiac
2893
+ created_at: 2009-03-01 04:12:31
2894
+ updated_at: 2009-03-01 04:12:31
2895
+ id: "254"
2896
+ short_name: Qui
2897
+
2898
+
2899
+ PSU:
2900
+
2901
+ name: Penn State
2902
+ created_at: 2009-03-01 04:12:31
2903
+ updated_at: 2009-03-01 04:12:31
2904
+ id: "246"
2905
+ short_name: PSU
2906
+
2907
+
2908
+ NWS:
2909
+
2910
+ name: Northwestern State
2911
+ created_at: 2009-03-01 04:12:31
2912
+ updated_at: 2009-03-01 04:12:31
2913
+ id: "238"
2914
+ short_name: NWS
2915
+
2916
+
2917
+ NCA:
2918
+
2919
+ name: North Carolina-Asheville
2920
+ created_at: 2009-03-01 04:12:31
2921
+ updated_at: 2009-03-01 04:12:31
2922
+ id: "226"
2923
+ short_name: NCA
2924
+
2925
+
2926
+ DPl:
2927
+
2928
+ name: DePaul
2929
+ created_at: 2009-03-01 04:12:30
2930
+ updated_at: 2009-03-01 04:12:30
2931
+ id: "118"
2932
+ short_name: DPl
2933
+
2934
+
2935
+ Cor:
2936
+
2937
+ name: Cornell
2938
+ created_at: 2009-03-01 01:58:19
2939
+ updated_at: 2009-03-01 01:58:19
2940
+ id: "44"
2941
+ short_name: Cor
2942
+
2943
+
2944
+ ULV:
2945
+
2946
+ name: UNLV
2947
+ created_at: 2009-03-01 01:58:18
2948
+ updated_at: 2009-03-01 01:58:18
2949
+ id: "19"
2950
+ short_name: ULV
2951
+
2952
+
2953
+ SB:
2954
+
2955
+ name: UC Santa Barbara
2956
+ created_at: 2009-03-01 04:12:32
2957
+ updated_at: 2009-03-01 04:12:32
2958
+ id: "311"
2959
+ short_name: SB
2960
+
2961
+
2962
+ GrS:
2963
+
2964
+ name: Grambling State
2965
+ created_at: 2009-03-01 04:12:30
2966
+ updated_at: 2009-03-01 04:12:30
2967
+ id: "146"
2968
+ short_name: GrS
2969
+
2970
+
2971
+ Ric:
2972
+
2973
+ name: Rice
2974
+ created_at: 2009-03-01 04:12:31
2975
+ updated_at: 2009-03-01 04:12:31
2976
+ id: "257"
2977
+ short_name: Ric
2978
+
2979
+
2980
+ NCC:
2981
+
2982
+ name: North Carolina Central
2983
+ created_at: 2009-03-01 04:12:31
2984
+ updated_at: 2009-03-01 04:12:31
2985
+ id: "224"
2986
+ short_name: NCC
2987
+
2988
+
2989
+ LaL:
2990
+
2991
+ name: Louisiana-Lafayette
2992
+ created_at: 2009-03-01 04:12:30
2993
+ updated_at: 2009-03-01 04:12:30
2994
+ id: "183"
2995
+ short_name: LaL
2996
+
2997
+
2998
+ UVa:
2999
+
3000
+ name: Utah Valley
3001
+ created_at: 2009-03-01 04:12:32
3002
+ updated_at: 2009-03-01 04:12:32
3003
+ id: "318"
3004
+ short_name: UVa
3005
+
3006
+
3007
+ SFN:
3008
+
3009
+ name: St. Francis (NY)
3010
+ created_at: 2009-03-01 04:12:32
3011
+ updated_at: 2009-03-01 04:12:32
3012
+ id: "287"
3013
+ short_name: SFN
3014
+
3015
+
3016
+ Sam:
3017
+
3018
+ name: Samford
3019
+ created_at: 2009-03-01 04:12:31
3020
+ updated_at: 2009-03-01 04:12:31
3021
+ id: "266"
3022
+ short_name: Sam
3023
+
3024
+
3025
+ Rid:
3026
+
3027
+ name: Rider
3028
+ created_at: 2009-03-01 04:12:31
3029
+ updated_at: 2009-03-01 04:12:31
3030
+ id: "259"
3031
+ short_name: Rid
3032
+
3033
+
3034
+ SD:
3035
+ name: San Diego
3036
+ created_at: 2009-03-01 01:58:19
3037
+ updated_at: 2009-03-01 01:58:19
3038
+ id: "56"
3039
+ short_name: SD
3040
+ LaM:
3041
+ name: Louisiana-Monroe
3042
+ created_at: 2009-03-01 04:12:30
3043
+ updated_at: 2009-03-01 04:12:30
3044
+ id: "184"
3045
+ short_name: LaM
3046
+ CSB:
3047
+ name: Cal State Bakersfield
3048
+ created_at: 2009-03-01 04:12:29
3049
+ updated_at: 2009-03-01 04:12:29
3050
+ id: "90"
3051
+ short_name: CSB