├── .env ├── .gitignore ├── LICENSE.md ├── Procfile ├── Procfile.windows ├── README.md ├── csvs ├── all_voters.csv ├── ballots.csv ├── new_voters.txt ├── returning_voters.csv ├── short_names.csv ├── teams.csv ├── teams.txt ├── teamsheet.csv └── teamsheet_full.csv ├── manage.py ├── poll ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160714_1852.py │ ├── 0003_auto_20160714_1908.py │ ├── 0004_auto_20160714_1922.py │ ├── 0005_auto_20160714_1950.py │ ├── 0006_auto_20160714_2018.py │ ├── 0007_auto_20160714_2043.py │ ├── 0008_auto_20160723_1705.py │ ├── 0009_auto_20160724_2152.py │ ├── 0010_auto_20160724_2200.py │ ├── 0011_userrole.py │ ├── 0012_auto_20160727_2137.py │ ├── 0013_auto_20160805_1831.py │ ├── 0014_auto_20160806_1602.py │ ├── 0015_auto_20160829_2002.py │ ├── 0016_auto_20200926_1439.py │ └── __init__.py ├── models.py ├── pipeline.py ├── scripts │ ├── __init__.py │ ├── add_all_voters.py │ ├── add_new_voters.py │ ├── add_short_names.py │ ├── give_returning_voters_privs.py │ └── import_ballots.py ├── templates │ └── poll │ │ ├── about.html │ │ ├── ballot_editor.html │ │ ├── ballot_viewer.html │ │ ├── base.html │ │ ├── home.html │ │ ├── login.html │ │ ├── messenger.html │ │ ├── my_ballots.html │ │ ├── not_a_voter.html │ │ ├── poll_ballots.html │ │ ├── poll_viewer.html │ │ ├── poll_voter_view.html │ │ └── team_reasons.html ├── tests.py ├── urls.py └── views.py ├── rcfbpoll ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ └── production.py ├── static │ ├── css │ │ └── poll.css │ ├── favicon │ │ ├── android-chrome-144x144.png │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-36x36.png │ │ ├── android-chrome-48x48.png │ │ ├── android-chrome-72x72.png │ │ ├── android-chrome-96x96.png │ │ ├── apple-touch-icon-114x114.png │ │ ├── apple-touch-icon-120x120.png │ │ ├── apple-touch-icon-144x144.png │ │ ├── apple-touch-icon-152x152.png │ │ ├── apple-touch-icon-180x180.png │ │ ├── apple-touch-icon-57x57.png │ │ ├── apple-touch-icon-60x60.png │ │ ├── apple-touch-icon-72x72.png │ │ ├── apple-touch-icon-76x76.png │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.html │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ ├── mstile-70x70.png │ │ └── safari-pinned-tab.svg │ ├── images │ │ ├── full60 │ │ │ ├── 1star.png │ │ │ ├── 2star.png │ │ │ ├── 3star.png │ │ │ ├── 4star.png │ │ │ ├── 5star.png │ │ │ ├── aac.png │ │ │ ├── aachen.png │ │ │ ├── aalto.png │ │ │ ├── aast.png │ │ │ ├── abc.png │ │ │ ├── aberdeen.png │ │ │ ├── aberystwyth.png │ │ │ ├── abilenechristian.png │ │ │ ├── aboakademi.png │ │ │ ├── abu.png │ │ │ ├── academicbowl.png │ │ │ ├── acadia.png │ │ │ ├── acc.png │ │ │ ├── accn.png │ │ │ ├── acfc.png │ │ │ ├── adamsstate.png │ │ │ ├── adelaide.png │ │ │ ├── adelphi.png │ │ │ ├── admiralscup.png │ │ │ ├── adrian.png │ │ │ ├── ahuntsic.png │ │ │ ├── aibu.png │ │ │ ├── aichi.png │ │ │ ├── aichigakuin.png │ │ │ ├── airforce.png │ │ │ ├── airforceball.png │ │ │ ├── akdeniz.png │ │ │ ├── akita.png │ │ │ ├── akron.png │ │ │ ├── akronball.png │ │ │ ├── alabama.png │ │ │ ├── alabama2.png │ │ │ ├── alabama3.png │ │ │ ├── alabamaam.png │ │ │ ├── alabamaanimated1.png │ │ │ ├── alabamaanimated2.png │ │ │ ├── alabamaanimated3.png │ │ │ ├── alabamaanimated4.png │ │ │ ├── alabamaball.png │ │ │ ├── alabamaprep.png │ │ │ ├── alabamastate.png │ │ │ ├── alamo.png │ │ │ ├── alaskaanchorage.png │ │ │ ├── alaskafairbanks.png │ │ │ ├── albany.png │ │ │ ├── albanystate.png │ │ │ ├── alberta.png │ │ │ ├── albion.png │ │ │ ├── albright.png │ │ │ ├── alcornstate.png │ │ │ ├── aldersonbroaddus.png │ │ │ ├── alfred.png │ │ │ ├── alfredstate.png │ │ │ ├── allamerican.png │ │ │ ├── allanhancock.png │ │ │ ├── allegheny.png │ │ │ ├── allen.png │ │ │ ├── alliance.png │ │ │ ├── allwikian.png │ │ │ ├── alma.png │ │ │ ├── aloha.png │ │ │ ├── amas.png │ │ │ ├── amazon.png │ │ │ ├── americaeast.png │ │ │ ├── american.png │ │ │ ├── americaninternational.png │ │ │ ├── americanriver.png │ │ │ ├── americanwest.png │ │ │ ├── amherst.png │ │ │ ├── amu.png │ │ │ ├── anadolu.png │ │ │ ├── anahuaccancun.png │ │ │ ├── analysis.png │ │ │ ├── anderson.png │ │ │ ├── andregrasset.png │ │ │ ├── andrews.png │ │ │ ├── angelostate.png │ │ │ ├── angliaruskin.png │ │ │ ├── ankara.png │ │ │ ├── annamaria.png │ │ │ ├── anniversary.png │ │ │ ├── announcement.png │ │ │ ├── announcements.png │ │ │ ├── anokaramsey.png │ │ │ ├── antalya.png │ │ │ ├── antelopevalley.png │ │ │ ├── aoyamagakuin.png │ │ │ ├── ap.png │ │ │ ├── apa.png │ │ │ ├── appalachianstate.png │ │ │ ├── appalachianstateball.png │ │ │ ├── applecup.png │ │ │ ├── apprentice.png │ │ │ ├── aquinasmi.png │ │ │ ├── arcadia.png │ │ │ ├── archrivalry.png │ │ │ ├── arizona.png │ │ │ ├── arizonaball.png │ │ │ ├── arizonabowl.png │ │ │ ├── arizonastate.png │ │ │ ├── arizonastateball.png │ │ │ ├── arizonawestern.png │ │ │ ├── arkansas.png │ │ │ ├── arkansasball.png │ │ │ ├── arkansasbaptist.png │ │ │ ├── arkansasintercollegiate.png │ │ │ ├── arkansasmonticello.png │ │ │ ├── arkansaspinebluff.png │ │ │ ├── arkansasstate.png │ │ │ ├── arkansasstateball.png │ │ │ ├── arkansastech.png │ │ │ ├── armedforces.png │ │ │ ├── army.png │ │ │ ├── armyball.png │ │ │ ├── armynavy.png │ │ │ ├── artist.png │ │ │ ├── asa.png │ │ │ ├── asamiami.png │ │ │ ├── ashland.png │ │ │ ├── asia.png │ │ │ ├── assumption.png │ │ │ ├── aston.png │ │ │ ├── athensstate.png │ │ │ ├── atilim.png │ │ │ ├── atlantasportsacademy.png │ │ │ ├── atlantic.png │ │ │ ├── atlantic10.png │ │ │ ├── atlantichockey.png │ │ │ ├── atlanticsun.png │ │ │ ├── auburn.png │ │ │ ├── auburnball.png │ │ │ ├── auc.png │ │ │ ├── aucc.png │ │ │ ├── augsburg.png │ │ │ ├── augusta.png │ │ │ ├── augustana.png │ │ │ ├── augustanasd.png │ │ │ ├── auro.png │ │ │ ├── aurora.png │ │ │ ├── austin.png │ │ │ ├── austinpeay.png │ │ │ ├── australia.png │ │ │ ├── austria.png │ │ │ ├── avemaria.png │ │ │ ├── averett.png │ │ │ ├── aviation.png │ │ │ ├── avila.png │ │ │ ├── awards.png │ │ │ ├── axe.png │ │ │ ├── azchristian.png │ │ │ ├── aztec.png │ │ │ ├── azusapacific.png │ │ │ ├── bacardi.png │ │ │ ├── backyardbrawl.png │ │ │ ├── bacone.png │ │ │ ├── bahamas.png │ │ │ ├── baker.png │ │ │ ├── bakersfield.png │ │ │ ├── baldwinwallace.png │ │ │ ├── ballsohard.png │ │ │ ├── ballstate.png │ │ │ ├── ballstateball.png │ │ │ ├── baltimore.png │ │ │ ├── band.png │ │ │ ├── bangalore.png │ │ │ ├── bangor.png │ │ │ ├── baptistchristian.png │ │ │ ├── barberscotia.png │ │ │ ├── bard.png │ │ │ ├── barton.png │ │ │ ├── baskent.png │ │ │ ├── bates.png │ │ │ ├── bath.png │ │ │ ├── bathspa.png │ │ │ ├── battleforhighway82.png │ │ │ ├── battlei10.png │ │ │ ├── battleofi75.png │ │ │ ├── battleofthebayou.png │ │ │ ├── battleoftheblue.png │ │ │ ├── baylor.png │ │ │ ├── baylorball.png │ │ │ ├── bayou.png │ │ │ ├── bayoubucket.png │ │ │ ├── bcs.png │ │ │ ├── beamer.png │ │ │ ├── beard.png │ │ │ ├── beauceappalaches.png │ │ │ ├── becker.png │ │ │ ├── bedlambell.png │ │ │ ├── beehiveboot.png │ │ │ ├── beerbarrel.png │ │ │ ├── beijingnormal.png │ │ │ ├── beijingsport.png │ │ │ ├── belhaven.png │ │ │ ├── belk.png │ │ │ ├── bell.png │ │ │ ├── belmontabbey.png │ │ │ ├── beloit.png │ │ │ ├── bemidjistate.png │ │ │ ├── benedict.png │ │ │ ├── benedictine.png │ │ │ ├── benedictineks.png │ │ │ ├── benschwarzwalder.png │ │ │ ├── bentley.png │ │ │ ├── berry.png │ │ │ ├── bestof.png │ │ │ ├── bethanyks.png │ │ │ ├── bethanywv.png │ │ │ ├── bethel.png │ │ │ ├── bethelks.png │ │ │ ├── betheltn.png │ │ │ ├── bethunecookman.png │ │ │ ├── bfu.png │ │ │ ├── bielema.png │ │ │ ├── big12.png │ │ │ ├── big8.png │ │ │ ├── big8renewal.png │ │ │ ├── bigeast.png │ │ │ ├── bigsky.png │ │ │ ├── bigsouth.png │ │ │ ├── bigten.png │ │ │ ├── bigwest.png │ │ │ ├── bilkent.png │ │ │ ├── billwalsh.png │ │ │ ├── birmingham.png │ │ │ ├── birminghambowl.png │ │ │ ├── birminghamsouthern.png │ │ │ ├── bishops.png │ │ │ ├── bisu.png │ │ │ ├── bit.png │ │ │ ├── bjtu.png │ │ │ ├── bjut.png │ │ │ ├── blackburn.png │ │ │ ├── blackdiamond.png │ │ │ ├── blackhillsstate.png │ │ │ ├── blinn.png │ │ │ ├── bloomsburg.png │ │ │ ├── bluebonnet.png │ │ │ ├── bluefield.png │ │ │ ├── bluefieldstate.png │ │ │ ├── bluegrass.png │ │ │ ├── bluffton.png │ │ │ ├── bnu.png │ │ │ ├── bobstoops.png │ │ │ ├── bocaraton.png │ │ │ ├── bogazici.png │ │ │ ├── boisestate.png │ │ │ ├── boisestateball.png │ │ │ ├── bones.png │ │ │ ├── booster.png │ │ │ ├── bordeaux.png │ │ │ ├── bordeauxmontaigne.png │ │ │ ├── borderclaw.png │ │ │ ├── bostoncollege.png │ │ │ ├── bostoncollegeball.png │ │ │ ├── bostonuniversity.png │ │ │ ├── bournemouth.png │ │ │ ├── bowdoin.png │ │ │ ├── bowiestate.png │ │ │ ├── bowlinggreen.png │ │ │ ├── bowlinggreenball.png │ │ │ ├── bradford.png │ │ │ ├── bradley.png │ │ │ ├── brambedkar.png │ │ │ ├── brandeis.png │ │ │ ├── brawlofthewild.png │ │ │ ├── brazil.png │ │ │ ├── brevard.png │ │ │ ├── briankelly.png │ │ │ ├── briarcliff.png │ │ │ ├── bricecowellmusket.png │ │ │ ├── brick.png │ │ │ ├── bridgeport.png │ │ │ ├── bridgersbattle.png │ │ │ ├── bridgewater.png │ │ │ ├── bridgewaterstate.png │ │ │ ├── brighton.png │ │ │ ├── bristol.png │ │ │ ├── brockport.png │ │ │ ├── brokenchair.png │ │ │ ├── bronzeboot.png │ │ │ ├── bronzeturkey.png │ │ │ ├── brooklyn.png │ │ │ ├── brown.png │ │ │ ├── brunel.png │ │ │ ├── bryant.png │ │ │ ├── btn.png │ │ │ ├── bucea.png │ │ │ ├── bucknell.png │ │ │ ├── bucs.png │ │ │ ├── buct.png │ │ │ ├── buddhist.png │ │ │ ├── bue.png │ │ │ ├── buenavista.png │ │ │ ├── buffalo.png │ │ │ ├── buffaloball.png │ │ │ ├── buffalostate.png │ │ │ ├── bug.png │ │ │ ├── bunkyo.png │ │ │ ├── bupt.png │ │ │ ├── burningcouchcup.png │ │ │ ├── butchjones.png │ │ │ ├── butler.png │ │ │ ├── butlercc.png │ │ │ ├── butte.png │ │ │ ├── buu.png │ │ │ ├── byu.png │ │ │ ├── byuball.png │ │ │ ├── byuidaho.png │ │ │ ├── byutv.png │ │ │ ├── caa.png │ │ │ ├── cabrillo.png │ │ │ ├── cactus.png │ │ │ ├── cairo.png │ │ │ ├── caldwell.png │ │ │ ├── calgary.png │ │ │ ├── calgaryball.png │ │ │ ├── california.png │ │ │ ├── california2.png │ │ │ ├── californiaball.png │ │ │ ├── californiabaptist.png │ │ │ ├── californiapa.png │ │ │ ├── californiaraisin.png │ │ │ ├── callutheran.png │ │ │ ├── calpoly.png │ │ │ ├── calpolypomona.png │ │ │ ├── caltech.png │ │ │ ├── calwestern.png │ │ │ ├── cambridge.png │ │ │ ├── camellia.png │ │ │ ├── camera.png │ │ │ ├── cameron.png │ │ │ ├── campbell.png │ │ │ ├── campbellsville.png │ │ │ ├── canada.png │ │ │ ├── canakkalegsk.png │ │ │ ├── canberra.png │ │ │ ├── canisius.png │ │ │ ├── canterbury.png │ │ │ ├── canterburyin.png │ │ │ ├── capebreton.png │ │ │ ├── capital.png │ │ │ ├── capitalcup.png │ │ │ ├── cardiff.png │ │ │ ├── carlberg.png │ │ │ ├── carletonca.png │ │ │ ├── carletonmn.png │ │ │ ├── carlisle.png │ │ │ ├── carnegiemellon.png │ │ │ ├── carolinavictorybell.png │ │ │ ├── carrollmt.png │ │ │ ├── carrollwi.png │ │ │ ├── carsonnewman.png │ │ │ ├── cart.png │ │ │ ├── carthage.png │ │ │ ├── cascadeclash.png │ │ │ ├── casewestern.png │ │ │ ├── castleton.png │ │ │ ├── casual.png │ │ │ ├── catawba.png │ │ │ ├── catholic.png │ │ │ ├── cbi.png │ │ │ ├── cbs.png │ │ │ ├── cbssn.png │ │ │ ├── cccaa.png │ │ │ ├── ccm.png │ │ │ ├── ccny.png │ │ │ ├── ccsanfrancisco.png │ │ │ ├── cedarville.png │ │ │ ├── cegepsherbrooke.png │ │ │ ├── celebration.png │ │ │ ├── cem.png │ │ │ ├── centenary.png │ │ │ ├── centennial.png │ │ │ ├── central.png │ │ │ ├── centralarkansas.png │ │ │ ├── centralconnecticutstate.png │ │ │ ├── centralia.png │ │ │ ├── centralinternational.png │ │ │ ├── centrallakes.png │ │ │ ├── centralmethodist.png │ │ │ ├── centralmichigan.png │ │ │ ├── centralmichiganball.png │ │ │ ├── centralmissouri.png │ │ │ ├── centraloklahoma.png │ │ │ ├── centralsoundjc.png │ │ │ ├── centralstate.png │ │ │ ├── centralwashington.png │ │ │ ├── centre.png │ │ │ ├── centurycollege.png │ │ │ ├── cerritos.png │ │ │ ├── cetysmexicali.png │ │ │ ├── cetystijuana.png │ │ │ ├── cfp.png │ │ │ ├── cgpresidenciales.png │ │ │ ├── chabot.png │ │ │ ├── chadronstate.png │ │ │ ├── chaffey.png │ │ │ ├── champlain.png │ │ │ ├── champlainlennoxville.png │ │ │ ├── champlainstlambert.png │ │ │ ├── chancellorsspurs.png │ │ │ ├── chandigarh.png │ │ │ ├── chaos.png │ │ │ ├── chapman.png │ │ │ ├── charitybowl.png │ │ │ ├── charleston.png │ │ │ ├── charlestonsouthern.png │ │ │ ├── charlotte.png │ │ │ ├── charlotteball.png │ │ │ ├── chattahoocheetc.png │ │ │ ├── chattanooga.png │ │ │ ├── checkbox.png │ │ │ ├── cheer.png │ │ │ ├── cherry.png │ │ │ ├── cherrybowl.png │ │ │ ├── chestnuthill.png │ │ │ ├── cheyney.png │ │ │ ├── chiba.png │ │ │ ├── chibacommerce.png │ │ │ ├── chicago.png │ │ │ ├── chicagoallstar.png │ │ │ ├── chichester.png │ │ │ ├── chicostate.png │ │ │ ├── chicoutimi.png │ │ │ ├── chiefcaddo.png │ │ │ ├── chihuahua.png │ │ │ ├── china.png │ │ │ ├── chizik.png │ │ │ ├── chowan.png │ │ │ ├── christianbrothers.png │ │ │ ├── christophernewport.png │ │ │ ├── chukyo.png │ │ │ ├── chungang.png │ │ │ ├── chuo.png │ │ │ ├── ciaa.png │ │ │ ├── cincinnati.png │ │ │ ├── cincinnatiball.png │ │ │ ├── cincinnatichristian.png │ │ │ ├── cincinnatimiamibell.png │ │ │ ├── cipe.png │ │ │ ├── cis.png │ │ │ ├── cisco.png │ │ │ ├── cit.png │ │ │ ├── citadel.png │ │ │ ├── citrus.png │ │ │ ├── citrusbowl.png │ │ │ ├── clackamascc.png │ │ │ ├── claflin.png │ │ │ ├── claremontmuddscripps.png │ │ │ ├── clarion.png │ │ │ ├── clarkatlanta.png │ │ │ ├── clarke.png │ │ │ ├── clarkson.png │ │ │ ├── cleanoldfashionedhate.png │ │ │ ├── clemson.png │ │ │ ├── clemsonanimated1.png │ │ │ ├── clemsonanimated2.png │ │ │ ├── clemsonanimated3.png │ │ │ ├── clemsonanimated4.png │ │ │ ├── clemsonball.png │ │ │ ├── clowney.png │ │ │ ├── cndf.png │ │ │ ├── cnu.png │ │ │ ├── coach.png │ │ │ ├── coahomacc.png │ │ │ ├── coastalcarolina.png │ │ │ ├── coastalcarolinaball.png │ │ │ ├── coastguard.png │ │ │ ├── cobra.png │ │ │ ├── coe.png │ │ │ ├── coffeyvillecc.png │ │ │ ├── colby.png │ │ │ ├── colgate.png │ │ │ ├── collegecanyons.png │ │ │ ├── collegecharleston.png │ │ │ ├── collegedalma.png │ │ │ ├── collegedesert.png │ │ │ ├── collegehockeyamerica.png │ │ │ ├── collegeidaho.png │ │ │ ├── collegemarin.png │ │ │ ├── collegeofemporia.png │ │ │ ├── collegeoffaith.png │ │ │ ├── collegeoffaithar.png │ │ │ ├── collegeoftheozarks.png │ │ │ ├── collegeredwoods.png │ │ │ ├── collegesequoias.png │ │ │ ├── collegesiskiyous.png │ │ │ ├── cologne.png │ │ │ ├── colorado.png │ │ │ ├── coloradoball.png │ │ │ ├── coloradocollege.png │ │ │ ├── coloradomesa.png │ │ │ ├── coloradomines.png │ │ │ ├── coloradostate.png │ │ │ ├── coloradostateball.png │ │ │ ├── columbia.png │ │ │ ├── columbiabasin.png │ │ │ ├── columbusstate.png │ │ │ ├── commonwealthcup.png │ │ │ ├── complain.png │ │ │ ├── comptoncc.png │ │ │ ├── conadeip.png │ │ │ ├── concord.png │ │ │ ├── concordiaal.png │ │ │ ├── concordiaca.png │ │ │ ├── concordiachicago.png │ │ │ ├── concordiami.png │ │ │ ├── concordiamoorhead.png │ │ │ ├── concordiane.png │ │ │ ├── concordiastpaul.png │ │ │ ├── concordiawi.png │ │ │ ├── connecticut.png │ │ │ ├── connecticutball.png │ │ │ ├── contracosta.png │ │ │ ├── contributor.png │ │ │ ├── cookie.png │ │ │ ├── cooperunion.png │ │ │ ├── copiahlincolncc.png │ │ │ ├── coppinstate.png │ │ │ ├── corncoug.png │ │ │ ├── corndog.png │ │ │ ├── cornell.png │ │ │ ├── cornellia.png │ │ │ ├── corso.png │ │ │ ├── cortaca.png │ │ │ ├── cotton.png │ │ │ ├── coventry.png │ │ │ ├── cowleycountycc.png │ │ │ ├── cpelyon.png │ │ │ ├── crablegs.png │ │ │ ├── creighton.png │ │ │ ├── crown.png │ │ │ ├── csf.png │ │ │ ├── csfl.png │ │ │ ├── csueastbay.png │ │ │ ├── csufullerton.png │ │ │ ├── csula.png │ │ │ ├── csulongbeach.png │ │ │ ├── csunorthridge.png │ │ │ ├── csupueblo.png │ │ │ ├── cueb.png │ │ │ ├── culverstockton.png │ │ │ ├── cumberland.png │ │ │ ├── cumberlands.png │ │ │ ├── cumt.png │ │ │ ├── cure.png │ │ │ ├── curry.png │ │ │ ├── cusa.png │ │ │ ├── cuyahogagoldbowl.png │ │ │ ├── cyhawk.png │ │ │ ├── d2championship.png │ │ │ ├── daegu.png │ │ │ ├── daegucatholic.png │ │ │ ├── daeguhaany.png │ │ │ ├── daitobunka.png │ │ │ ├── dakotaathletic.png │ │ │ ├── dakotacollege.png │ │ │ ├── dakotactc.png │ │ │ ├── dakotamarker.png │ │ │ ├── dakotastate.png │ │ │ ├── dakotawesleyan.png │ │ │ ├── dalhousie.png │ │ │ ├── dallas.png │ │ │ ├── danielbaker.png │ │ │ ├── dantonio.png │ │ │ ├── dartmouth.png │ │ │ ├── davenport.png │ │ │ ├── davidson.png │ │ │ ├── daviselkins.png │ │ │ ├── dayton.png │ │ │ ├── dcmetro.png │ │ │ ├── dcu.png │ │ │ ├── dean.png │ │ │ ├── deanza.png │ │ │ ├── deepsouthsoldestrivalry.png │ │ │ ├── defiance.png │ │ │ ├── delaware.png │ │ │ ├── delawarestate.png │ │ │ ├── delawaretechcc.png │ │ │ ├── delawarevalley.png │ │ │ ├── delta.png │ │ │ ├── deltastate.png │ │ │ ├── denison.png │ │ │ ├── denmarktech.png │ │ │ ├── denver.png │ │ │ ├── depaul.png │ │ │ ├── depauw.png │ │ │ ├── derby.png │ │ │ ├── desmondhoward.png │ │ │ ├── detroitmercy.png │ │ │ ├── detroittech.png │ │ │ ├── diablovalley.png │ │ │ ├── dickinson.png │ │ │ ├── dickinsonstate.png │ │ │ ├── dillard.png │ │ │ ├── dillybar.png │ │ │ ├── discussion.png │ │ │ ├── dixiebowl.png │ │ │ ├── dixieclassic.png │ │ │ ├── dixierotary.png │ │ │ ├── dixiestate.png │ │ │ ├── dmu.png │ │ │ ├── doane.png │ │ │ ├── dodgecitycc.png │ │ │ ├── doehlingheselton.png │ │ │ ├── dokkyo.png │ │ │ ├── dokuzeylul.png │ │ │ ├── donga.png │ │ │ ├── dongguk.png │ │ │ ├── donggukseoul.png │ │ │ ├── dordt.png │ │ │ ├── doshisha.png │ │ │ ├── downvote.png │ │ │ ├── downvoted.png │ │ │ ├── downvotegrey.png │ │ │ ├── downvotehover.png │ │ │ ├── downvoteno.png │ │ │ ├── downvoteyes.png │ │ │ ├── drake.png │ │ │ ├── drexel.png │ │ │ ├── drum.png │ │ │ ├── drummondville.png │ │ │ ├── drury.png │ │ │ ├── dubuque.png │ │ │ ├── duke.png │ │ │ ├── dukeball.png │ │ │ ├── dumlupinar.png │ │ │ ├── dumpster.png │ │ │ ├── dundee.png │ │ │ ├── dupage.png │ │ │ ├── duquesne.png │ │ │ ├── durham.png │ │ │ ├── dutchmansshoes.png │ │ │ ├── earlham.png │ │ │ ├── eastcarolina.png │ │ │ ├── eastcarolinaball.png │ │ │ ├── eastcentral.png │ │ │ ├── eastcentralcc.png │ │ │ ├── easternarizona.png │ │ │ ├── easterncarolinaball.png │ │ │ ├── easternconnecticutstate.png │ │ │ ├── easternillinois.png │ │ │ ├── easternkentucky.png │ │ │ ├── easternmichigan.png │ │ │ ├── easternmichiganball.png │ │ │ ├── easternnewmexico.png │ │ │ ├── easternoregon.png │ │ │ ├── easternwashington.png │ │ │ ├── eastlondon.png │ │ │ ├── eastlosangeles.png │ │ │ ├── eastmississippicc.png │ │ │ ├── eastsidejc.png │ │ │ ├── eaststroudsburg.png │ │ │ ├── easttennesseestate.png │ │ │ ├── easttexasbaptist.png │ │ │ ├── eastwest.png │ │ │ ├── ecachockey.png │ │ │ ├── ecfc.png │ │ │ ├── ecupsl.png │ │ │ ├── ecust.png │ │ │ ├── edgehill.png │ │ │ ├── edinboro.png │ │ │ ├── edinburgh.png │ │ │ ├── edogawa.png │ │ │ ├── edouardmonpetit.png │ │ │ ├── edwardwaters.png │ │ │ ├── ege.png │ │ │ ├── eggbowl.png │ │ │ ├── ehime.png │ │ │ ├── elcamino.png │ │ │ ├── electrocomm.png │ │ │ ├── eliteoneacademy.png │ │ │ ├── elizabethcitystate.png │ │ │ ├── ellsworthcc.png │ │ │ ├── elmhurst.png │ │ │ ├── elon.png │ │ │ ├── emoryhenry.png │ │ │ ├── emporiastate.png │ │ │ ├── emu.png │ │ │ ├── endicott.png │ │ │ ├── ensenada.png │ │ │ ├── epc.png │ │ │ ├── eriecc.png │ │ │ ├── erinandrews.png │ │ │ ├── erskine.png │ │ │ ├── escdijon.png │ │ │ ├── esiqieipn.png │ │ │ ├── esmeesg.png │ │ │ ├── espn.png │ │ │ ├── espn2.png │ │ │ ├── espn3.png │ │ │ ├── espnclassic.png │ │ │ ├── espnews.png │ │ │ ├── espng.png │ │ │ ├── espnu.png │ │ │ ├── essex.png │ │ │ ├── eui.png │ │ │ ├── eureka.png │ │ │ ├── evangel.png │ │ │ ├── evansville.png │ │ │ ├── everett.png │ │ │ ├── exeter.png │ │ │ ├── fairfield.png │ │ │ ├── fairleighdickinson.png │ │ │ ├── fairmontstate.png │ │ │ ├── fallclassicarrowhead.png │ │ │ ├── falmouth.png │ │ │ ├── fau.png │ │ │ ├── fauball.png │ │ │ ├── faulkner.png │ │ │ ├── fayettevillestate.png │ │ │ ├── fcs.png │ │ │ ├── fcsc.png │ │ │ ├── fduflorham.png │ │ │ ├── featherriver.png │ │ │ ├── ferrisstate.png │ │ │ ├── ferrum.png │ │ │ ├── fiesta.png │ │ │ ├── filter.png │ │ │ ├── finalfour.png │ │ │ ├── findlay.png │ │ │ ├── finebaum.png │ │ │ ├── finland.png │ │ │ ├── finlandia.png │ │ │ ├── firststatecup.png │ │ │ ├── fisher.png │ │ │ ├── fisk.png │ │ │ ├── fitchburgstate.png │ │ │ ├── fiu.png │ │ │ ├── fiuball.png │ │ │ ├── florida.png │ │ │ ├── florida2.png │ │ │ ├── floridaam.png │ │ │ ├── floridaatlantic.png │ │ │ ├── floridaatlanticball.png │ │ │ ├── floridaball.png │ │ │ ├── floridacup.png │ │ │ ├── floridainternational.png │ │ │ ├── floridainternationalball.png │ │ │ ├── floridamemorial.png │ │ │ ├── floridasouthern.png │ │ │ ├── floridastate.png │ │ │ ├── floridastate2.png │ │ │ ├── floridastateball.png │ │ │ ├── floridatech.png │ │ │ ├── floydofrosedale.png │ │ │ ├── fonddulac.png │ │ │ ├── foothill.png │ │ │ ├── fordham.png │ │ │ ├── forthaysstate.png │ │ │ ├── fortlauderdale.png │ │ │ ├── fortlauderdalecollege.png │ │ │ ├── fortlewis.png │ │ │ ├── fortscottcc.png │ │ │ ├── fortvalleystate.png │ │ │ ├── fortworthbowl.png │ │ │ ├── fowler.png │ │ │ ├── fox.png │ │ │ ├── framinghamstate.png │ │ │ ├── france.png │ │ │ ├── franciscansteubenville.png │ │ │ ├── franklin.png │ │ │ ├── franklinmarshall.png │ │ │ ├── franklinpierce.png │ │ │ ├── freedom.png │ │ │ ├── freetalkfriday.png │ │ │ ├── fremontcannon.png │ │ │ ├── freshmanfriday.png │ │ │ ├── fresnocity.png │ │ │ ├── fresnostate.png │ │ │ ├── fresnostateball.png │ │ │ ├── friendlybet.png │ │ │ ├── friends.png │ │ │ ├── frostburgstate.png │ │ │ ├── fs1.png │ │ │ ├── fsn.png │ │ │ ├── fudan.png │ │ │ ├── fukui.png │ │ │ ├── fukuiprefectural.png │ │ │ ├── fukuoka.png │ │ │ ├── fukuokaeducation.png │ │ │ ├── fullerton.png │ │ │ ├── fulmer.png │ │ │ ├── furman.png │ │ │ ├── gakushuin.png │ │ │ ├── gallaudet.png │ │ │ ├── gameday.png │ │ │ ├── gameofthecentury.png │ │ │ ├── gamethread.png │ │ │ ├── gannon.png │ │ │ ├── gansz.png │ │ │ ├── gardabrae.png │ │ │ ├── gardencitycc.png │ │ │ ├── gardenstate.png │ │ │ ├── gardnerwebb.png │ │ │ ├── garneau.png │ │ │ ├── gator.png │ │ │ ├── gattacaflorida.png │ │ │ ├── gavilan.png │ │ │ ├── gazi.png │ │ │ ├── gcac.png │ │ │ ├── gccr.png │ │ │ ├── gdei.png │ │ │ ├── gdepc.png │ │ │ ├── gdut.png │ │ │ ├── gediz.png │ │ │ ├── geneva.png │ │ │ ├── georgefox.png │ │ │ ├── georgemason.png │ │ │ ├── georgetown.png │ │ │ ├── georgetownky.png │ │ │ ├── georgewashington.png │ │ │ ├── georgia.png │ │ │ ├── georgiaball.png │ │ │ ├── georgiamilitary.png │ │ │ ├── georgiaprepsa.png │ │ │ ├── georgiaregents.png │ │ │ ├── georgiasouthern.png │ │ │ ├── georgiasouthernball.png │ │ │ ├── georgiasouthwesternstate.png │ │ │ ├── georgiastate.png │ │ │ ├── georgiastateball.png │ │ │ ├── georgiatech.png │ │ │ ├── georgiatechball.png │ │ │ ├── germany.png │ │ │ ├── gettysburg.png │ │ │ ├── gifu.png │ │ │ ├── glasgow.png │ │ │ ├── glass.png │ │ │ ├── glendaleccaz.png │ │ │ ├── glendaleccca.png │ │ │ ├── glenvillestate.png │ │ │ ├── globetech.png │ │ │ ├── gloucestershire.png │ │ │ ├── gndu.png │ │ │ ├── goldenboot.png │ │ │ ├── goldenhorseshoe.png │ │ │ ├── goldenscrewdriver.png │ │ │ ├── goldenvalleylutheran.png │ │ │ ├── goldenwest.png │ │ │ ├── goldy.png │ │ │ ├── gonzaga.png │ │ │ ├── gotham.png │ │ │ ├── governorscup.png │ │ │ ├── governorsvictorybell.png │ │ │ ├── graceland.png │ │ │ ├── grafarvogur.png │ │ │ ├── gramblingstate.png │ │ │ ├── grandvalleystate.png │ │ │ ├── grandview.png │ │ │ ├── graysharbor.png │ │ │ ├── greatlakes.png │ │ │ ├── greatwest.png │ │ │ ├── greensboro.png │ │ │ ├── greenville.png │ │ │ ├── greenwich.png │ │ │ ├── gridiron.png │ │ │ ├── grinnell.png │ │ │ ├── grossmont.png │ │ │ ├── grovecity.png │ │ │ ├── gsu.png │ │ │ ├── guadalajara.png │ │ │ ├── guatemala.png │ │ │ ├── guc.png │ │ │ ├── guelph.png │ │ │ ├── guilford.png │ │ │ ├── gujarat.png │ │ │ ├── gustavusadolphus.png │ │ │ ├── gzhtcm.png │ │ │ ├── hacettepe.png │ │ │ ├── hakuoh.png │ │ │ ├── hallam.png │ │ │ ├── hallym.png │ │ │ ├── hamilton.png │ │ │ ├── hamline.png │ │ │ ├── hammer.png │ │ │ ├── hampdensydney.png │ │ │ ├── hampton.png │ │ │ ├── handels.png │ │ │ ├── handongglobal.png │ │ │ ├── hannan.png │ │ │ ├── hanover.png │ │ │ ├── hanyang.png │ │ │ ├── harbaugh.png │ │ │ ├── harbor.png │ │ │ ├── harding.png │ │ │ ├── hardinsimmons.png │ │ │ ├── harfordcc.png │ │ │ ├── harper.png │ │ │ ├── hartford.png │ │ │ ├── hartnell.png │ │ │ ├── hartwick.png │ │ │ ├── harvard.png │ │ │ ├── harvardyale.png │ │ │ ├── haskell.png │ │ │ ├── hastings.png │ │ │ ├── havana.png │ │ │ ├── haverford.png │ │ │ ├── hawaii.png │ │ │ ├── hawaiiball.png │ │ │ ├── hawaiibowl.png │ │ │ ├── heartland.png │ │ │ ├── heartlandrivalry.png │ │ │ ├── hebei.png │ │ │ ├── heidelberg.png │ │ │ ├── heisman.png │ │ │ ├── hendersonstate.png │ │ │ ├── hendrix.png │ │ │ ├── herbstreit.png │ │ │ ├── heriotwatt.png │ │ │ ├── heritage.png │ │ │ ├── heroes.png │ │ │ ├── heroicocolegiomilitar.png │ │ │ ├── hertfordshire.png │ │ │ ├── hibbingcc.png │ │ │ ├── hickorystick.png │ │ │ ├── highlandcc.png │ │ │ ├── highpoint.png │ │ │ ├── hillsdale.png │ │ │ ├── himejidokkyo.png │ │ │ ├── hinds.png │ │ │ ├── hiram.png │ │ │ ├── hiramscott.png │ │ │ ├── hirosaki.png │ │ │ ├── hiroshima.png │ │ │ ├── history.png │ │ │ ├── hitotsubashi.png │ │ │ ├── hobart.png │ │ │ ├── hockeyeast.png │ │ │ ├── hocking.png │ │ │ ├── hofstra.png │ │ │ ├── hoke.png │ │ │ ├── hokkaido.png │ │ │ ├── hokkaidohs.png │ │ │ ├── hokkaidotech.png │ │ │ ├── hokkaigakuen.png │ │ │ ├── hokuseigakuen.png │ │ │ ├── holiday.png │ │ │ ├── holland.png │ │ │ ├── holmes.png │ │ │ ├── holtz.png │ │ │ ├── holycross.png │ │ │ ├── holywar.png │ │ │ ├── hongik.png │ │ │ ├── hope.png │ │ │ ├── horizon.png │ │ │ ├── hosei.png │ │ │ ├── houston.png │ │ │ ├── houston2.png │ │ │ ├── houston3.png │ │ │ ├── houstonball.png │ │ │ ├── houstonbaptist.png │ │ │ ├── houstonbowl.png │ │ │ ├── howard.png │ │ │ ├── howardpayne.png │ │ │ ├── hsu.png │ │ │ ├── huali.png │ │ │ ├── huddersfield.png │ │ │ ├── hudsonvalleycc.png │ │ │ ├── hufs.png │ │ │ ├── hull.png │ │ │ ├── humboldtstate.png │ │ │ ├── huntingdon.png │ │ │ ├── huntington.png │ │ │ ├── husson.png │ │ │ ├── hustontillotson.png │ │ │ ├── hutchinsoncc.png │ │ │ ├── hyogo.png │ │ │ ├── hyogomedicine.png │ │ │ ├── ibaraki.png │ │ │ ├── ibfc.png │ │ │ ├── icebowl.png │ │ │ ├── icff.png │ │ │ ├── idaho.png │ │ │ ├── idahoball.png │ │ │ ├── idahogovernorscup.png │ │ │ ├── idahostate.png │ │ │ ├── illibuck.png │ │ │ ├── illinois.png │ │ │ ├── illinoisball.png │ │ │ ├── illinoiscollege.png │ │ │ ├── illinoisstate.png │ │ │ ├── illinoisvalleycc.png │ │ │ ├── illinoiswesleyan.png │ │ │ ├── imperial.png │ │ │ ├── incarnateword.png │ │ │ ├── indep.png │ │ │ ├── independence.png │ │ │ ├── independencecc.png │ │ │ ├── india.png │ │ │ ├── indiana.png │ │ │ ├── indiana2.png │ │ │ ├── indianaball.png │ │ │ ├── indianapa.png │ │ │ ├── indianapolis.png │ │ │ ├── indianastate.png │ │ │ ├── indianawesleyan.png │ │ │ ├── indianhillscc.png │ │ │ ├── indianwardrum.png │ │ │ ├── inha.png │ │ │ ├── ininetyfour.png │ │ │ ├── inptoulouse.png │ │ │ ├── instagram.png │ │ │ ├── international.png │ │ │ ├── internationalbowl.png │ │ │ ├── internationalchristian.png │ │ │ ├── iona.png │ │ │ ├── iowa.png │ │ │ ├── iowaball.png │ │ │ ├── iowacentralcc.png │ │ │ ├── iowalakescc.png │ │ │ ├── iowastate.png │ │ │ ├── iowastate1.png │ │ │ ├── iowastateball.png │ │ │ ├── iowawesleyan.png │ │ │ ├── iowawesterncc.png │ │ │ ├── ipnsantotomas.png │ │ │ ├── ipnzacatenco.png │ │ │ ├── irc.png │ │ │ ├── irc2.png │ │ │ ├── irc3.png │ │ │ ├── ironbowl.png │ │ │ ├── ironskillet.png │ │ │ ├── isik.png │ │ │ ├── istanbul.png │ │ │ ├── istanbulbilgi.png │ │ │ ├── istanbulteknik.png │ │ │ ├── italy.png │ │ │ ├── itascacc.png │ │ │ ├── itawambacc.png │ │ │ ├── ithaca.png │ │ │ ├── itq.png │ │ │ ├── itson.png │ │ │ ├── ivy.png │ │ │ ├── ivybowl.png │ │ │ ├── iwate.png │ │ │ ├── izmirekonomi.png │ │ │ ├── jacksonstate.png │ │ │ ├── jacksonville.png │ │ │ ├── jacksonvillestate.png │ │ │ ├── jafa.png │ │ │ ├── jain.png │ │ │ ├── jaipurnational.png │ │ │ ├── jamesfranklin.png │ │ │ ├── jamesmadison.png │ │ │ ├── jamestown.png │ │ │ ├── japan.png │ │ │ ├── jarvischristian.png │ │ │ ├── jazzwatch.png │ │ │ ├── jecrc.png │ │ │ ├── jeffersoneppes.png │ │ │ ├── jerseycoast.png │ │ │ ├── jeweledshillelagh.png │ │ │ ├── jiaotong.png │ │ │ ├── jkuat.png │ │ │ ├── jobu.png │ │ │ ├── johnabbott.png │ │ │ ├── johncarroll.png │ │ │ ├── johnchaviswrench.png │ │ │ ├── johnshopkins.png │ │ │ ├── johnsoncsmith.png │ │ │ ├── jolietjc.png │ │ │ ├── jonescountyjc.png │ │ │ ├── jonquiere.png │ │ │ ├── josai.png │ │ │ ├── juniata.png │ │ │ ├── jyvaskyla.png │ │ │ ├── kagoshima.png │ │ │ ├── kalamazoo.png │ │ │ ├── kanagawa.png │ │ │ ├── kanagawatech.png │ │ │ ├── kanazawa.png │ │ │ ├── kanazawatech.png │ │ │ ├── kanda.png │ │ │ ├── kangwonnational.png │ │ │ ├── kansai.png │ │ │ ├── kansaigaidai.png │ │ │ ├── kansas.png │ │ │ ├── kansasball.png │ │ │ ├── kansasstate.png │ │ │ ├── kansasstateball.png │ │ │ ├── kansaswesleyan.png │ │ │ ├── kantogakuin.png │ │ │ ├── kanza.png │ │ │ ├── karlsruhe.png │ │ │ ├── kau.png │ │ │ ├── kcac.png │ │ │ ├── kean.png │ │ │ ├── keele.png │ │ │ ├── keenestate.png │ │ │ ├── keggy.png │ │ │ ├── kegofnails.png │ │ │ ├── keimyung.png │ │ │ ├── keio.png │ │ │ ├── kelly.png │ │ │ ├── kempermilitaryjc.png │ │ │ ├── kennedyking.png │ │ │ ├── kennesaw.png │ │ │ ├── kent.png │ │ │ ├── kentakronwheel.png │ │ │ ├── kentstate.png │ │ │ ├── kentstateball.png │ │ │ ├── kentucky.png │ │ │ ├── kentucky2.png │ │ │ ├── kentuckyball.png │ │ │ ├── kentuckychristian.png │ │ │ ├── kentuckystate.png │ │ │ ├── kentuckywesleyan.png │ │ │ ├── kenyon.png │ │ │ ├── keystonestatecatfight.png │ │ │ ├── kibi.png │ │ │ ├── kiffin.png │ │ │ ├── kilgore.png │ │ │ ├── kindai.png │ │ │ ├── king.png │ │ │ ├── kings.png │ │ │ ├── kingsbury.png │ │ │ ├── kingscollege.png │ │ │ ├── kingston.png │ │ │ ├── kitasatovmas.png │ │ │ ├── knox.png │ │ │ ├── knoxville.png │ │ │ ├── kobe.png │ │ │ ├── kobegakuin.png │ │ │ ├── kobeinternational.png │ │ │ ├── koc.png │ │ │ ├── kocaeli.png │ │ │ ├── kocatepe.png │ │ │ ├── kochi.png │ │ │ ├── kogakuin.png │ │ │ ├── kokushikan.png │ │ │ ├── kolkata.png │ │ │ ├── komazawa.png │ │ │ ├── konan.png │ │ │ ├── konkuk.png │ │ │ ├── kopavogur.png │ │ │ ├── korea.png │ │ │ ├── koreamaritime.png │ │ │ ├── koreannavalacademy.png │ │ │ ├── kth.png │ │ │ ├── kumadai.png │ │ │ ├── kumohtech.png │ │ │ ├── kurume.png │ │ │ ├── kushiro.png │ │ │ ├── kuter.png │ │ │ ├── kutztown.png │ │ │ ├── kwanseigakuin.png │ │ │ ├── kyamk.png │ │ │ ├── kyorin.png │ │ │ ├── kyoto.png │ │ │ ├── kyotoeducation.png │ │ │ ├── kyotoforeign.png │ │ │ ├── kyotogakuin.png │ │ │ ├── kyotopharm.png │ │ │ ├── kyotoprefectural.png │ │ │ ├── kyotosangyo.png │ │ │ ├── kyotoseika.png │ │ │ ├── kyototech.png │ │ │ ├── kyungil.png │ │ │ ├── kyungpooknational.png │ │ │ ├── kyungsung.png │ │ │ ├── kyushu.png │ │ │ ├── kyushusangyo.png │ │ │ ├── kyushutech.png │ │ │ ├── lackawanna.png │ │ │ ├── lafayette.png │ │ │ ├── lagos.png │ │ │ ├── lagrange.png │ │ │ ├── lakeerie.png │ │ │ ├── lakeforest.png │ │ │ ├── lakeland.png │ │ │ ├── lakesuperiorstate.png │ │ │ ├── lakshminarain.png │ │ │ ├── lamar.png │ │ │ ├── lambuth.png │ │ │ ├── lanaudiere.png │ │ │ ├── lancaster.png │ │ │ ├── landgrant.png │ │ │ ├── landoflincoln.png │ │ │ ├── lane.png │ │ │ ├── laney.png │ │ │ ├── langston.png │ │ │ ├── lapaz.png │ │ │ ├── lapocatiere.png │ │ │ ├── lappeenranta.png │ │ │ ├── lasalle.png │ │ │ ├── lasvegas.png │ │ │ ├── laurentian.png │ │ │ ├── laval.png │ │ │ ├── laverne.png │ │ │ ├── lawrence.png │ │ │ ├── leach.png │ │ │ ├── lebanonvalley.png │ │ │ ├── leeds.png │ │ │ ├── leedsbeckett.png │ │ │ ├── leesmcrae.png │ │ │ ├── legendstrophy.png │ │ │ ├── lehigh.png │ │ │ ├── leicester.png │ │ │ ├── leland.png │ │ │ ├── lemoyneowen.png │ │ │ ├── lenoirrhyne.png │ │ │ ├── leonarddevinci.png │ │ │ ├── levislauzon.png │ │ │ ├── lewis.png │ │ │ ├── lewisclark.png │ │ │ ├── lewisclarkstate.png │ │ │ ├── lewisclarkvalley.png │ │ │ ├── lhn.png │ │ │ ├── liberty.png │ │ │ ├── libertybowl.png │ │ │ ├── liesti.png │ │ │ ├── life.png │ │ │ ├── limerick.png │ │ │ ├── limestone.png │ │ │ ├── limoilou.png │ │ │ ├── lincoln.png │ │ │ ├── lincolnmemorial.png │ │ │ ├── lincolnmo.png │ │ │ ├── lincolnpa.png │ │ │ ├── lindenwood.png │ │ │ ├── lindenwoodbelleville.png │ │ │ ├── lindseywilson.png │ │ │ ├── linfield.png │ │ │ ├── lionelgroulx.png │ │ │ ├── lions.png │ │ │ ├── littlebrownbucket.png │ │ │ ├── littlebrownjug.png │ │ │ ├── littlebrownstein.png │ │ │ ├── littlejohnsportsacademy.png │ │ │ ├── liupost.png │ │ │ ├── liverpool.png │ │ │ ├── livingstone.png │ │ │ ├── ljm.png │ │ │ ├── lockhaven.png │ │ │ ├── lomasverdes.png │ │ │ ├── londoncity.png │ │ │ ├── lonestarshowdown.png │ │ │ ├── longbeachcity.png │ │ │ ├── longisland.png │ │ │ ├── longwood.png │ │ │ ├── loras.png │ │ │ ├── lorraine.png │ │ │ ├── losangeleschristmas.png │ │ │ ├── losangelesharbor.png │ │ │ ├── losangelespierce.png │ │ │ ├── losangelessouthwest.png │ │ │ ├── losangelesvalley.png │ │ │ ├── losmedanos.png │ │ │ ├── loughborough.png │ │ │ ├── louisburg.png │ │ │ ├── louisiana.png │ │ │ ├── louisianaball.png │ │ │ ├── louisianacollege.png │ │ │ ├── louisianalafayette.png │ │ │ ├── louisianalafayetteball.png │ │ │ ├── louisianamonroe.png │ │ │ ├── louisianamonroeball.png │ │ │ ├── louisianatech.png │ │ │ ├── louisianatechball.png │ │ │ ├── louisville.png │ │ │ ├── louisvilleball.png │ │ │ ├── loutaouais.png │ │ │ ├── lovely.png │ │ │ ├── loyolachicago.png │ │ │ ├── loyolamaryland.png │ │ │ ├── loyolamarymount.png │ │ │ ├── loyolaneworleans.png │ │ │ ├── lsbu.png │ │ │ ├── lsu.png │ │ │ ├── lsuball.png │ │ │ ├── lubbockchristian.png │ │ │ ├── lundquist.png │ │ │ ├── luther.png │ │ │ ├── lycoming.png │ │ │ ├── lyon.png │ │ │ ├── maac.png │ │ │ ├── mac.png │ │ │ ├── macalester.png │ │ │ ├── macjackrockingchair.png │ │ │ ├── mackbrown.png │ │ │ ├── macmurray.png │ │ │ ├── maconstate.png │ │ │ ├── madras.png │ │ │ ├── magnolia.png │ │ │ ├── mailno.png │ │ │ ├── mailyes.png │ │ │ ├── maine.png │ │ │ ├── mainemaritime.png │ │ │ ├── mainz.png │ │ │ ├── malone.png │ │ │ ├── malzahn.png │ │ │ ├── manchester.png │ │ │ ├── manhattan.png │ │ │ ├── manhattanville.png │ │ │ ├── manitoba.png │ │ │ ├── mankatostate.png │ │ │ ├── mannheim.png │ │ │ ├── mansfield.png │ │ │ ├── manziel.png │ │ │ ├── maranathabaptist.png │ │ │ ├── marchmadness.png │ │ │ ├── marian.png │ │ │ ├── marietta.png │ │ │ ├── marionmilitary.png │ │ │ ├── marist.png │ │ │ ├── marquette.png │ │ │ ├── marshall.png │ │ │ ├── marshallball.png │ │ │ ├── marshalltowncc.png │ │ │ ├── marshill.png │ │ │ ├── martinluther.png │ │ │ ├── mary.png │ │ │ ├── maryland.png │ │ │ ├── marylandball.png │ │ │ ├── maryville.png │ │ │ ├── massachusetts.png │ │ │ ├── massachusettsball.png │ │ │ ├── massachusettsboston.png │ │ │ ├── massachusettslowell.png │ │ │ ├── massachusettsmaritime.png │ │ │ ├── matsuyama.png │ │ │ ├── mayorscup.png │ │ │ ├── mayvillestate.png │ │ │ ├── mcdaniel.png │ │ │ ├── mcgill.png │ │ │ ├── mckendree.png │ │ │ ├── mcmaster.png │ │ │ ├── mcmurry.png │ │ │ ├── mcneesestate.png │ │ │ ├── mcpherson.png │ │ │ ├── mdrohtak.png │ │ │ ├── meac.png │ │ │ ├── medal.png │ │ │ ├── media.png │ │ │ ├── megaphone.png │ │ │ ├── meiji.png │ │ │ ├── meijigakuin.png │ │ │ ├── meijo.png │ │ │ ├── meisei.png │ │ │ ├── melbourne.png │ │ │ ├── memphis.png │ │ │ ├── memphisball.png │ │ │ ├── mendocino.png │ │ │ ├── menlo.png │ │ │ ├── merced.png │ │ │ ├── mercer.png │ │ │ ├── merchantmarine.png │ │ │ ├── mercyhurst.png │ │ │ ├── merrimack.png │ │ │ ├── mesabirangectc.png │ │ │ ├── mesacc.png │ │ │ ├── meteor.png │ │ │ ├── methodist.png │ │ │ ├── metro.png │ │ │ ├── metu.png │ │ │ ├── mexicali.png │ │ │ ├── mexico.png │ │ │ ├── mexicocitycollege.png │ │ │ ├── meyer.png │ │ │ ├── miami.png │ │ │ ├── miamiball.png │ │ │ ├── miamibeach.png │ │ │ ├── miamifl.png │ │ │ ├── miamiflball.png │ │ │ ├── miamioh.png │ │ │ ├── miamiohball.png │ │ │ ├── michigan.png │ │ │ ├── michigan2.png │ │ │ ├── michigan3.png │ │ │ ├── michiganball.png │ │ │ ├── michiganflint.png │ │ │ ├── michiganstate.png │ │ │ ├── michiganstateanimated1.png │ │ │ ├── michiganstateanimated2.png │ │ │ ├── michiganstateanimated3.png │ │ │ ├── michiganstateanimated4.png │ │ │ ├── michiganstateball.png │ │ │ ├── michigantech.png │ │ │ ├── michigantech2.png │ │ │ ├── midamericanazarene.png │ │ │ ├── middlebury.png │ │ │ ├── middlegeorgiastate.png │ │ │ ├── middletennessee.png │ │ │ ├── middletennesseeball.png │ │ │ ├── midland.png │ │ │ ├── midplainscc.png │ │ │ ├── midsouth.png │ │ │ ├── midwesterncollege.png │ │ │ ├── midwesternstate.png │ │ │ ├── mie.png │ │ │ ├── mikestoops.png │ │ │ ├── miles.png │ │ │ ├── milescollege.png │ │ │ ├── military.png │ │ │ ├── milkcan.png │ │ │ ├── millersville.png │ │ │ ├── milligan.png │ │ │ ├── millikin.png │ │ │ ├── millsaps.png │ │ │ ├── milton.png │ │ │ ├── milwaukee.png │ │ │ ├── mineralwater.png │ │ │ ├── miners.png │ │ │ ├── minnesota.png │ │ │ ├── minnesota2.png │ │ │ ├── minnesotaball.png │ │ │ ├── minnesotacrookston.png │ │ │ ├── minnesotaduluth.png │ │ │ ├── minnesotamorris.png │ │ │ ├── minnesotastatectc.png │ │ │ ├── minnesotastatemoorhead.png │ │ │ ├── minnesotawestctc.png │ │ │ ├── minotstate.png │ │ │ ├── mirage.png │ │ │ ├── misericordia.png │ │ │ ├── mississippicollege.png │ │ │ ├── mississippideltacc.png │ │ │ ├── mississippigulfcoastcc.png │ │ │ ├── mississippistate.png │ │ │ ├── mississippistateball.png │ │ │ ├── mississippivalleystate.png │ │ │ ├── missouri.png │ │ │ ├── missouriball.png │ │ │ ├── missouribaptist.png │ │ │ ├── missourisnt.png │ │ │ ├── missourisouthern.png │ │ │ ├── missouristate.png │ │ │ ├── missourivalley.png │ │ │ ├── missouriwestern.png │ │ │ ├── missouroball.png │ │ │ ├── mit.png │ │ │ ├── miyazaki.png │ │ │ ├── mmu.png │ │ │ ├── mobile.png │ │ │ ├── modestojunior.png │ │ │ ├── monash.png │ │ │ ├── moncton.png │ │ │ ├── monmouth.png │ │ │ ├── monmouthil.png │ │ │ ├── mononbell.png │ │ │ ├── monroe.png │ │ │ ├── montana.png │ │ │ ├── montanaball.png │ │ │ ├── montanastate.png │ │ │ ├── montanastatebillings.png │ │ │ ├── montanastatenorthern.png │ │ │ ├── montanatech.png │ │ │ ├── montanawestern.png │ │ │ ├── montclairstate.png │ │ │ ├── montereypeninsula.png │ │ │ ├── monterrey.png │ │ │ ├── montgomery.png │ │ │ ├── montmorency.png │ │ │ ├── montreal.png │ │ │ ├── moorpark.png │ │ │ ├── morainevalleycc.png │ │ │ ├── moravian.png │ │ │ ├── moreheadstate.png │ │ │ ├── morehouse.png │ │ │ ├── morganstate.png │ │ │ ├── morningside.png │ │ │ ├── morris.png │ │ │ ├── morrisbrown.png │ │ │ ├── morrisvillestate.png │ │ │ ├── morthland.png │ │ │ ├── morton.png │ │ │ ├── motorcity.png │ │ │ ├── mountallison.png │ │ │ ├── mountida.png │ │ │ ├── mountsaintmarys.png │ │ │ ├── mountsanantonio.png │ │ │ ├── mountscenario.png │ │ │ ├── mountstjoseph.png │ │ │ ├── mountstmary.png │ │ │ ├── mountunion.png │ │ │ ├── msa.png │ │ │ ├── mspaint.png │ │ │ ├── mtsanjacinto.png │ │ │ ├── muhlenberg.png │ │ │ ├── murorantech.png │ │ │ ├── murraystate.png │ │ │ ├── musashi.png │ │ │ ├── musburger.png │ │ │ ├── muschamp.png │ │ │ ├── musiccity.png │ │ │ ├── muskingum.png │ │ │ ├── mvc.png │ │ │ ├── mwc.png │ │ │ ├── myronclaxtonsshoes.png │ │ │ ├── nagoya.png │ │ │ ├── nagoyagakuin.png │ │ │ ├── nagoyatech.png │ │ │ ├── nagoyaucb.png │ │ │ ├── naia.png │ │ │ ├── naiachampionship.png │ │ │ ├── nanzan.png │ │ │ ├── napier.png │ │ │ ├── nassaucc.png │ │ │ ├── nationaldefense.png │ │ │ ├── naturalenemies.png │ │ │ ├── navarro.png │ │ │ ├── navy.png │ │ │ ├── navyball.png │ │ │ ├── nbc.png │ │ │ ├── nbcsn.png │ │ │ ├── ncaa.png │ │ │ ├── ncac.png │ │ │ ├── nccaa.png │ │ │ ├── nccentral.png │ │ │ ├── ncfa.png │ │ │ ├── nchc.png │ │ │ ├── ncwesleyan.png │ │ │ ├── ndu.png │ │ │ ├── nebraska.png │ │ │ ├── nebraskaball.png │ │ │ ├── nebraskacentral.png │ │ │ ├── nebraskakearney.png │ │ │ ├── nebraskaomaha.png │ │ │ ├── nebraskawesleyan.png │ │ │ ├── nec.png │ │ │ ├── nevada.png │ │ │ ├── nevadaball.png │ │ │ ├── newberry.png │ │ │ ├── newborderwar.png │ │ │ ├── newbrunswick.png │ │ │ ├── newcastle.png │ │ │ ├── newengland.png │ │ │ ├── newhampshire.png │ │ │ ├── newhaven.png │ │ │ ├── newjerseycity.png │ │ │ ├── newmexico.png │ │ │ ├── newmexicoball.png │ │ │ ├── newmexicobowl.png │ │ │ ├── newmexicohighlands.png │ │ │ ├── newmexicomilitary.png │ │ │ ├── newmexicostate.png │ │ │ ├── newmexicostateball.png │ │ │ ├── neworleans.png │ │ │ ├── neworleansbowl.png │ │ │ ├── news.png │ │ │ ├── newyorktech.png │ │ │ ├── newzealand.png │ │ │ ├── niagara.png │ │ │ ├── nichollsstate.png │ │ │ ├── nichols.png │ │ │ ├── nickel.png │ │ │ ├── niederrhein.png │ │ │ ├── nihon.png │ │ │ ├── nihonengineering.png │ │ │ ├── nihonfukushi.png │ │ │ ├── niigata.png │ │ │ ├── nippon.png │ │ │ ├── nit.png │ │ │ ├── njcaa.png │ │ │ ├── njit.png │ │ │ ├── norfolkstate.png │ │ │ ├── normandalecc.png │ │ │ ├── normanga.png │ │ │ ├── northalabama.png │ │ │ ├── northampton.png │ │ │ ├── northatlantic.png │ │ │ ├── northcarolina.png │ │ │ ├── northcarolinaat.png │ │ │ ├── northcarolinaball.png │ │ │ ├── northcarolinastate.png │ │ │ ├── northcarolinastateball.png │ │ │ ├── northcentral.png │ │ │ ├── northdakota.png │ │ │ ├── northdakotascience.png │ │ │ ├── northdakotastate.png │ │ │ ├── northdakotastateball.png │ │ │ ├── northeastern.png │ │ │ ├── northeastern2.png │ │ │ ├── northeasternillinois.png │ │ │ ├── northeasternoklahomaam.png │ │ │ ├── northeasternstate.png │ │ │ ├── northeastmississippicc.png │ │ │ ├── northernarizona.png │ │ │ ├── northerncolorado.png │ │ │ ├── northernillinois.png │ │ │ ├── northernillinois2.png │ │ │ ├── northernillinoisball.png │ │ │ ├── northerniowa.png │ │ │ ├── northernkentucky.png │ │ │ ├── northernmichigan.png │ │ │ ├── northernstate.png │ │ │ ├── northgeorgia.png │ │ │ ├── northgeorgiasa.png │ │ │ ├── northgreenville.png │ │ │ ├── northiowaareacc.png │ │ │ ├── northland.png │ │ │ ├── northlandctc.png │ │ │ ├── northlandwi.png │ │ │ ├── northpark.png │ │ │ ├── northtexas.png │ │ │ ├── northtexasball.png │ │ │ ├── northumbria.png │ │ │ ├── northwestern.png │ │ │ ├── northwesternball.png │ │ │ ├── northwesternia.png │ │ │ ├── northwesternstate.png │ │ │ ├── northwesternstpaul.png │ │ │ ├── northwestmississippicc.png │ │ │ ├── northwestmissouristate.png │ │ │ ├── northwestoklahomastate.png │ │ │ ├── northwood.png │ │ │ ├── northwoodtx.png │ │ │ ├── norwich.png │ │ │ ├── notredame.png │ │ │ ├── notredameball.png │ │ │ ├── notredameoh.png │ │ │ ├── nottingham.png │ │ │ ├── npu.png │ │ │ ├── nsfw.png │ │ │ ├── nssu.png │ │ │ ├── ntu.png │ │ │ ├── nutt.png │ │ │ ├── nyu.png │ │ │ ├── nyushanghai.png │ │ │ ├── oakland.png │ │ │ ├── oberlin.png │ │ │ ├── obihiro.png │ │ │ ├── obirin.png │ │ │ ├── obu.png │ │ │ ├── occidental.png │ │ │ ├── octech.png │ │ │ ├── offtopicbelt.png │ │ │ ├── oglethorpe.png │ │ │ ├── ohio.png │ │ │ ├── ohioball.png │ │ │ ├── ohiodominican.png │ │ │ ├── ohiomw.png │ │ │ ├── ohionorthern.png │ │ │ ├── ohiostate.png │ │ │ ├── ohiostate2.png │ │ │ ├── ohiostate3.png │ │ │ ├── ohiostateball.png │ │ │ ├── ohiotech.png │ │ │ ├── ohiowesleyan.png │ │ │ ├── oilbowl.png │ │ │ ├── okayama.png │ │ │ ├── okayamascience.png │ │ │ ├── okefenokeeoar.png │ │ │ ├── oklahoma.png │ │ │ ├── oklahomaanimated1.png │ │ │ ├── oklahomaanimated2.png │ │ │ ├── oklahomaanimated3.png │ │ │ ├── oklahomaanimated4.png │ │ │ ├── oklahomaball.png │ │ │ ├── oklahomabaptist.png │ │ │ ├── oklahomacity.png │ │ │ ├── oklahomapanhandle.png │ │ │ ├── oklahomastate.png │ │ │ ├── oklahomastateball.png │ │ │ ├── oldbrassspittoon.png │ │ │ ├── olddominion.png │ │ │ ├── olddominionball.png │ │ │ ├── oldoakenbucket.png │ │ │ ├── olemiss.png │ │ │ ├── olemiss2.png │ │ │ ├── olemissball.png │ │ │ ├── olivet.png │ │ │ ├── olivetnazarene.png │ │ │ ├── olympicjc.png │ │ │ ├── onefa.png │ │ │ ├── onondagacc.png │ │ │ ├── orange.png │ │ │ ├── orangecoast.png │ │ │ ├── orebro.png │ │ │ ├── oregon.png │ │ │ ├── oregon2.png │ │ │ ├── oregon3.png │ │ │ ├── oregonball.png │ │ │ ├── oregonstate.png │ │ │ ├── oregonstateball.png │ │ │ ├── oregontech.png │ │ │ ├── orgeron.png │ │ │ ├── orgill.png │ │ │ ├── orourkemcfadden.png │ │ │ ├── osaka.png │ │ │ ├── osakaarts.png │ │ │ ├── osakacity.png │ │ │ ├── osakacommerce.png │ │ │ ├── osakaec.png │ │ │ ├── osakaeconomics.png │ │ │ ├── osakael.png │ │ │ ├── osakagakuin.png │ │ │ ├── osakahs.png │ │ │ ├── osakainternational.png │ │ │ ├── osakakyoiku.png │ │ │ ├── osakaprefecture.png │ │ │ ├── osakasangyo.png │ │ │ ├── osakatech.png │ │ │ ├── osmania.png │ │ │ ├── otani.png │ │ │ ├── otemongakuin.png │ │ │ ├── ottawaks.png │ │ │ ├── otterbein.png │ │ │ ├── ouachitabaptist.png │ │ │ ├── outback.png │ │ │ ├── ovc.png │ │ │ ├── oxford.png │ │ │ ├── oyster.png │ │ │ ├── p12n.png │ │ │ ├── pac12.png │ │ │ ├── pace.png │ │ │ ├── pacific.png │ │ │ ├── pacificlutheran.png │ │ │ ├── pacificor.png │ │ │ ├── paddle.png │ │ │ ├── paddlewheel.png │ │ │ ├── paderborn.png │ │ │ ├── paine.png │ │ │ ├── palladium.png │ │ │ ├── palmer.png │ │ │ ├── palmettobowl.png │ │ │ ├── palmettoprep.png │ │ │ ├── palomar.png │ │ │ ├── paniolo.png │ │ │ ├── panjab.png │ │ │ ├── paris813.png │ │ │ ├── parisdauphine.png │ │ │ ├── parisdiderot.png │ │ │ ├── parisinalco.png │ │ │ ├── parisrenedescartes.png │ │ │ ├── parsons.png │ │ │ ├── pasadenacity.png │ │ │ ├── passau.png │ │ │ ├── paterno.png │ │ │ ├── patriot.png │ │ │ ├── patron.png │ │ │ ├── paulbunyan.png │ │ │ ├── paulbunyansaxe.png │ │ │ ├── pauljohnson.png │ │ │ ├── paulquinn.png │ │ │ ├── peacepipe.png │ │ │ ├── peach.png │ │ │ ├── pearlrivercc.png │ │ │ ├── pelini.png │ │ │ ├── penaltyflag.png │ │ │ ├── pennstate.png │ │ │ ├── pennstateball.png │ │ │ ├── pennsylvania.png │ │ │ ├── pepperdine.png │ │ │ ├── perustate.png │ │ │ ├── petrino.png │ │ │ ├── philandersmith.png │ │ │ ├── philau.png │ │ │ ├── phillips.png │ │ │ ├── phoenix.png │ │ │ ├── piedmont.png │ │ │ ├── pikeville.png │ │ │ ├── pimacc.png │ │ │ ├── pineapple.png │ │ │ ├── pineywoods.png │ │ │ ├── pinstripe.png │ │ │ ├── pioneer.png │ │ │ ├── pioneerbowl.png │ │ │ ├── pittball.png │ │ │ ├── pittsburgh.png │ │ │ ├── pittsburghball.png │ │ │ ├── pittsburgstate.png │ │ │ ├── platypus.png │ │ │ ├── player.png │ │ │ ├── plymouth.png │ │ │ ├── plymouthstate.png │ │ │ ├── poinsettia.png │ │ │ ├── point.png │ │ │ ├── pollack.png │ │ │ ├── polldiscussion.png │ │ │ ├── pomonapitzer.png │ │ │ ├── ponder.png │ │ │ ├── poornima.png │ │ │ ├── portcity.png │ │ │ ├── portland.png │ │ │ ├── portlandstate.png │ │ │ ├── portsmouth.png │ │ │ ├── post.png │ │ │ ├── postgame.png │ │ │ ├── postgamethread.png │ │ │ ├── postseason.png │ │ │ ├── potato.png │ │ │ ├── potomacstate.png │ │ │ ├── prairieviewam.png │ │ │ ├── prattcc.png │ │ │ ├── prediction.png │ │ │ ├── prefectural.png │ │ │ ├── presbyterian.png │ │ │ ├── presentation.png │ │ │ ├── presidentialcup.png │ │ │ ├── princeton.png │ │ │ ├── principia.png │ │ │ ├── providence.png │ │ │ ├── puddles.png │ │ │ ├── puebla.png │ │ │ ├── pugetsound.png │ │ │ ├── pukyong.png │ │ │ ├── pup.png │ │ │ ├── purdue.png │ │ │ ├── purdueball.png │ │ │ ├── purduecannon.png │ │ │ ├── pusanforeignstudies.png │ │ │ ├── pusannational.png │ │ │ ├── queens.png │ │ │ ├── queretaro.png │ │ │ ├── quincy.png │ │ │ ├── quinnipiac.png │ │ │ ├── radford.png │ │ │ ├── rainyrivercc.png │ │ │ ├── ramapo.png │ │ │ ├── ramfalcon.png │ │ │ ├── randolphmacon.png │ │ │ ├── random.png │ │ │ ├── rangerjc.png │ │ │ ├── rcfb.png │ │ │ ├── rcfboriginal.png │ │ │ ├── rcfbpoll.png │ │ │ ├── reading.png │ │ │ ├── recruiting.png │ │ │ ├── reddit.png │ │ │ ├── redemption.png │ │ │ ├── redemptionacademy.png │ │ │ ├── redlands.png │ │ │ ├── redrivershootout.png │ │ │ ├── reed.png │ │ │ ├── reedley.png │ │ │ ├── ref.png │ │ │ ├── refrigerator.png │ │ │ ├── regina.png │ │ │ ├── regis.png │ │ │ ├── reinhardt.png │ │ │ ├── revivalry.png │ │ │ ├── rhodeisland.png │ │ │ ├── rhodes.png │ │ │ ├── rice.png │ │ │ ├── riceball.png │ │ │ ├── richmond.png │ │ │ ├── richt.png │ │ │ ├── rider.png │ │ │ ├── ridgewater.png │ │ │ ├── rikkyo.png │ │ │ ├── rimouski.png │ │ │ ├── riogrande.png │ │ │ ├── riogranderivalry.png │ │ │ ├── ripmiller.png │ │ │ ├── ripon.png │ │ │ ├── rissho.png │ │ │ ├── rit.png │ │ │ ├── ritsumeikan.png │ │ │ ├── riverlandcc.png │ │ │ ├── riversidecc.png │ │ │ ├── rmc.png │ │ │ ├── rmcstjean.png │ │ │ ├── roanoke.png │ │ │ ├── robertmorris.png │ │ │ ├── robertmorrisil.png │ │ │ ├── robertmorrispeoria.png │ │ │ ├── robotstate.png │ │ │ ├── rochester.png │ │ │ ├── rochesterctc.png │ │ │ ├── rockford.png │ │ │ ├── rockvalley.png │ │ │ ├── rockymountain.png │ │ │ ├── rodriguez.png │ │ │ ├── rogerwilliams.png │ │ │ ├── rollins.png │ │ │ ├── rose.png │ │ │ ├── rosehulman.png │ │ │ ├── rowan.png │ │ │ ├── royalholloway.png │ │ │ ├── rpi.png │ │ │ ├── rpi2.png │ │ │ ├── rulesfaq.png │ │ │ ├── rumor.png │ │ │ ├── russell.png │ │ │ ├── rust.png │ │ │ ├── rutgers.png │ │ │ ├── rutgersball.png │ │ │ ├── ryukoku.png │ │ │ ├── ryukyus.png │ │ │ ├── ryutsukagaku.png │ │ │ ├── ryutsukeizai.png │ │ │ ├── saban.png │ │ │ ├── sacramentocity.png │ │ │ ├── sacramentostate.png │ │ │ ├── sacredheart.png │ │ │ ├── saddle.png │ │ │ ├── saddleback.png │ │ │ ├── saga.png │ │ │ ├── saginawvalleystate.png │ │ │ ├── saintfrancisin.png │ │ │ ├── saintlouis.png │ │ │ ├── saintmary.png │ │ │ ├── saintmarys.png │ │ │ ├── saintvincent.png │ │ │ ├── saintxavier.png │ │ │ ├── saitama.png │ │ │ ├── sakarya.png │ │ │ ├── saleminternational.png │ │ │ ├── salisbury.png │ │ │ ├── salveregina.png │ │ │ ├── samburu.png │ │ │ ├── samford.png │ │ │ ├── samhoustonstate.png │ │ │ ├── samhoustonstate1.png │ │ │ ├── sanbernardinovalley.png │ │ │ ├── sandiego.png │ │ │ ├── sandiegochristmas.png │ │ │ ├── sandiegomesa.png │ │ │ ├── sandiegostate.png │ │ │ ├── sandiegostateball.png │ │ │ ├── sanfrancisco.png │ │ │ ├── sanfranciscostate.png │ │ │ ├── sanjoaquindelta.png │ │ │ ├── sanjosecity.png │ │ │ ├── sanjosestate.png │ │ │ ├── sanjosestateball.png │ │ │ ├── sanmateo.png │ │ │ ├── santaana.png │ │ │ ├── santabarbaracity.png │ │ │ ├── santaclara.png │ │ │ ├── santafeartanddesign.png │ │ │ ├── santamonica.png │ │ │ ├── santarosajunior.png │ │ │ ├── sapporo.png │ │ │ ├── sapporogakuin.png │ │ │ ├── saskatchewan.png │ │ │ ├── sathyabama.png │ │ │ ├── satire.png │ │ │ ├── savannahstate.png │ │ │ ├── scottsdalecc.png │ │ │ ├── scranton.png │ │ │ ├── scut.png │ │ │ ├── seattlebowl.png │ │ │ ├── sec.png │ │ │ ├── secn.png │ │ │ ├── seijo.png │ │ │ ├── seiki.png │ │ │ ├── seinangakuin.png │ │ │ ├── selma.png │ │ │ ├── sendai.png │ │ │ ├── senshu.png │ │ │ ├── seoulnational.png │ │ │ ├── setonhall.png │ │ │ ├── setonhill.png │ │ │ ├── setsunan.png │ │ │ ├── sewanee.png │ │ │ ├── sfbowl.png │ │ │ ├── shandong.png │ │ │ ├── shanghai.png │ │ │ ├── shasta.png │ │ │ ├── shaw.png │ │ │ ├── shawcollegeatdetroit.png │ │ │ ├── shawinigan.png │ │ │ ├── shawuniversity.png │ │ │ ├── shcp.png │ │ │ ├── sheffield.png │ │ │ ├── shenandoah.png │ │ │ ├── shenyang.png │ │ │ ├── shepherd.png │ │ │ ├── shepherdbiblecollege.png │ │ │ ├── sherbrooke.png │ │ │ ├── shibaura.png │ │ │ ├── shiga.png │ │ │ ├── shimane.png │ │ │ ├── shinshu.png │ │ │ ├── shippensburg.png │ │ │ ├── shitilost.png │ │ │ ├── shizuoka.png │ │ │ ├── shnu.png │ │ │ ├── shorelinecc.png │ │ │ ├── shorter.png │ │ │ ├── shrine.png │ │ │ ├── shs.png │ │ │ ├── shula.png │ │ │ ├── si.png │ │ │ ├── siena.png │ │ │ ├── sienaheights.png │ │ │ ├── sierra.png │ │ │ ├── siliconvalley.png │ │ │ ├── silla.png │ │ │ ├── silvershako.png │ │ │ ├── simmonsky.png │ │ │ ├── simonfraser.png │ │ │ ├── simpson.png │ │ │ ├── siouxfalls.png │ │ │ ├── sise.png │ │ │ ├── sit.png │ │ │ ├── sitanka.png │ │ │ ├── siue.png │ │ │ ├── slcc.png │ │ │ ├── slipperyrock.png │ │ │ ├── smu.png │ │ │ ├── smuball.png │ │ │ ├── snow.png │ │ │ ├── snyder.png │ │ │ ├── soa.png │ │ │ ├── socialmedia.png │ │ │ ├── socon.png │ │ │ ├── soka.png │ │ │ ├── solanocc.png │ │ │ ├── solent.png │ │ │ ├── sonomastate.png │ │ │ ├── sophia.png │ │ │ ├── southalabama.png │ │ │ ├── southalabamaball.png │ │ │ ├── southampton.png │ │ │ ├── southcarolina.png │ │ │ ├── southcarolinaball.png │ │ │ ├── southcarolinastate.png │ │ │ ├── southdakota.png │ │ │ ├── southdakotamines.png │ │ │ ├── southdakotaspringfield.png │ │ │ ├── southdakotastate.png │ │ │ ├── southeastcc.png │ │ │ ├── southeastern.png │ │ │ ├── southeasternlouisiana.png │ │ │ ├── southeasternoklahomastate.png │ │ │ ├── southeastmissouristate.png │ │ │ ├── southern.png │ │ │ ├── southernarkansas.png │ │ │ ├── southernconnecticutstate.png │ │ │ ├── southerngentlemen.png │ │ │ ├── southernidahoeducation.png │ │ │ ├── southernillinois.png │ │ │ ├── southernmethodistball.png │ │ │ ├── southernmiss.png │ │ │ ├── southernmissball.png │ │ │ ├── southernmississppiball.png │ │ │ ├── southernnazarene.png │ │ │ ├── southernoregon.png │ │ │ ├── southernutah.png │ │ │ ├── southernvirginia.png │ │ │ ├── southflorida.png │ │ │ ├── southfloridaball.png │ │ │ ├── southgeorgia.png │ │ │ ├── southkorea.png │ │ │ ├── southland.png │ │ │ ├── southsoldestrivalry.png │ │ │ ├── southsuburbancc.png │ │ │ ├── southwest.png │ │ │ ├── southwestbaptist.png │ │ │ ├── southwestclassic.png │ │ │ ├── southwestern.png │ │ │ ├── southwesternassembliesofgod.png │ │ │ ├── southwesternks.png │ │ │ ├── southwesternoklahomastate.png │ │ │ ├── southwesterntx.png │ │ │ ├── southwestminnesotastate.png │ │ │ ├── southwestmississippicc.png │ │ │ ├── spokanefallscc.png │ │ │ ├── springfield.png │ │ │ ├── springhill.png │ │ │ ├── spurrier.png │ │ │ ├── staff.png │ │ │ ├── staffordshire.png │ │ │ ├── stagg.png │ │ │ ├── stagghat.png │ │ │ ├── stambrose.png │ │ │ ├── standrews.png │ │ │ ├── standrewsnc.png │ │ │ ├── stanford.png │ │ │ ├── stanford2.png │ │ │ ├── stanfordball.png │ │ │ ├── stanselm.png │ │ │ ├── staugustines.png │ │ │ ├── stbonaventure.png │ │ │ ├── stcloudstate.png │ │ │ ├── stedwards.png │ │ │ ├── stephenfaustin.png │ │ │ ├── sterling.png │ │ │ ├── stetson.png │ │ │ ├── stevenson.png │ │ │ ├── stevenstech.png │ │ │ ├── stfrancis.png │ │ │ ├── stfrancisbrooklyn.png │ │ │ ├── stfrancisil.png │ │ │ ├── stfrancispa.png │ │ │ ├── stfrancisxavier.png │ │ │ ├── sthyacinthe.png │ │ │ ├── stillman.png │ │ │ ├── stirling.png │ │ │ ├── stjeansurrichelieu.png │ │ │ ├── stjerome.png │ │ │ ├── stjohnfisher.png │ │ │ ├── stjohnsmn.png │ │ │ ├── stjohnsny.png │ │ │ ├── stjosephs.png │ │ │ ├── stjosephspa.png │ │ │ ├── stlawrence.png │ │ │ ├── stleo.png │ │ │ ├── stmartins.png │ │ │ ├── stmaryoftheplains.png │ │ │ ├── stmarys.png │ │ │ ├── stmarysmn.png │ │ │ ├── stmarystx.png │ │ │ ├── stmichaelsvt.png │ │ │ ├── stnorbert.png │ │ │ ├── stockholm.png │ │ │ ├── stolaf.png │ │ │ ├── stonehill.png │ │ │ ├── stonybrook.png │ │ │ ├── stpaulsva.png │ │ │ ├── stpeters.png │ │ │ ├── stpetersburg.png │ │ │ ├── strathclyde.png │ │ │ ├── strong.png │ │ │ ├── stscholastica.png │ │ │ ├── stthomasmn.png │ │ │ ├── suebennett.png │ │ │ ├── sues.png │ │ │ ├── sugar.png │ │ │ ├── suleymandemirel.png │ │ │ ├── sulrossstate.png │ │ │ ├── sumc.png │ │ │ ├── sumlin.png │ │ │ ├── summit.png │ │ │ ├── sun.png │ │ │ ├── sunbelt.png │ │ │ ├── sunderland.png │ │ │ ├── sunflower.png │ │ │ ├── sungkyunkwan.png │ │ │ ├── sunycanton.png │ │ │ ├── sunycortland.png │ │ │ ├── sunyfarmingdale.png │ │ │ ├── sunyfredonia.png │ │ │ ├── sunygeneseo.png │ │ │ ├── sunymaritime.png │ │ │ ├── sunynewpaltz.png │ │ │ ├── sunyoswego.png │ │ │ ├── sunyplattsburgh.png │ │ │ ├── sunypotsdam.png │ │ │ ├── surrey.png │ │ │ ├── sus.png │ │ │ ├── susquehanna.png │ │ │ ├── sussex.png │ │ │ ├── swac.png │ │ │ ├── swansea.png │ │ │ ├── swarthmore.png │ │ │ ├── swconnecticutprep.png │ │ │ ├── sweden.png │ │ │ ├── swinney.png │ │ │ ├── swufe.png │ │ │ ├── sydney.png │ │ │ ├── syracuse.png │ │ │ ├── syracuseball.png │ │ │ ├── tabor.png │ │ │ ├── taft.png │ │ │ ├── takachiho.png │ │ │ ├── takasaki.png │ │ │ ├── takushoku.png │ │ │ ├── talladega.png │ │ │ ├── tamagawa.png │ │ │ ├── tampa.png │ │ │ ├── tamperetech.png │ │ │ ├── tarkio.png │ │ │ ├── tarletonstate.png │ │ │ ├── taylor.png │ │ │ ├── tbs.png │ │ │ ├── tcfa.png │ │ │ ├── tcnj.png │ │ │ ├── tcu.png │ │ │ ├── tcuball.png │ │ │ ├── teamguide.png │ │ │ ├── tebow.png │ │ │ ├── techmobowl.png │ │ │ ├── teesside.png │ │ │ ├── teikyo.png │ │ │ ├── teikyoheisei.png │ │ │ ├── telephone.png │ │ │ ├── temple.png │ │ │ ├── templeball.png │ │ │ ├── tennessee.png │ │ │ ├── tennesseeball.png │ │ │ ├── tennesseemartin.png │ │ │ ├── tennesseestate.png │ │ │ ├── tennesseetech.png │ │ │ ├── tennesseewesleyan.png │ │ │ ├── tenri.png │ │ │ ├── tepeyac.png │ │ │ ├── territorialcup.png │ │ │ ├── texarkana.png │ │ │ ├── texarkanacollege.png │ │ │ ├── texas.png │ │ │ ├── texas2.png │ │ │ ├── texas3.png │ │ │ ├── texasam.png │ │ │ ├── texasam2.png │ │ │ ├── texasamball.png │ │ │ ├── texasamcommerce.png │ │ │ ├── texasamcorpuschristi.png │ │ │ ├── texasamkingsville.png │ │ │ ├── texasat.png │ │ │ ├── texasball.png │ │ │ ├── texasbowl.png │ │ │ ├── texascollege.png │ │ │ ├── texaslutheran.png │ │ │ ├── texaspanamerican.png │ │ │ ├── texassouthern.png │ │ │ ├── texasstate.png │ │ │ ├── texasstateball.png │ │ │ ├── texastech.png │ │ │ ├── texastech2.png │ │ │ ├── texastechball.png │ │ │ ├── texaswesleyan.png │ │ │ ├── tezukayama.png │ │ │ ├── thaddeusstevens.png │ │ │ ├── thegame.png │ │ │ ├── therivalry.png │ │ │ ├── thetford.png │ │ │ ├── thiel.png │ │ │ ├── thirdsaturdayinoctober.png │ │ │ ├── thirdsaturdayinseptember.png │ │ │ ├── thirdsundayinoctober.png │ │ │ ├── thomasmore.png │ │ │ ├── tianjin.png │ │ │ ├── tidewatercc.png │ │ │ ├── tiffin.png │ │ │ ├── tigger.png │ │ │ ├── tijuana.png │ │ │ ├── tit.png │ │ │ ├── tnt.png │ │ │ ├── tobaccoroad.png │ │ │ ├── tobbetu.png │ │ │ ├── tohoku.png │ │ │ ├── tohokugakuin.png │ │ │ ├── tohokutech.png │ │ │ ├── tokai.png │ │ │ ├── tokaimarine.png │ │ │ ├── tokushima.png │ │ │ ├── tokyo.png │ │ │ ├── tokyoagriculture.png │ │ │ ├── tokyoat.png │ │ │ ├── tokyocity.png │ │ │ ├── tokyoforeign.png │ │ │ ├── tokyogakugei.png │ │ │ ├── tokyointernational.png │ │ │ ├── tokyokeizai.png │ │ │ ├── tokyomet.png │ │ │ ├── tokyoscience.png │ │ │ ├── tokyotech.png │ │ │ ├── toledo.png │ │ │ ├── toledoball.png │ │ │ ├── toluca.png │ │ │ ├── tommiejohnnie.png │ │ │ ├── tongji.png │ │ │ ├── tophat.png │ │ │ ├── toronto.png │ │ │ ├── tottori.png │ │ │ ├── touchdown.png │ │ │ ├── tougaloo.png │ │ │ ├── towson.png │ │ │ ├── toyama.png │ │ │ ├── toyo.png │ │ │ ├── transylvania.png │ │ │ ├── trashtalk.png │ │ │ ├── treasurevalleycc.png │ │ │ ├── tree.png │ │ │ ├── trine.png │ │ │ ├── trinidadstatejc.png │ │ │ ├── trinity.png │ │ │ ├── trinitybible.png │ │ │ ├── trinityct.png │ │ │ ├── trinityinternational.png │ │ │ ├── trinitytx.png │ │ │ ├── trinityvalleycc.png │ │ │ ├── tritoncollege.png │ │ │ ├── troisrivieres.png │ │ │ ├── troll.png │ │ │ ├── troy.png │ │ │ ├── troyball.png │ │ │ ├── trumanstate.png │ │ │ ├── trutv.png │ │ │ ├── tsinghua.png │ │ │ ├── tsukuba.png │ │ │ ├── tuas.png │ │ │ ├── tufts.png │ │ │ ├── tulane.png │ │ │ ├── tulaneball.png │ │ │ ├── tulsa.png │ │ │ ├── tulsaball.png │ │ │ ├── turkeyday.png │ │ │ ├── tusculum.png │ │ │ ├── tuskegee.png │ │ │ ├── tv.png │ │ │ ├── twitter.png │ │ │ ├── twitter2.png │ │ │ ├── twitter3.png │ │ │ ├── twittergreen.png │ │ │ ├── tylerjc.png │ │ │ ├── uab.png │ │ │ ├── uabball.png │ │ │ ├── uach.png │ │ │ ├── uadec.png │ │ │ ├── uaem.png │ │ │ ├── uag.png │ │ │ ├── uah.png │ │ │ ├── ualr.png │ │ │ ├── uamn.png │ │ │ ├── uanl.png │ │ │ ├── uatreynosa.png │ │ │ ├── uatvictoria.png │ │ │ ├── ubc.png │ │ │ ├── ucdavis.png │ │ │ ├── ucdublin.png │ │ │ ├── ucf.png │ │ │ ├── ucf2.png │ │ │ ├── ucfball.png │ │ │ ├── ucirvine.png │ │ │ ├── ucla.png │ │ │ ├── uclaball.png │ │ │ ├── uclan.png │ │ │ ├── ucriverside.png │ │ │ ├── ucsb.png │ │ │ ├── ucsd.png │ │ │ ├── udlap.png │ │ │ ├── uea.png │ │ │ ├── uestc.png │ │ │ ├── ufersa.png │ │ │ ├── ufpr.png │ │ │ ├── uic.png │ │ │ ├── uiduk.png │ │ │ ├── uir.png │ │ │ ├── ulm.png │ │ │ ├── ulmball.png │ │ │ ├── ulsan.png │ │ │ ├── uludag.png │ │ │ ├── umad.png │ │ │ ├── umass.png │ │ │ ├── umassball.png │ │ │ ├── umassdartmouth.png │ │ │ ├── umes.png │ │ │ ├── umhb.png │ │ │ ├── umoja.png │ │ │ ├── unam.png │ │ │ ├── unamacatlan.png │ │ │ ├── unbsaintjohn.png │ │ │ ├── uncasheville.png │ │ │ ├── uncpembroke.png │ │ │ ├── une.png │ │ │ ├── unib.png │ │ │ ├── union.png │ │ │ ├── unionky.png │ │ │ ├── uniontn.png │ │ │ ├── unisa.png │ │ │ ├── unison.png │ │ │ ├── universitydc.png │ │ │ ├── universityfaithok.png │ │ │ ├── universitygodschosen.png │ │ │ ├── universitymanchester.png │ │ │ ├── universityoffaith.png │ │ │ ├── universityyork.png │ │ │ ├── unlv.png │ │ │ ├── unlvball.png │ │ │ ├── unsw.png │ │ │ ├── unvoted.png │ │ │ ├── uon.png │ │ │ ├── uos.png │ │ │ ├── uottawa.png │ │ │ ├── upei.png │ │ │ ├── upperiowa.png │ │ │ ├── uppsala.png │ │ │ ├── upsala.png │ │ │ ├── upsetcoug.png │ │ │ ├── upvote.png │ │ │ ├── upvoted.png │ │ │ ├── upvotegrey.png │ │ │ ├── upvotehover.png │ │ │ ├── upvoteno.png │ │ │ ├── upvoteyes.png │ │ │ ├── uqam.png │ │ │ ├── uqtr.png │ │ │ ├── urbana.png │ │ │ ├── ursinus.png │ │ │ ├── usa.png │ │ │ ├── usac.png │ │ │ ├── usc.png │ │ │ ├── uscaa.png │ │ │ ├── uscball.png │ │ │ ├── usf.png │ │ │ ├── usfball.png │ │ │ ├── usst.png │ │ │ ├── usueastern.png │ │ │ ├── utah.png │ │ │ ├── utahball.png │ │ │ ├── utahstate.png │ │ │ ├── utahstateball.png │ │ │ ├── utarlington.png │ │ │ ├── utep.png │ │ │ ├── utepball.png │ │ │ ├── utica.png │ │ │ ├── utpb.png │ │ │ ├── uts.png │ │ │ ├── utsa.png │ │ │ ├── utsaball.png │ │ │ ├── utsunomiya.png │ │ │ ├── utu.png │ │ │ ├── uwe.png │ │ │ ├── uwf.png │ │ │ ├── valdostastate.png │ │ │ ├── valleycitystate.png │ │ │ ├── valleycup.png │ │ │ ├── valleyfield.png │ │ │ ├── valleyforgemac.png │ │ │ ├── valparaiso.png │ │ │ ├── vanderbilt.png │ │ │ ├── vanderbiltball.png │ │ │ ├── vangorder.png │ │ │ ├── vanguard.png │ │ │ ├── vanier.png │ │ │ ├── vanierqc.png │ │ │ ├── vcu.png │ │ │ ├── vegas16.png │ │ │ ├── ventura.png │ │ │ ├── veracruzana.png │ │ │ ├── vermillion.png │ │ │ ├── vermont.png │ │ │ ├── victoriaville.png │ │ │ ├── victorvalley.png │ │ │ ├── victorybarrel.png │ │ │ ├── victorybell.png │ │ │ ├── victorycannon.png │ │ │ ├── victoryflag.png │ │ │ ├── video.png │ │ │ ├── vieuxmontreal.png │ │ │ ├── villanova.png │ │ │ ├── vine.png │ │ │ ├── virginia.png │ │ │ ├── virginiaball.png │ │ │ ├── virginialynchburg.png │ │ │ ├── virginiamilitaryinstitute.png │ │ │ ├── virginiastate.png │ │ │ ├── virginiatech.png │ │ │ ├── virginiatechball.png │ │ │ ├── virginiaunion.png │ │ │ ├── virginiawise.png │ │ │ ├── vulcan.png │ │ │ ├── wabash.png │ │ │ ├── wac.png │ │ │ ├── wagner.png │ │ │ ├── wagonwheel.png │ │ │ ├── wakayama.png │ │ │ ├── wakeforest.png │ │ │ ├── wakeforestball.png │ │ │ ├── waldorf.png │ │ │ ├── walsh.png │ │ │ ├── warner.png │ │ │ ├── waroni4.png │ │ │ ├── wartburg.png │ │ │ ├── warwick.png │ │ │ ├── wasa.png │ │ │ ├── waseda.png │ │ │ ├── washburn.png │ │ │ ├── washington.png │ │ │ ├── washingtonball.png │ │ │ ├── washingtonjefferson.png │ │ │ ├── washingtonlee.png │ │ │ ├── washingtonmd.png │ │ │ ├── washingtonstate.png │ │ │ ├── washingtonstateball.png │ │ │ ├── washingtonu.png │ │ │ ├── waterloo.png │ │ │ ├── waylandbaptist.png │ │ │ ├── waynesburg.png │ │ │ ├── waynestate.png │ │ │ ├── waynestatemi.png │ │ │ ├── wcc.png │ │ │ ├── wcha.png │ │ │ ├── webberinternational.png │ │ │ ├── webbinstitute.png │ │ │ ├── weberstate.png │ │ │ ├── weeklywinddown.png │ │ │ ├── wenatcheevalley.png │ │ │ ├── wesley.png │ │ │ ├── wesleyan.png │ │ │ ├── wespn.png │ │ │ ├── westalabama.png │ │ │ ├── westchester.png │ │ │ ├── westchestercc.png │ │ │ ├── westerncarolina.png │ │ │ ├── westernconnecticutstate.png │ │ │ ├── westernillinois.png │ │ │ ├── westernkentucky.png │ │ │ ├── westernkentuckyball.png │ │ │ ├── westernmichigan.png │ │ │ ├── westernmichiganball.png │ │ │ ├── westernnewengland.png │ │ │ ├── westernnewmexico.png │ │ │ ├── westernontario.png │ │ │ ├── westernoregon.png │ │ │ ├── westernstate.png │ │ │ ├── westernwashington.png │ │ │ ├── westfieldstate.png │ │ │ ├── westgeorgia.png │ │ │ ├── westhills.png │ │ │ ├── westliberty.png │ │ │ ├── westlosangeles.png │ │ │ ├── westministermo.png │ │ │ ├── westministerpa.png │ │ │ ├── westminster.png │ │ │ ├── westminstermo.png │ │ │ ├── westminsterpa.png │ │ │ ├── westminsterut.png │ │ │ ├── westofscotland.png │ │ │ ├── westtexasam.png │ │ │ ├── westvalley.png │ │ │ ├── westvirginia.png │ │ │ ├── westvirginiaball.png │ │ │ ├── westvirginiastate.png │ │ │ ├── westvirginiatech.png │ │ │ ├── westvirginiawesleyan.png │ │ │ ├── whartoncountyjc.png │ │ │ ├── wheaton.png │ │ │ ├── whitman.png │ │ │ ├── whittier.png │ │ │ ├── whitworth.png │ │ │ ├── whoseline.png │ │ │ ├── wichitastate.png │ │ │ ├── widener.png │ │ │ ├── wiki.png │ │ │ ├── wilburwright.png │ │ │ ├── wiley.png │ │ │ ├── wilfridlaurier.png │ │ │ ├── wilkes.png │ │ │ ├── willamette.png │ │ │ ├── williamcarey.png │ │ │ ├── williamjewell.png │ │ │ ├── williammary.png │ │ │ ├── williampaterson.png │ │ │ ├── williampenn.png │ │ │ ├── williams.png │ │ │ ├── williamson.png │ │ │ ├── wilmington.png │ │ │ ├── windsor.png │ │ │ ├── wingate.png │ │ │ ├── winonastate.png │ │ │ ├── winstonsalemstate.png │ │ │ ├── wisconsin.png │ │ │ ├── wisconsinball.png │ │ │ ├── wisconsineauclaire.png │ │ │ ├── wisconsinlacrosse.png │ │ │ ├── wisconsinlutheran.png │ │ │ ├── wisconsinoshkosh.png │ │ │ ├── wisconsinparkside.png │ │ │ ├── wisconsinplatteville.png │ │ │ ├── wisconsinriverfalls.png │ │ │ ├── wisconsinstevenspoint.png │ │ │ ├── wisconsinstout.png │ │ │ ├── wisconsinsuperior.png │ │ │ ├── wisconsinwhitewater.png │ │ │ ├── wittenberg.png │ │ │ ├── wofford.png │ │ │ ├── wolverhampton.png │ │ │ ├── woodenshoes.png │ │ │ ├── wooster.png │ │ │ ├── worcester.png │ │ │ ├── worcesterstate.png │ │ │ ├── wpi.png │ │ │ ├── wrightstate.png │ │ │ ├── wuhan.png │ │ │ ├── wviac.png │ │ │ ├── wyoming.png │ │ │ ├── wyomingball.png │ │ │ ├── xavier.png │ │ │ ├── xavierlouisiana.png │ │ │ ├── xian.png │ │ │ ├── yahoo.png │ │ │ ├── yakimavalleycc.png │ │ │ ├── yale.png │ │ │ ├── yamagata.png │ │ │ ├── yamaguchi.png │ │ │ ├── yamanashi.png │ │ │ ├── yankton.png │ │ │ ├── yasar.png │ │ │ ├── yeditepe.png │ │ │ ├── yeungnam.png │ │ │ ├── yildiz.png │ │ │ ├── yokkaichi.png │ │ │ ├── yokohamacity.png │ │ │ ├── yokohamanational.png │ │ │ ├── yongin.png │ │ │ ├── yonsei.png │ │ │ ├── york.png │ │ │ ├── yorkne.png │ │ │ ├── yorkpa.png │ │ │ ├── youngstownstate.png │ │ │ ├── yuba.png │ │ │ └── zoubidacole.png │ │ ├── header240 │ │ │ ├── alabama.png │ │ │ ├── alabamaold.png │ │ │ ├── america.png │ │ │ ├── arizona.png │ │ │ ├── arizonastate.png │ │ │ ├── arkansas.png │ │ │ ├── auburn.png │ │ │ ├── baylor.png │ │ │ ├── bostoncollege.png │ │ │ ├── california.png │ │ │ ├── cfp.png │ │ │ ├── cincinnati.png │ │ │ ├── clemson.png │ │ │ ├── colorado.png │ │ │ ├── connecticut.png │ │ │ ├── duke.png │ │ │ ├── easter.png │ │ │ ├── florida.png │ │ │ ├── floridastate.png │ │ │ ├── georgia.png │ │ │ ├── georgiatech.png │ │ │ ├── harrypotter.png │ │ │ ├── houston.png │ │ │ ├── illinois.png │ │ │ ├── indiana.png │ │ │ ├── iowa.png │ │ │ ├── iowastate.png │ │ │ ├── kansas.png │ │ │ ├── kansasstate.png │ │ │ ├── kentucky.png │ │ │ ├── louisville.png │ │ │ ├── lsu.png │ │ │ ├── maryland.png │ │ │ ├── miami.png │ │ │ ├── michigan.png │ │ │ ├── michiganstate.png │ │ │ ├── minnesota.png │ │ │ ├── mississippistate.png │ │ │ ├── missouri.png │ │ │ ├── nebraska.png │ │ │ ├── newmexico.png │ │ │ ├── northcarolina.png │ │ │ ├── northcarolinastate.png │ │ │ ├── northdakota.png │ │ │ ├── northwestern.png │ │ │ ├── notredame.png │ │ │ ├── ohiostate.png │ │ │ ├── oklahoma.png │ │ │ ├── oklahomastate.png │ │ │ ├── olemiss.png │ │ │ ├── oregon.png │ │ │ ├── oregonstate.png │ │ │ ├── pennstate.png │ │ │ ├── pittsburgh.png │ │ │ ├── purdue.png │ │ │ ├── purduesepia.png │ │ │ ├── rainbow.png │ │ │ ├── rcfb.png │ │ │ ├── rcfbpi.png │ │ │ ├── reading.png │ │ │ ├── rutgers.png │ │ │ ├── southcarolina.png │ │ │ ├── stanford.png │ │ │ ├── syracuse.png │ │ │ ├── tcu.png │ │ │ ├── tennessee.png │ │ │ ├── texas.png │ │ │ ├── texasam.png │ │ │ ├── texasamcorpuschristi.png │ │ │ ├── texastech.png │ │ │ ├── thanksgiving.png │ │ │ ├── tulane.png │ │ │ ├── uab.png │ │ │ ├── ucf.png │ │ │ ├── ucla.png │ │ │ ├── usc.png │ │ │ ├── usf.png │ │ │ ├── utah.png │ │ │ ├── vanderbilt.png │ │ │ ├── virginia.png │ │ │ ├── virginiatech.png │ │ │ ├── wakeforest.png │ │ │ ├── washington.png │ │ │ ├── washingtonstate.png │ │ │ ├── westvirginia.png │ │ │ └── wisconsin.png │ │ └── poll.png │ └── javascript │ │ ├── ballot.js │ │ ├── ballot_viewer.js │ │ ├── jquery.columnizer.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── main.js │ │ ├── messenger.js │ │ └── poll_viewer.js ├── urls.py └── wsgi.py ├── requirements.txt ├── requirements_local.txt └── runtime.txt /.env: -------------------------------------------------------------------------------- 1 | WEB_CONCURRENCY=2 -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn rcfbpoll.wsgi 2 | release: python manage.py migrate -------------------------------------------------------------------------------- /Procfile.windows: -------------------------------------------------------------------------------- 1 | web: python manage.py runserver 0.0.0.0:5000 2 | -------------------------------------------------------------------------------- /csvs/teams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/csvs/teams.txt -------------------------------------------------------------------------------- /poll/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/poll/__init__.py -------------------------------------------------------------------------------- /poll/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class PollConfig(AppConfig): 7 | name = 'poll' 8 | -------------------------------------------------------------------------------- /poll/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/poll/migrations/__init__.py -------------------------------------------------------------------------------- /poll/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/poll/scripts/__init__.py -------------------------------------------------------------------------------- /poll/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | -------------------------------------------------------------------------------- /rcfbpoll/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/__init__.py -------------------------------------------------------------------------------- /rcfbpoll/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/settings/__init__.py -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/favicon.ico -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /rcfbpoll/static/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/1star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/1star.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/2star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/2star.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/3star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/3star.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/4star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/4star.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/5star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/5star.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aachen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aachen.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aalto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aalto.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aast.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/abc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aberdeen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aberdeen.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/abu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/abu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/acadia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/acadia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/acc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/accn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/accn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/acfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/acfc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/adelaide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/adelaide.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/adelphi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/adelphi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/adrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/adrian.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ahuntsic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ahuntsic.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aibu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aibu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aichi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aichi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/airforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/airforce.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/akdeniz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/akdeniz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/akita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/akita.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/akron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/akron.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alabama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alabama.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alabama2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alabama2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alabama3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alabama3.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alamo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alamo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/albany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/albany.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alberta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alberta.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/albion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/albion.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/albright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/albright.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alfred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alfred.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/allen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/allen.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alliance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alliance.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/alma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/alma.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aloha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aloha.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/amas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/amas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/amazon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/amazon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/american.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/american.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/amherst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/amherst.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/amu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/amu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/anadolu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/anadolu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/analysis.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/anderson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/anderson.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/andrews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/andrews.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ankara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ankara.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/antalya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/antalya.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ap.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/apa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/apa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/applecup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/applecup.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/arcadia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/arcadia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/arizona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/arizona.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/arkansas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/arkansas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/army.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/army.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/armyball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/armyball.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/armynavy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/armynavy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/artist.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/asa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/asa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/asamiami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/asamiami.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ashland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ashland.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/asia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/asia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aston.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/atilim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/atilim.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/atlantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/atlantic.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/auburn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/auburn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/auc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/auc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aucc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aucc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/augsburg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/augsburg.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/augusta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/augusta.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/auro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/auro.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aurora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aurora.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/austin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/austin.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/austria.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/avemaria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/avemaria.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/averett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/averett.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aviation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aviation.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/avila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/avila.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/awards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/awards.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/axe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/aztec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/aztec.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bacardi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bacardi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bacone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bacone.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bahamas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bahamas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/baker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/baker.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/band.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bangor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bangor.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bard.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/barton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/barton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/baskent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/baskent.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bates.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bath.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bathspa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bathspa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/baylor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/baylor.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bayou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bayou.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bcs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/beamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/beamer.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/beard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/beard.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/becker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/becker.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/belhaven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/belhaven.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/belk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/belk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/beloit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/beloit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/benedict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/benedict.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bentley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bentley.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/berry.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bestof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bestof.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bethel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bethel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bethelks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bethelks.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/betheltn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/betheltn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bfu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bfu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bielema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bielema.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/big12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/big12.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/big8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/big8.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bigeast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bigeast.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bigsky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bigsky.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bigsouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bigsouth.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bigten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bigten.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bigwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bigwest.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bilkent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bilkent.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bishops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bishops.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bisu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bisu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bjtu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bjtu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bjut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bjut.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/blinn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/blinn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bluffton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bluffton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bnu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bogazici.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bogazici.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bones.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/booster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/booster.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bordeaux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bordeaux.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bowdoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bowdoin.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bradford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bradford.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bradley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bradley.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brandeis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brandeis.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brazil.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brevard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brevard.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brick.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brighton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brighton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bristol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bristol.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brooklyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brooklyn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brown.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/brunel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/brunel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bryant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bryant.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/btn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bucea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bucea.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bucknell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bucknell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bucs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bucs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/buct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/buct.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/buddhist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/buddhist.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bue.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/buffalo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/buffalo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bug.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bunkyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bunkyo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/bupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/bupt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/butler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/butler.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/butlercc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/butlercc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/butte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/butte.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/buu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/buu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/byu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/byu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/byuball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/byuball.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/byuidaho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/byuidaho.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/byutv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/byutv.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/caa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/caa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cabrillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cabrillo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cactus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cactus.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cairo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cairo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/caldwell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/caldwell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/calgary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/calgary.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/calpoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/calpoly.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/caltech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/caltech.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/camellia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/camellia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/camera.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cameron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cameron.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/campbell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/campbell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/canada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/canada.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/canberra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/canberra.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/canisius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/canisius.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/capital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/capital.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cardiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cardiff.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/carlberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/carlberg.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/carlisle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/carlisle.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cart.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/carthage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/carthage.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/casual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/casual.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/catawba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/catawba.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/catholic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/catholic.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cbi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cbs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cbssn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cbssn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cccaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cccaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ccm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ccm.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ccny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ccny.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cem.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/central.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/central.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/centre.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cerritos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cerritos.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cfp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cfp.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chabot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chabot.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chaffey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chaffey.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chaos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chaos.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chapman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chapman.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/checkbox.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cheer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cheer.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cherry.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cheyney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cheyney.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chiba.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chicago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chicago.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/china.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chizik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chizik.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chowan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chowan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chukyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chukyo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chungang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chungang.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/chuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/chuo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ciaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ciaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cipe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cis.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cisco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cisco.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/citadel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/citadel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/citrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/citrus.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/claflin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/claflin.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/clarion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/clarion.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/clarke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/clarke.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/clarkson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/clarkson.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/clemson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/clemson.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/clowney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/clowney.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cndf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cndf.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cnu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/coach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/coach.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cobra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cobra.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/coe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/coe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/colby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/colby.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/colgate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/colgate.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cologne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cologne.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/colorado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/colorado.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/columbia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/columbia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/complain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/complain.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/conadeip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/conadeip.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/concord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/concord.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cookie.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/corncoug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/corncoug.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/corndog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/corndog.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cornell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cornell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/corso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/corso.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cortaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cortaca.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cotton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/coventry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/coventry.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cpelyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cpelyon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/crablegs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/crablegs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/crown.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/csf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/csf.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/csfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/csfl.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/csula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/csula.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cueb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cueb.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cumt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cumt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cure.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/curry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/curry.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cusa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/cyhawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/cyhawk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/daegu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/daegu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dallas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dallas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dantonio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dantonio.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/davidson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/davidson.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dayton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dayton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dcmetro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dcmetro.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dcu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dean.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/deanza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/deanza.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/defiance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/defiance.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/delaware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/delaware.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/delta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/delta.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/denison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/denison.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/denver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/denver.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/depaul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/depaul.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/depauw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/depauw.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/derby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/derby.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dillard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dillard.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dillybar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dillybar.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dmu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/doane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/doane.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dokkyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dokkyo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/donga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/donga.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dongguk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dongguk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dordt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dordt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/doshisha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/doshisha.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/downvote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/downvote.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/drake.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/drexel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/drexel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/drum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/drum.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/drury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/drury.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dubuque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dubuque.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/duke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/duke.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dukeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dukeball.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dumpster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dumpster.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dundee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dundee.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/dupage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/dupage.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/duquesne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/duquesne.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/durham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/durham.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/earlham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/earlham.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/eastwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/eastwest.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ecfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ecfc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ecupsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ecupsl.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ecust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ecust.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/edgehill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/edgehill.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/edinboro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/edinboro.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/edogawa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/edogawa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ege.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ege.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/eggbowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/eggbowl.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ehime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ehime.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/elcamino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/elcamino.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/elmhurst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/elmhurst.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/elon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/elon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/emu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/emu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/endicott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/endicott.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ensenada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ensenada.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/epc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/epc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/eriecc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/eriecc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/erskine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/erskine.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/escdijon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/escdijon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/esmeesg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/esmeesg.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espn2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espn3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espn3.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espnews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espnews.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espng.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/espnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/espnu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/essex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/essex.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/eui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/eui.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/eureka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/eureka.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/evangel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/evangel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/everett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/everett.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/exeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/exeter.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/falmouth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/falmouth.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fau.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fauball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fauball.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/faulkner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/faulkner.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fcs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fcsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fcsc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ferrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ferrum.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fiesta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fiesta.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/filter.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/findlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/findlay.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/finebaum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/finebaum.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/finland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/finland.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fisher.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fisk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fiu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fiu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fiuball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fiuball.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/florida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/florida.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/florida2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/florida2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/foothill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/foothill.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fordham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fordham.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fowler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fowler.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fox.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/france.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/france.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/franklin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/franklin.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/freedom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/freedom.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/friends.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fs1.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fsn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fsn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fudan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fudan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fukui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fukui.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fukuoka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fukuoka.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/fulmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/fulmer.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/furman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/furman.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gameday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gameday.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gannon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gansz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gansz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/garneau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/garneau.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gator.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gavilan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gavilan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gazi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gazi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gcac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gcac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gccr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gccr.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gdei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gdei.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gdepc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gdepc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gdut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gdut.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gediz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gediz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/geneva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/geneva.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/georgia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/georgia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/germany.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gifu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gifu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/glasgow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/glasgow.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/glass.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gndu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gndu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/goldy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/goldy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gonzaga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gonzaga.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gotham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gotham.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gridiron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gridiron.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/grinnell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/grinnell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gsu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/guc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/guc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/guelph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/guelph.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/guilford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/guilford.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gujarat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gujarat.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/gzhtcm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/gzhtcm.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hakuoh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hakuoh.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hallam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hallam.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hallym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hallym.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hamilton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hamilton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hamline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hamline.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hammer.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hampton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hampton.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/handels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/handels.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hannan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hannan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hanover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hanover.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hanyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hanyang.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/harbaugh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/harbaugh.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/harbor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/harbor.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/harding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/harding.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/harper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/harper.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hartford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hartford.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hartnell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hartnell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hartwick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hartwick.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/harvard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/harvard.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/haskell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/haskell.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hastings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hastings.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/havana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/havana.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hawaii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hawaii.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hebei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hebei.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/heisman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/heisman.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hinds.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hiram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hiram.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hoke.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/holtz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/holtz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hope.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hosei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hosei.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hsu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/huali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/huali.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hufs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hufs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hull.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/hyogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/hyogo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ibfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ibfc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/icff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/icff.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/idaho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/idaho.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/indep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/indep.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/india.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/india.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/inha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/inha.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/iona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/iona.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/iowa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/iowa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/irc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/irc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/irc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/irc2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/irc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/irc3.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/isik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/isik.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/italy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/italy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/itq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/itq.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/itson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/itson.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ivy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ivy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/iwate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/iwate.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/jafa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/jafa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/jain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/jain.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/japan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/jecrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/jecrc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/jkuat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/jkuat.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/jobu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/jobu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/josai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/josai.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kanda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kanda.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kanza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kanza.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kau.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kcac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kcac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kean.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/keele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/keele.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/keggy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/keggy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/keio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/keio.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kelly.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kent.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kibi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kibi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/king.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kings.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/knox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/knox.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kobe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/koc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/koc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kochi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kochi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/konan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/konan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/korea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/korea.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kth.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kuter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kuter.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kyamk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kyamk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/kyoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/kyoto.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lagos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lagos.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lamar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lamar.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lane.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/laney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/laney.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lapaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lapaz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/laval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/laval.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/leach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/leach.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/leeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/leeds.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lewis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lewis.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lhn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lhn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/life.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lions.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ljm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ljm.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/loras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/loras.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lsbu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lsbu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lsu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/lyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/lyon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/maac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/maac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/maine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/maine.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mainz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mainz.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mary.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/meac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/meac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/medal.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/media.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/meiji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/meiji.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/meijo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/meijo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/menlo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/menlo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/metro.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/metu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/metu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/meyer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/meyer.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/miami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/miami.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mie.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/miles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/miles.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mmu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mmu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/msa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/msa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mvc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/mwc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/mwc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/naia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/naia.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/navy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nbc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nbcsn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nbcsn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ncaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ncaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ncac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ncac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nccaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nccaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ncfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ncfa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nchc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nchc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ndu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ndu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nec.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/news.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nihon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nihon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/njcaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/njcaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/njit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/njit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/npu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/npu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nsfw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nsfw.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nssu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nssu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ntu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nutt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nutt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/nyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/nyu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/obu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/obu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ohio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ohio.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/onefa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/onefa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/osaka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/osaka.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/otani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/otani.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ovc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ovc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/p12n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/p12n.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/pac12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/pac12.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/pace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/pace.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/paine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/paine.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/peach.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/point.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/post.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/pup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/pup.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rcfb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rcfb.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/reed.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ref.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/regis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/regis.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rice.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/richt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/richt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rider.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ripon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ripon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rmc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rmc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rose.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rowan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rowan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rpi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rpi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rpi2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rumor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rumor.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/rust.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/saban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/saban.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/saga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/saga.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/scut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/scut.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sec.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/secn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/secn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/seijo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/seijo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/seiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/seiki.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/selma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/selma.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shaw.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shcp.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shiga.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shnu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/shula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/shula.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/si.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/siena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/siena.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/silla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/silla.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sise.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/siue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/siue.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/slcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/slcc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/smu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/smu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/snow.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/soa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/soa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/socon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/socon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/soka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/soka.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/staff.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/stagg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/stagg.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/stleo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/stleo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sues.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sugar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sugar.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sumc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sumc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sun.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/sus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/sus.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/swac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/swac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/swufe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/swufe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tabor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tabor.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/taft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/taft.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tampa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tampa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tbs.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tcfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tcfa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tcnj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tcnj.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tcu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tebow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tebow.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tenri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tenri.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/texas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/texas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/thiel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/thiel.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tit.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tnt.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tokai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tokai.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tokyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tokyo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/toyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/toyo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tree.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/trine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/trine.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/troll.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/troy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/troy.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/trutv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/trutv.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tuas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tuas.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tufts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tufts.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tulsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tulsa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/tv.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uab.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uach.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uadec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uadec.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uaem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uaem.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uag.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uah.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ualr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ualr.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uamn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uamn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uanl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uanl.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ubc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ubc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ucf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ucf.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ucf2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ucf2.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ucla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ucla.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uclan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uclan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ucsb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ucsb.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ucsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ucsd.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/udlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/udlap.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uea.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uestc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uestc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ufpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ufpr.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uic.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uiduk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uiduk.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uir.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ulm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ulm.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/ulsan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/ulsan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/umad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/umad.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/umass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/umass.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/umes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/umes.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/umhb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/umhb.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/umoja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/umoja.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/unam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/unam.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/une.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/une.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/unib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/unib.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/union.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/union.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/unisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/unisa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/unlv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/unlv.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/unsw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/unsw.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uon.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uos.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/upei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/upei.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uqam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uqam.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uqtr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uqtr.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/usa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/usa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/usac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/usac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/usc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/usc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uscaa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uscaa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/usf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/usf.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/usst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/usst.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utah.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utep.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utica.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utpb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utpb.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uts.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utsa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/utu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/utu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uwe.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/uwf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/uwf.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/vcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/vcu.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/video.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/vine.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/walsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/walsh.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wasa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wasa.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wcc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wcc.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wcha.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wespn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wespn.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wiki.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wiley.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wpi.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wuhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wuhan.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/wviac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/wviac.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/xian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/xian.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/yahoo.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/yale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/yale.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/yasar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/yasar.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/york.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/york.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/full60/yuba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/full60/yuba.png -------------------------------------------------------------------------------- /rcfbpoll/static/images/poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sirgippy/rcfbpoll/417fe11ec478360deda728e7beb81ab766871bd4/rcfbpoll/static/images/poll.png -------------------------------------------------------------------------------- /requirements_local.txt: -------------------------------------------------------------------------------- 1 | django-sslserver==0.19 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.18 --------------------------------------------------------------------------------