├── .gitattributes ├── .gitignore ├── .project ├── .pydevproject ├── .settings └── org.eclipse.core.resources.prefs ├── .travis.yml ├── License ├── Pipfile ├── Pipfile.lock ├── README.md ├── README_RUS.md ├── TODO.txt ├── _config.yml ├── assets └── sopds-sass │ ├── .bowerrc │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── bower.json │ ├── gulpfile.js │ ├── index.html │ ├── js │ └── app.js │ ├── package.json │ └── scss │ ├── _settings.scss │ └── sopds.scss ├── book_tools ├── __init__.py ├── format │ ├── __init__.py │ ├── aes.py │ ├── bookfile.py │ ├── epub.py │ ├── fb2.py │ ├── fb2sax.py │ ├── mimetype.py │ ├── mobi.py │ ├── other.py │ └── util.py └── pymobi │ ├── __init__.py │ ├── compression.py │ ├── mobi.py │ └── util.py ├── constance ├── __init__.py ├── admin.py ├── apps.py ├── backends │ ├── __init__.py │ ├── database │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20190129_2304.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── south_migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto__chg_field_constance_key__add_unique_constance_key.py │ │ │ └── __init__.py │ └── redisd.py ├── base.py ├── changes.rst ├── checks.py ├── context_processors.py ├── locale │ ├── cs_CZ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── constance.py ├── settings.py ├── signals.py ├── static │ └── admin │ │ ├── css │ │ └── constance.css │ │ └── js │ │ └── constance.js ├── templates │ └── admin │ │ └── constance │ │ ├── change_list.html │ │ └── includes │ │ └── results_list.html ├── test │ ├── __init__.py │ └── utils.py └── utils.py ├── convert ├── fb2conv │ ├── fb2conv-1.5.2.src.zip │ ├── fb2epub │ ├── fb2mobi │ └── kindlegen_linux_2.6_i386_v2_9.tar.gz ├── fb2epub │ ├── fb2epub │ ├── fb2epub-0.3.0.jar │ └── fb2epub.cmd └── fb2toepub │ └── fb2toepub-1.0_4.zip ├── manage.py ├── opds_catalog ├── __init__.py ├── admin.py ├── apps.py ├── dl.py ├── fb2parse.py ├── feeds.py ├── fixtures │ ├── genre.json │ ├── mygenres.json │ └── testdb.json ├── inpx_parser.py ├── locale │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── log │ └── emptyfile ├── management │ └── commands │ │ ├── sopds_scanner.py │ │ ├── sopds_server.py │ │ ├── sopds_telebot.py │ │ └── sopds_util.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20161115_1810.py │ ├── 0003_auto_20161116_0955.py │ ├── 0004_auto_20161116_1852.py │ ├── 0005_auto_20161204_2138.py │ └── __init__.py ├── models.py ├── opds_paginator.py ├── opdsdb.py ├── settings.py ├── sopdscan.py ├── static │ └── images │ │ ├── nocover-big.jpg │ │ └── nocover.jpg ├── templates │ └── opensearch.html ├── tests │ ├── __init__.py │ ├── data │ │ ├── 262001.fb2 │ │ ├── badfile.fb2 │ │ ├── badfile.zip │ │ ├── books.zip │ │ ├── mirer.epub │ │ └── robin_cook.mobi │ ├── test_constance.py │ ├── test_dl.py │ ├── test_feeds.py │ ├── test_models.py │ ├── test_opdsdb.py │ ├── test_parsers.py │ ├── test_scan.py │ └── test_zipf.py ├── tmp │ └── emptyfile ├── urls.py ├── utils.py ├── views.py └── zipf.py ├── raspberry.txt ├── requirements.txt ├── sopds ├── __init__.py ├── locale │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── settings.py ├── urls.py └── wsgi.py ├── sopds_web_backend ├── __init__.py ├── admin.py ├── apps.py ├── locale │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ └── __init__.py ├── models.py ├── settings.py ├── static │ ├── admin │ │ └── css │ │ │ ├── base.css │ │ │ ├── changelists.css │ │ │ ├── forms.css │ │ │ └── widgets.css │ ├── css │ │ ├── foundation-flex.css │ │ ├── foundation-flex.min.css │ │ ├── foundation-rtl.css │ │ ├── foundation-rtl.min.css │ │ ├── foundation.css │ │ ├── foundation.min.css │ │ └── sopds.css │ ├── foundation-icons │ │ ├── .DS_Store │ │ ├── .fontcustom-data │ │ ├── foundation-icons.css │ │ ├── foundation-icons.eot │ │ ├── foundation-icons.svg │ │ ├── foundation-icons.ttf │ │ ├── foundation-icons.woff │ │ ├── preview.html │ │ └── svgs │ │ │ ├── fi-address-book.svg │ │ │ ├── fi-alert.svg │ │ │ ├── fi-align-center.svg │ │ │ ├── fi-align-justify.svg │ │ │ ├── fi-align-left.svg │ │ │ ├── fi-align-right.svg │ │ │ ├── fi-anchor.svg │ │ │ ├── fi-annotate.svg │ │ │ ├── fi-archive.svg │ │ │ ├── fi-arrow-down.svg │ │ │ ├── fi-arrow-left.svg │ │ │ ├── fi-arrow-right.svg │ │ │ ├── fi-arrow-up.svg │ │ │ ├── fi-arrows-compress.svg │ │ │ ├── fi-arrows-expand.svg │ │ │ ├── fi-arrows-in.svg │ │ │ ├── fi-arrows-out.svg │ │ │ ├── fi-asl.svg │ │ │ ├── fi-asterisk.svg │ │ │ ├── fi-at-sign.svg │ │ │ ├── fi-background-color.svg │ │ │ ├── fi-battery-empty.svg │ │ │ ├── fi-battery-full.svg │ │ │ ├── fi-battery-half.svg │ │ │ ├── fi-bitcoin-circle.svg │ │ │ ├── fi-bitcoin.svg │ │ │ ├── fi-blind.svg │ │ │ ├── fi-bluetooth.svg │ │ │ ├── fi-bold.svg │ │ │ ├── fi-book-bookmark.svg │ │ │ ├── fi-book.svg │ │ │ ├── fi-bookmark.svg │ │ │ ├── fi-braille.svg │ │ │ ├── fi-burst-new.svg │ │ │ ├── fi-burst-sale.svg │ │ │ ├── fi-burst.svg │ │ │ ├── fi-calendar.svg │ │ │ ├── fi-camera.svg │ │ │ ├── fi-check.svg │ │ │ ├── fi-checkbox.svg │ │ │ ├── fi-clipboard-notes.svg │ │ │ ├── fi-clipboard-pencil.svg │ │ │ ├── fi-clipboard.svg │ │ │ ├── fi-clock.svg │ │ │ ├── fi-closed-caption.svg │ │ │ ├── fi-cloud.svg │ │ │ ├── fi-comment-minus.svg │ │ │ ├── fi-comment-quotes.svg │ │ │ ├── fi-comment-video.svg │ │ │ ├── fi-comment.svg │ │ │ ├── fi-comments.svg │ │ │ ├── fi-compass.svg │ │ │ ├── fi-contrast.svg │ │ │ ├── fi-credit-card.svg │ │ │ ├── fi-crop.svg │ │ │ ├── fi-crown.svg │ │ │ ├── fi-css3.svg │ │ │ ├── fi-database.svg │ │ │ ├── fi-die-five.svg │ │ │ ├── fi-die-four.svg │ │ │ ├── fi-die-one.svg │ │ │ ├── fi-die-six.svg │ │ │ ├── fi-die-three.svg │ │ │ ├── fi-die-two.svg │ │ │ ├── fi-dislike.svg │ │ │ ├── fi-dollar-bill.svg │ │ │ ├── fi-dollar.svg │ │ │ ├── fi-download.svg │ │ │ ├── fi-eject.svg │ │ │ ├── fi-elevator.svg │ │ │ ├── fi-euro.svg │ │ │ ├── fi-eye.svg │ │ │ ├── fi-fast-forward.svg │ │ │ ├── fi-female-symbol.svg │ │ │ ├── fi-female.svg │ │ │ ├── fi-filter.svg │ │ │ ├── fi-first-aid.svg │ │ │ ├── fi-flag.svg │ │ │ ├── fi-folder-add.svg │ │ │ ├── fi-folder-lock.svg │ │ │ ├── fi-folder.svg │ │ │ ├── fi-foot.svg │ │ │ ├── fi-foundation.svg │ │ │ ├── fi-graph-bar.svg │ │ │ ├── fi-graph-horizontal.svg │ │ │ ├── fi-graph-pie.svg │ │ │ ├── fi-graph-trend.svg │ │ │ ├── fi-guide-dog.svg │ │ │ ├── fi-hearing-aid.svg │ │ │ ├── fi-heart.svg │ │ │ ├── fi-home.svg │ │ │ ├── fi-html5.svg │ │ │ ├── fi-indent-less.svg │ │ │ ├── fi-indent-more.svg │ │ │ ├── fi-info.svg │ │ │ ├── fi-italic.svg │ │ │ ├── fi-key.svg │ │ │ ├── fi-laptop.svg │ │ │ ├── fi-layout.svg │ │ │ ├── fi-lightbulb.svg │ │ │ ├── fi-like.svg │ │ │ ├── fi-link.svg │ │ │ ├── fi-list-bullet.svg │ │ │ ├── fi-list-number.svg │ │ │ ├── fi-list-thumbnails.svg │ │ │ ├── fi-list.svg │ │ │ ├── fi-lock.svg │ │ │ ├── fi-loop.svg │ │ │ ├── fi-magnifying-glass.svg │ │ │ ├── fi-mail.svg │ │ │ ├── fi-male-female.svg │ │ │ ├── fi-male-symbol.svg │ │ │ ├── fi-male.svg │ │ │ ├── fi-map.svg │ │ │ ├── fi-marker.svg │ │ │ ├── fi-megaphone.svg │ │ │ ├── fi-microphone.svg │ │ │ ├── fi-minus-circle.svg │ │ │ ├── fi-minus.svg │ │ │ ├── fi-mobile-signal.svg │ │ │ ├── fi-mobile.svg │ │ │ ├── fi-monitor.svg │ │ │ ├── fi-mountains.svg │ │ │ ├── fi-music.svg │ │ │ ├── fi-next.svg │ │ │ ├── fi-no-dogs.svg │ │ │ ├── fi-no-smoking.svg │ │ │ ├── fi-page-add.svg │ │ │ ├── fi-page-copy.svg │ │ │ ├── fi-page-csv.svg │ │ │ ├── fi-page-delete.svg │ │ │ ├── fi-page-doc.svg │ │ │ ├── fi-page-edit.svg │ │ │ ├── fi-page-export-csv.svg │ │ │ ├── fi-page-export-doc.svg │ │ │ ├── fi-page-export-pdf.svg │ │ │ ├── fi-page-export.svg │ │ │ ├── fi-page-filled.svg │ │ │ ├── fi-page-multiple.svg │ │ │ ├── fi-page-pdf.svg │ │ │ ├── fi-page-remove.svg │ │ │ ├── fi-page-search.svg │ │ │ ├── fi-page.svg │ │ │ ├── fi-paint-bucket.svg │ │ │ ├── fi-paperclip.svg │ │ │ ├── fi-pause.svg │ │ │ ├── fi-paw.svg │ │ │ ├── fi-paypal.svg │ │ │ ├── fi-pencil.svg │ │ │ ├── fi-photo.svg │ │ │ ├── fi-play-circle.svg │ │ │ ├── fi-play-video.svg │ │ │ ├── fi-play.svg │ │ │ ├── fi-plus.svg │ │ │ ├── fi-pound.svg │ │ │ ├── fi-power.svg │ │ │ ├── fi-previous.svg │ │ │ ├── fi-price-tag.svg │ │ │ ├── fi-pricetag-multiple.svg │ │ │ ├── fi-print.svg │ │ │ ├── fi-prohibited.svg │ │ │ ├── fi-projection-screen.svg │ │ │ ├── fi-puzzle.svg │ │ │ ├── fi-quote.svg │ │ │ ├── fi-record.svg │ │ │ ├── fi-refresh.svg │ │ │ ├── fi-results-demographics.svg │ │ │ ├── fi-results.svg │ │ │ ├── fi-rewind-ten.svg │ │ │ ├── fi-rewind.svg │ │ │ ├── fi-rss.svg │ │ │ ├── fi-safety-cone.svg │ │ │ ├── fi-save.svg │ │ │ ├── fi-share.svg │ │ │ ├── fi-sheriff-badge.svg │ │ │ ├── fi-shield.svg │ │ │ ├── fi-shopping-bag.svg │ │ │ ├── fi-shopping-cart.svg │ │ │ ├── fi-shuffle.svg │ │ │ ├── fi-skull.svg │ │ │ ├── fi-social-500px.svg │ │ │ ├── fi-social-adobe.svg │ │ │ ├── fi-social-amazon.svg │ │ │ ├── fi-social-android.svg │ │ │ ├── fi-social-apple.svg │ │ │ ├── fi-social-behance.svg │ │ │ ├── fi-social-bing.svg │ │ │ ├── fi-social-blogger.svg │ │ │ ├── fi-social-delicious.svg │ │ │ ├── fi-social-designer-news.svg │ │ │ ├── fi-social-deviant-art.svg │ │ │ ├── fi-social-digg.svg │ │ │ ├── fi-social-dribbble.svg │ │ │ ├── fi-social-drive.svg │ │ │ ├── fi-social-dropbox.svg │ │ │ ├── fi-social-evernote.svg │ │ │ ├── fi-social-facebook.svg │ │ │ ├── fi-social-flickr.svg │ │ │ ├── fi-social-forrst.svg │ │ │ ├── fi-social-foursquare.svg │ │ │ ├── fi-social-game-center.svg │ │ │ ├── fi-social-github.svg │ │ │ ├── fi-social-google-plus.svg │ │ │ ├── fi-social-hacker-news.svg │ │ │ ├── fi-social-hi5.svg │ │ │ ├── fi-social-instagram.svg │ │ │ ├── fi-social-joomla.svg │ │ │ ├── fi-social-lastfm.svg │ │ │ ├── fi-social-linkedin.svg │ │ │ ├── fi-social-medium.svg │ │ │ ├── fi-social-myspace.svg │ │ │ ├── fi-social-orkut.svg │ │ │ ├── fi-social-path.svg │ │ │ ├── fi-social-picasa.svg │ │ │ ├── fi-social-pinterest.svg │ │ │ ├── fi-social-rdio.svg │ │ │ ├── fi-social-reddit.svg │ │ │ ├── fi-social-skillshare.svg │ │ │ ├── fi-social-skype.svg │ │ │ ├── fi-social-smashing-mag.svg │ │ │ ├── fi-social-snapchat.svg │ │ │ ├── fi-social-spotify.svg │ │ │ ├── fi-social-squidoo.svg │ │ │ ├── fi-social-stack-overflow.svg │ │ │ ├── fi-social-steam.svg │ │ │ ├── fi-social-stumbleupon.svg │ │ │ ├── fi-social-treehouse.svg │ │ │ ├── fi-social-tumblr.svg │ │ │ ├── fi-social-twitter.svg │ │ │ ├── fi-social-vimeo.svg │ │ │ ├── fi-social-windows.svg │ │ │ ├── fi-social-xbox.svg │ │ │ ├── fi-social-yahoo.svg │ │ │ ├── fi-social-yelp.svg │ │ │ ├── fi-social-youtube.svg │ │ │ ├── fi-social-zerply.svg │ │ │ ├── fi-social-zurb.svg │ │ │ ├── fi-sound.svg │ │ │ ├── fi-star.svg │ │ │ ├── fi-stop.svg │ │ │ ├── fi-strikethrough.svg │ │ │ ├── fi-subscript.svg │ │ │ ├── fi-superscript.svg │ │ │ ├── fi-tablet-landscape.svg │ │ │ ├── fi-tablet-portrait.svg │ │ │ ├── fi-target-two.svg │ │ │ ├── fi-target.svg │ │ │ ├── fi-telephone-accessible.svg │ │ │ ├── fi-telephone.svg │ │ │ ├── fi-text-color.svg │ │ │ ├── fi-thumbnails.svg │ │ │ ├── fi-ticket.svg │ │ │ ├── fi-torso-business.svg │ │ │ ├── fi-torso-female.svg │ │ │ ├── fi-torso.svg │ │ │ ├── fi-torsos-all-female.svg │ │ │ ├── fi-torsos-all.svg │ │ │ ├── fi-torsos-female-male.svg │ │ │ ├── fi-torsos-male-female.svg │ │ │ ├── fi-torsos.svg │ │ │ ├── fi-trash.svg │ │ │ ├── fi-trees.svg │ │ │ ├── fi-trophy.svg │ │ │ ├── fi-underline.svg │ │ │ ├── fi-universal-access.svg │ │ │ ├── fi-unlink.svg │ │ │ ├── fi-unlock.svg │ │ │ ├── fi-upload-cloud.svg │ │ │ ├── fi-upload.svg │ │ │ ├── fi-usb.svg │ │ │ ├── fi-video.svg │ │ │ ├── fi-volume-none.svg │ │ │ ├── fi-volume-strike.svg │ │ │ ├── fi-volume.svg │ │ │ ├── fi-web.svg │ │ │ ├── fi-wheelchair.svg │ │ │ ├── fi-widget.svg │ │ │ ├── fi-wrench.svg │ │ │ ├── fi-x-circle.svg │ │ │ ├── fi-x.svg │ │ │ ├── fi-yen.svg │ │ │ ├── fi-zoom-in.svg │ │ │ └── fi-zoom-out.svg │ ├── images │ │ ├── favicon.ico │ │ ├── folder.png │ │ ├── inpx.png │ │ ├── inpx.psd │ │ ├── sopds_book.jpg │ │ ├── sopds_icon-big.gif │ │ ├── sopds_icon.gif │ │ ├── sopds_icon.jpg │ │ ├── sopds_icon2.gif │ │ ├── sopds_logo.gif │ │ ├── text.png │ │ └── zip.png │ └── js │ │ ├── sopds.js │ │ └── vendor │ │ ├── foundation.js │ │ ├── foundation.min.js │ │ ├── jquery.js │ │ └── what-input.js ├── templates │ ├── admin │ │ ├── base.html │ │ └── base_site.html │ ├── sopds_authors.html │ ├── sopds_books.html │ ├── sopds_breadcrumbs.html │ ├── sopds_catalogs.html │ ├── sopds_error.html │ ├── sopds_footer.html │ ├── sopds_hello.html │ ├── sopds_login.html │ ├── sopds_logo.html │ ├── sopds_main.html │ ├── sopds_menu.html │ ├── sopds_messages.html │ ├── sopds_selectauthor.html │ ├── sopds_selectbook.html │ ├── sopds_selectgenres.html │ ├── sopds_selectseries.html │ ├── sopds_series.html │ └── sopds_top.html ├── urls.py └── views.py └── static ├── admin ├── css │ ├── base.css │ ├── changelists.css │ ├── dashboard.css │ ├── fonts.css │ ├── forms.css │ ├── login.css │ ├── rtl.css │ └── widgets.css ├── fonts │ ├── LICENSE.txt │ ├── README.txt │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-Light-webfont.woff │ └── Roboto-Regular-webfont.woff ├── img │ ├── LICENSE │ ├── README.txt │ ├── calendar-icons.svg │ ├── gis │ │ ├── move_vertex_off.svg │ │ └── move_vertex_on.svg │ ├── icon-addlink.svg │ ├── icon-alert.svg │ ├── icon-calendar.svg │ ├── icon-changelink.svg │ ├── icon-clock.svg │ ├── icon-deletelink.svg │ ├── icon-no.svg │ ├── icon-unknown-alt.svg │ ├── icon-unknown.svg │ ├── icon-yes.svg │ ├── inline-delete.svg │ ├── search.svg │ ├── selector-icons.svg │ ├── sorting-icons.svg │ ├── tooltag-add.svg │ └── tooltag-arrowright.svg └── js │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── actions.min.js │ ├── admin │ ├── DateTimeShortcuts.js │ └── RelatedObjectLookups.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── collapse.min.js │ ├── core.js │ ├── inlines.js │ ├── inlines.min.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate.min.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor │ ├── jquery │ ├── LICENSE-JQUERY.txt │ ├── jquery.js │ └── jquery.min.js │ └── xregexp │ ├── LICENSE-XREGEXP.txt │ ├── xregexp.js │ └── xregexp.min.js ├── css ├── foundation-flex.css ├── foundation-flex.min.css ├── foundation-rtl.css ├── foundation-rtl.min.css ├── foundation.css ├── foundation.min.css └── sopds.css ├── foundation-icons ├── foundation-icons.css ├── foundation-icons.eot ├── foundation-icons.svg ├── foundation-icons.ttf ├── foundation-icons.woff ├── preview.html └── svgs │ ├── fi-address-book.svg │ ├── fi-alert.svg │ ├── fi-align-center.svg │ ├── fi-align-justify.svg │ ├── fi-align-left.svg │ ├── fi-align-right.svg │ ├── fi-anchor.svg │ ├── fi-annotate.svg │ ├── fi-archive.svg │ ├── fi-arrow-down.svg │ ├── fi-arrow-left.svg │ ├── fi-arrow-right.svg │ ├── fi-arrow-up.svg │ ├── fi-arrows-compress.svg │ ├── fi-arrows-expand.svg │ ├── fi-arrows-in.svg │ ├── fi-arrows-out.svg │ ├── fi-asl.svg │ ├── fi-asterisk.svg │ ├── fi-at-sign.svg │ ├── fi-background-color.svg │ ├── fi-battery-empty.svg │ ├── fi-battery-full.svg │ ├── fi-battery-half.svg │ ├── fi-bitcoin-circle.svg │ ├── fi-bitcoin.svg │ ├── fi-blind.svg │ ├── fi-bluetooth.svg │ ├── fi-bold.svg │ ├── fi-book-bookmark.svg │ ├── fi-book.svg │ ├── fi-bookmark.svg │ ├── fi-braille.svg │ ├── fi-burst-new.svg │ ├── fi-burst-sale.svg │ ├── fi-burst.svg │ ├── fi-calendar.svg │ ├── fi-camera.svg │ ├── fi-check.svg │ ├── fi-checkbox.svg │ ├── fi-clipboard-notes.svg │ ├── fi-clipboard-pencil.svg │ ├── fi-clipboard.svg │ ├── fi-clock.svg │ ├── fi-closed-caption.svg │ ├── fi-cloud.svg │ ├── fi-comment-minus.svg │ ├── fi-comment-quotes.svg │ ├── fi-comment-video.svg │ ├── fi-comment.svg │ ├── fi-comments.svg │ ├── fi-compass.svg │ ├── fi-contrast.svg │ ├── fi-credit-card.svg │ ├── fi-crop.svg │ ├── fi-crown.svg │ ├── fi-css3.svg │ ├── fi-database.svg │ ├── fi-die-five.svg │ ├── fi-die-four.svg │ ├── fi-die-one.svg │ ├── fi-die-six.svg │ ├── fi-die-three.svg │ ├── fi-die-two.svg │ ├── fi-dislike.svg │ ├── fi-dollar-bill.svg │ ├── fi-dollar.svg │ ├── fi-download.svg │ ├── fi-eject.svg │ ├── fi-elevator.svg │ ├── fi-euro.svg │ ├── fi-eye.svg │ ├── fi-fast-forward.svg │ ├── fi-female-symbol.svg │ ├── fi-female.svg │ ├── fi-filter.svg │ ├── fi-first-aid.svg │ ├── fi-flag.svg │ ├── fi-folder-add.svg │ ├── fi-folder-lock.svg │ ├── fi-folder.svg │ ├── fi-foot.svg │ ├── fi-foundation.svg │ ├── fi-graph-bar.svg │ ├── fi-graph-horizontal.svg │ ├── fi-graph-pie.svg │ ├── fi-graph-trend.svg │ ├── fi-guide-dog.svg │ ├── fi-hearing-aid.svg │ ├── fi-heart.svg │ ├── fi-home.svg │ ├── fi-html5.svg │ ├── fi-indent-less.svg │ ├── fi-indent-more.svg │ ├── fi-info.svg │ ├── fi-italic.svg │ ├── fi-key.svg │ ├── fi-laptop.svg │ ├── fi-layout.svg │ ├── fi-lightbulb.svg │ ├── fi-like.svg │ ├── fi-link.svg │ ├── fi-list-bullet.svg │ ├── fi-list-number.svg │ ├── fi-list-thumbnails.svg │ ├── fi-list.svg │ ├── fi-lock.svg │ ├── fi-loop.svg │ ├── fi-magnifying-glass.svg │ ├── fi-mail.svg │ ├── fi-male-female.svg │ ├── fi-male-symbol.svg │ ├── fi-male.svg │ ├── fi-map.svg │ ├── fi-marker.svg │ ├── fi-megaphone.svg │ ├── fi-microphone.svg │ ├── fi-minus-circle.svg │ ├── fi-minus.svg │ ├── fi-mobile-signal.svg │ ├── fi-mobile.svg │ ├── fi-monitor.svg │ ├── fi-mountains.svg │ ├── fi-music.svg │ ├── fi-next.svg │ ├── fi-no-dogs.svg │ ├── fi-no-smoking.svg │ ├── fi-page-add.svg │ ├── fi-page-copy.svg │ ├── fi-page-csv.svg │ ├── fi-page-delete.svg │ ├── fi-page-doc.svg │ ├── fi-page-edit.svg │ ├── fi-page-export-csv.svg │ ├── fi-page-export-doc.svg │ ├── fi-page-export-pdf.svg │ ├── fi-page-export.svg │ ├── fi-page-filled.svg │ ├── fi-page-multiple.svg │ ├── fi-page-pdf.svg │ ├── fi-page-remove.svg │ ├── fi-page-search.svg │ ├── fi-page.svg │ ├── fi-paint-bucket.svg │ ├── fi-paperclip.svg │ ├── fi-pause.svg │ ├── fi-paw.svg │ ├── fi-paypal.svg │ ├── fi-pencil.svg │ ├── fi-photo.svg │ ├── fi-play-circle.svg │ ├── fi-play-video.svg │ ├── fi-play.svg │ ├── fi-plus.svg │ ├── fi-pound.svg │ ├── fi-power.svg │ ├── fi-previous.svg │ ├── fi-price-tag.svg │ ├── fi-pricetag-multiple.svg │ ├── fi-print.svg │ ├── fi-prohibited.svg │ ├── fi-projection-screen.svg │ ├── fi-puzzle.svg │ ├── fi-quote.svg │ ├── fi-record.svg │ ├── fi-refresh.svg │ ├── fi-results-demographics.svg │ ├── fi-results.svg │ ├── fi-rewind-ten.svg │ ├── fi-rewind.svg │ ├── fi-rss.svg │ ├── fi-safety-cone.svg │ ├── fi-save.svg │ ├── fi-share.svg │ ├── fi-sheriff-badge.svg │ ├── fi-shield.svg │ ├── fi-shopping-bag.svg │ ├── fi-shopping-cart.svg │ ├── fi-shuffle.svg │ ├── fi-skull.svg │ ├── fi-social-500px.svg │ ├── fi-social-adobe.svg │ ├── fi-social-amazon.svg │ ├── fi-social-android.svg │ ├── fi-social-apple.svg │ ├── fi-social-behance.svg │ ├── fi-social-bing.svg │ ├── fi-social-blogger.svg │ ├── fi-social-delicious.svg │ ├── fi-social-designer-news.svg │ ├── fi-social-deviant-art.svg │ ├── fi-social-digg.svg │ ├── fi-social-dribbble.svg │ ├── fi-social-drive.svg │ ├── fi-social-dropbox.svg │ ├── fi-social-evernote.svg │ ├── fi-social-facebook.svg │ ├── fi-social-flickr.svg │ ├── fi-social-forrst.svg │ ├── fi-social-foursquare.svg │ ├── fi-social-game-center.svg │ ├── fi-social-github.svg │ ├── fi-social-google-plus.svg │ ├── fi-social-hacker-news.svg │ ├── fi-social-hi5.svg │ ├── fi-social-instagram.svg │ ├── fi-social-joomla.svg │ ├── fi-social-lastfm.svg │ ├── fi-social-linkedin.svg │ ├── fi-social-medium.svg │ ├── fi-social-myspace.svg │ ├── fi-social-orkut.svg │ ├── fi-social-path.svg │ ├── fi-social-picasa.svg │ ├── fi-social-pinterest.svg │ ├── fi-social-rdio.svg │ ├── fi-social-reddit.svg │ ├── fi-social-skillshare.svg │ ├── fi-social-skype.svg │ ├── fi-social-smashing-mag.svg │ ├── fi-social-snapchat.svg │ ├── fi-social-spotify.svg │ ├── fi-social-squidoo.svg │ ├── fi-social-stack-overflow.svg │ ├── fi-social-steam.svg │ ├── fi-social-stumbleupon.svg │ ├── fi-social-treehouse.svg │ ├── fi-social-tumblr.svg │ ├── fi-social-twitter.svg │ ├── fi-social-vimeo.svg │ ├── fi-social-windows.svg │ ├── fi-social-xbox.svg │ ├── fi-social-yahoo.svg │ ├── fi-social-yelp.svg │ ├── fi-social-youtube.svg │ ├── fi-social-zerply.svg │ ├── fi-social-zurb.svg │ ├── fi-sound.svg │ ├── fi-star.svg │ ├── fi-stop.svg │ ├── fi-strikethrough.svg │ ├── fi-subscript.svg │ ├── fi-superscript.svg │ ├── fi-tablet-landscape.svg │ ├── fi-tablet-portrait.svg │ ├── fi-target-two.svg │ ├── fi-target.svg │ ├── fi-telephone-accessible.svg │ ├── fi-telephone.svg │ ├── fi-text-color.svg │ ├── fi-thumbnails.svg │ ├── fi-ticket.svg │ ├── fi-torso-business.svg │ ├── fi-torso-female.svg │ ├── fi-torso.svg │ ├── fi-torsos-all-female.svg │ ├── fi-torsos-all.svg │ ├── fi-torsos-female-male.svg │ ├── fi-torsos-male-female.svg │ ├── fi-torsos.svg │ ├── fi-trash.svg │ ├── fi-trees.svg │ ├── fi-trophy.svg │ ├── fi-underline.svg │ ├── fi-universal-access.svg │ ├── fi-unlink.svg │ ├── fi-unlock.svg │ ├── fi-upload-cloud.svg │ ├── fi-upload.svg │ ├── fi-usb.svg │ ├── fi-video.svg │ ├── fi-volume-none.svg │ ├── fi-volume-strike.svg │ ├── fi-volume.svg │ ├── fi-web.svg │ ├── fi-wheelchair.svg │ ├── fi-widget.svg │ ├── fi-wrench.svg │ ├── fi-x-circle.svg │ ├── fi-x.svg │ ├── fi-yen.svg │ ├── fi-zoom-in.svg │ └── fi-zoom-out.svg ├── images ├── favicon.ico ├── folder.png ├── inpx.png ├── inpx.psd ├── nocover-big.jpg ├── nocover.jpg ├── sopds_book.jpg ├── sopds_icon-big.gif ├── sopds_icon.gif ├── sopds_icon.jpg ├── sopds_icon2.gif ├── sopds_logo.gif ├── text.png └── zip.png └── js ├── sopds.js └── vendor ├── foundation.js ├── foundation.min.js ├── jquery.js └── what-input.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.pydevproject -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/.travis.yml -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/License -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/README.md -------------------------------------------------------------------------------- /README_RUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/README_RUS.md -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/TODO.txt -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/sopds-sass/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /assets/sopds-sass/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components 3 | node_modules 4 | npm-debug.log 5 | css 6 | -------------------------------------------------------------------------------- /assets/sopds-sass/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## Version 1.0 (November 19, 2015) 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /assets/sopds-sass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/README.md -------------------------------------------------------------------------------- /assets/sopds-sass/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/bower.json -------------------------------------------------------------------------------- /assets/sopds-sass/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/gulpfile.js -------------------------------------------------------------------------------- /assets/sopds-sass/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/index.html -------------------------------------------------------------------------------- /assets/sopds-sass/js/app.js: -------------------------------------------------------------------------------- 1 | $(document).foundation(); 2 | -------------------------------------------------------------------------------- /assets/sopds-sass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/package.json -------------------------------------------------------------------------------- /assets/sopds-sass/scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/scss/_settings.scss -------------------------------------------------------------------------------- /assets/sopds-sass/scss/sopds.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/assets/sopds-sass/scss/sopds.scss -------------------------------------------------------------------------------- /book_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book_tools/format/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/__init__.py -------------------------------------------------------------------------------- /book_tools/format/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/aes.py -------------------------------------------------------------------------------- /book_tools/format/bookfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/bookfile.py -------------------------------------------------------------------------------- /book_tools/format/epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/epub.py -------------------------------------------------------------------------------- /book_tools/format/fb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/fb2.py -------------------------------------------------------------------------------- /book_tools/format/fb2sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/fb2sax.py -------------------------------------------------------------------------------- /book_tools/format/mimetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/mimetype.py -------------------------------------------------------------------------------- /book_tools/format/mobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/mobi.py -------------------------------------------------------------------------------- /book_tools/format/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/other.py -------------------------------------------------------------------------------- /book_tools/format/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/format/util.py -------------------------------------------------------------------------------- /book_tools/pymobi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/pymobi/__init__.py -------------------------------------------------------------------------------- /book_tools/pymobi/compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/pymobi/compression.py -------------------------------------------------------------------------------- /book_tools/pymobi/mobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/pymobi/mobi.py -------------------------------------------------------------------------------- /book_tools/pymobi/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/book_tools/pymobi/util.py -------------------------------------------------------------------------------- /constance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/__init__.py -------------------------------------------------------------------------------- /constance/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/admin.py -------------------------------------------------------------------------------- /constance/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/apps.py -------------------------------------------------------------------------------- /constance/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/__init__.py -------------------------------------------------------------------------------- /constance/backends/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/database/__init__.py -------------------------------------------------------------------------------- /constance/backends/database/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/database/migrations/0001_initial.py -------------------------------------------------------------------------------- /constance/backends/database/migrations/0002_auto_20190129_2304.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/database/migrations/0002_auto_20190129_2304.py -------------------------------------------------------------------------------- /constance/backends/database/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constance/backends/database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/database/models.py -------------------------------------------------------------------------------- /constance/backends/database/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/database/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /constance/backends/database/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constance/backends/redisd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/backends/redisd.py -------------------------------------------------------------------------------- /constance/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/base.py -------------------------------------------------------------------------------- /constance/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/changes.rst -------------------------------------------------------------------------------- /constance/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/checks.py -------------------------------------------------------------------------------- /constance/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/context_processors.py -------------------------------------------------------------------------------- /constance/locale/cs_CZ/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/cs_CZ/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/cs_CZ/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/cs_CZ/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/zh_CN/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/zh_CN/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /constance/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /constance/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constance/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /constance/management/commands/constance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/management/commands/constance.py -------------------------------------------------------------------------------- /constance/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/settings.py -------------------------------------------------------------------------------- /constance/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/signals.py -------------------------------------------------------------------------------- /constance/static/admin/css/constance.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/static/admin/css/constance.css -------------------------------------------------------------------------------- /constance/static/admin/js/constance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/static/admin/js/constance.js -------------------------------------------------------------------------------- /constance/templates/admin/constance/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/templates/admin/constance/change_list.html -------------------------------------------------------------------------------- /constance/templates/admin/constance/includes/results_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/templates/admin/constance/includes/results_list.html -------------------------------------------------------------------------------- /constance/test/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import override_config 2 | -------------------------------------------------------------------------------- /constance/test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/test/utils.py -------------------------------------------------------------------------------- /constance/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/constance/utils.py -------------------------------------------------------------------------------- /convert/fb2conv/fb2conv-1.5.2.src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2conv/fb2conv-1.5.2.src.zip -------------------------------------------------------------------------------- /convert/fb2conv/fb2epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2conv/fb2epub -------------------------------------------------------------------------------- /convert/fb2conv/fb2mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2conv/fb2mobi -------------------------------------------------------------------------------- /convert/fb2conv/kindlegen_linux_2.6_i386_v2_9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2conv/kindlegen_linux_2.6_i386_v2_9.tar.gz -------------------------------------------------------------------------------- /convert/fb2epub/fb2epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2epub/fb2epub -------------------------------------------------------------------------------- /convert/fb2epub/fb2epub-0.3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2epub/fb2epub-0.3.0.jar -------------------------------------------------------------------------------- /convert/fb2epub/fb2epub.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2epub/fb2epub.cmd -------------------------------------------------------------------------------- /convert/fb2toepub/fb2toepub-1.0_4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/convert/fb2toepub/fb2toepub-1.0_4.zip -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/manage.py -------------------------------------------------------------------------------- /opds_catalog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opds_catalog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/admin.py -------------------------------------------------------------------------------- /opds_catalog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/apps.py -------------------------------------------------------------------------------- /opds_catalog/dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/dl.py -------------------------------------------------------------------------------- /opds_catalog/fb2parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/fb2parse.py -------------------------------------------------------------------------------- /opds_catalog/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/feeds.py -------------------------------------------------------------------------------- /opds_catalog/fixtures/genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/fixtures/genre.json -------------------------------------------------------------------------------- /opds_catalog/fixtures/mygenres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/fixtures/mygenres.json -------------------------------------------------------------------------------- /opds_catalog/fixtures/testdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/fixtures/testdb.json -------------------------------------------------------------------------------- /opds_catalog/inpx_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/inpx_parser.py -------------------------------------------------------------------------------- /opds_catalog/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /opds_catalog/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /opds_catalog/log/emptyfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opds_catalog/management/commands/sopds_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/management/commands/sopds_scanner.py -------------------------------------------------------------------------------- /opds_catalog/management/commands/sopds_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/management/commands/sopds_server.py -------------------------------------------------------------------------------- /opds_catalog/management/commands/sopds_telebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/management/commands/sopds_telebot.py -------------------------------------------------------------------------------- /opds_catalog/management/commands/sopds_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/management/commands/sopds_util.py -------------------------------------------------------------------------------- /opds_catalog/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/middleware.py -------------------------------------------------------------------------------- /opds_catalog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/migrations/0001_initial.py -------------------------------------------------------------------------------- /opds_catalog/migrations/0002_auto_20161115_1810.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/migrations/0002_auto_20161115_1810.py -------------------------------------------------------------------------------- /opds_catalog/migrations/0003_auto_20161116_0955.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/migrations/0003_auto_20161116_0955.py -------------------------------------------------------------------------------- /opds_catalog/migrations/0004_auto_20161116_1852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/migrations/0004_auto_20161116_1852.py -------------------------------------------------------------------------------- /opds_catalog/migrations/0005_auto_20161204_2138.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/migrations/0005_auto_20161204_2138.py -------------------------------------------------------------------------------- /opds_catalog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opds_catalog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/models.py -------------------------------------------------------------------------------- /opds_catalog/opds_paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/opds_paginator.py -------------------------------------------------------------------------------- /opds_catalog/opdsdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/opdsdb.py -------------------------------------------------------------------------------- /opds_catalog/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/settings.py -------------------------------------------------------------------------------- /opds_catalog/sopdscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/sopdscan.py -------------------------------------------------------------------------------- /opds_catalog/static/images/nocover-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/static/images/nocover-big.jpg -------------------------------------------------------------------------------- /opds_catalog/static/images/nocover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/static/images/nocover.jpg -------------------------------------------------------------------------------- /opds_catalog/templates/opensearch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/templates/opensearch.html -------------------------------------------------------------------------------- /opds_catalog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opds_catalog/tests/data/262001.fb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/data/262001.fb2 -------------------------------------------------------------------------------- /opds_catalog/tests/data/badfile.fb2: -------------------------------------------------------------------------------- 1 | This not fb2 file for tests 2 | -------------------------------------------------------------------------------- /opds_catalog/tests/data/badfile.zip: -------------------------------------------------------------------------------- 1 | This novalid zip file for tests 2 | -------------------------------------------------------------------------------- /opds_catalog/tests/data/books.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/data/books.zip -------------------------------------------------------------------------------- /opds_catalog/tests/data/mirer.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/data/mirer.epub -------------------------------------------------------------------------------- /opds_catalog/tests/data/robin_cook.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/data/robin_cook.mobi -------------------------------------------------------------------------------- /opds_catalog/tests/test_constance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_constance.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_dl.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_feeds.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_models.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_opdsdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_opdsdb.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_parsers.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_scan.py -------------------------------------------------------------------------------- /opds_catalog/tests/test_zipf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/tests/test_zipf.py -------------------------------------------------------------------------------- /opds_catalog/tmp/emptyfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opds_catalog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/urls.py -------------------------------------------------------------------------------- /opds_catalog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/utils.py -------------------------------------------------------------------------------- /opds_catalog/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | -------------------------------------------------------------------------------- /opds_catalog/zipf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/opds_catalog/zipf.py -------------------------------------------------------------------------------- /raspberry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/raspberry.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/requirements.txt -------------------------------------------------------------------------------- /sopds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sopds/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /sopds/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /sopds/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds/settings.py -------------------------------------------------------------------------------- /sopds/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds/urls.py -------------------------------------------------------------------------------- /sopds/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds/wsgi.py -------------------------------------------------------------------------------- /sopds_web_backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sopds_web_backend/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /sopds_web_backend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/apps.py -------------------------------------------------------------------------------- /sopds_web_backend/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /sopds_web_backend/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /sopds_web_backend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sopds_web_backend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/models.py -------------------------------------------------------------------------------- /sopds_web_backend/settings.py: -------------------------------------------------------------------------------- 1 | HALF_PAGES_LINKS = 3 -------------------------------------------------------------------------------- /sopds_web_backend/static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/admin/css/base.css -------------------------------------------------------------------------------- /sopds_web_backend/static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/admin/css/changelists.css -------------------------------------------------------------------------------- /sopds_web_backend/static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/admin/css/forms.css -------------------------------------------------------------------------------- /sopds_web_backend/static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/admin/css/widgets.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation-flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation-flex.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation-flex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation-flex.min.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation-rtl.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation-rtl.min.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/foundation.min.css -------------------------------------------------------------------------------- /sopds_web_backend/static/css/sopds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/css/sopds.css -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/.DS_Store -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/.fontcustom-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/.fontcustom-data -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/foundation-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/foundation-icons.css -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/foundation-icons.eot -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/foundation-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/foundation-icons.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/foundation-icons.ttf -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/foundation-icons.woff -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/preview.html -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-address-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-address-book.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-alert.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-align-center.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-align-justify.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-align-left.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-align-right.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-anchor.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-annotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-annotate.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-archive.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrow-down.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrow-left.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrow-right.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrow-up.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrows-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrows-expand.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrows-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrows-in.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-arrows-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-arrows-out.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-asl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-asl.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-asterisk.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-at-sign.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-battery-empty.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-battery-full.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-battery-half.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-bitcoin.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-blind.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-bluetooth.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-bold.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-book-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-book-bookmark.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-book.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-bookmark.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-braille.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-burst-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-burst-new.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-burst-sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-burst-sale.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-burst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-burst.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-calendar.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-camera.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-check.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-checkbox.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-clipboard.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-clock.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-cloud.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-comment-minus.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-comment-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-comment-video.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-comment.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-comments.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-compass.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-contrast.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-credit-card.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-crop.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-crown.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-css3.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-database.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-five.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-five.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-four.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-one.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-six.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-six.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-three.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-die-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-die-two.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-dislike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-dislike.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-dollar-bill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-dollar-bill.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-dollar.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-download.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-eject.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-elevator.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-euro.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-eye.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-fast-forward.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-female-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-female-symbol.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-female.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-filter.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-first-aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-first-aid.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-flag.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-folder-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-folder-add.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-folder-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-folder-lock.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-folder.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-foot.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-foundation.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-graph-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-graph-bar.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-graph-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-graph-pie.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-graph-trend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-graph-trend.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-guide-dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-guide-dog.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-hearing-aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-hearing-aid.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-heart.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-home.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-html5.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-indent-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-indent-less.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-indent-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-indent-more.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-info.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-italic.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-key.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-laptop.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-layout.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-lightbulb.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-like.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-link.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-list-bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-list-bullet.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-list-number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-list-number.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-list.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-lock.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-loop.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-mail.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-male-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-male-female.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-male-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-male-symbol.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-male.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-map.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-marker.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-megaphone.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-microphone.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-minus-circle.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-minus.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-mobile-signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-mobile-signal.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-mobile.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-monitor.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-mountains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-mountains.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-music.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-next.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-no-dogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-no-dogs.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-no-smoking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-no-smoking.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-add.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-copy.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-csv.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-delete.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-doc.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-edit.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-export.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-filled.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-multiple.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-pdf.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-remove.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page-search.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-page.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-paint-bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-paint-bucket.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-paperclip.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-pause.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-paw.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-paypal.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-pencil.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-photo.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-play-circle.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-play-video.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-play.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-plus.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-pound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-pound.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-power.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-previous.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-price-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-price-tag.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-print.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-prohibited.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-puzzle.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-quote.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-record.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-refresh.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-results.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-rewind-ten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-rewind-ten.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-rewind.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-rss.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-safety-cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-safety-cone.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-save.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-share.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-sheriff-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-sheriff-badge.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-shield.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-shopping-bag.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-shopping-cart.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-shuffle.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-skull.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-500px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-500px.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-adobe.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-amazon.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-apple.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-bing.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-social-hi5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-social-hi5.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-sound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-sound.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-star.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-stop.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-subscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-subscript.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-target-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-target-two.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-target.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-telephone.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-text-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-text-color.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-thumbnails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-thumbnails.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-ticket.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-torso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-torso.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-torsos-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-torsos-all.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-torsos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-torsos.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-trash.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-trees.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-trophy.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-underline.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-unlink.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-unlock.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-upload.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-usb.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-video.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-volume.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-web.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-wheelchair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-wheelchair.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-widget.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-wrench.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-x-circle.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-x.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-yen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-yen.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-zoom-in.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/foundation-icons/svgs/fi-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/foundation-icons/svgs/fi-zoom-out.svg -------------------------------------------------------------------------------- /sopds_web_backend/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/favicon.ico -------------------------------------------------------------------------------- /sopds_web_backend/static/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/folder.png -------------------------------------------------------------------------------- /sopds_web_backend/static/images/inpx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/inpx.png -------------------------------------------------------------------------------- /sopds_web_backend/static/images/inpx.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/inpx.psd -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_book.jpg -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_icon-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_icon-big.gif -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_icon.gif -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_icon.jpg -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_icon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_icon2.gif -------------------------------------------------------------------------------- /sopds_web_backend/static/images/sopds_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/sopds_logo.gif -------------------------------------------------------------------------------- /sopds_web_backend/static/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/text.png -------------------------------------------------------------------------------- /sopds_web_backend/static/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/images/zip.png -------------------------------------------------------------------------------- /sopds_web_backend/static/js/sopds.js: -------------------------------------------------------------------------------- 1 | $(document).foundation() 2 | -------------------------------------------------------------------------------- /sopds_web_backend/static/js/vendor/foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/js/vendor/foundation.js -------------------------------------------------------------------------------- /sopds_web_backend/static/js/vendor/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/js/vendor/foundation.min.js -------------------------------------------------------------------------------- /sopds_web_backend/static/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/js/vendor/jquery.js -------------------------------------------------------------------------------- /sopds_web_backend/static/js/vendor/what-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/static/js/vendor/what-input.js -------------------------------------------------------------------------------- /sopds_web_backend/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/admin/base.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/admin/base_site.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_authors.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_books.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_books.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_breadcrumbs.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_catalogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_catalogs.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_error.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_footer.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_hello.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_login.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_logo.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_main.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_menu.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_messages.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_selectauthor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_selectauthor.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_selectbook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_selectbook.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_selectgenres.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_selectgenres.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_selectseries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_selectseries.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_series.html -------------------------------------------------------------------------------- /sopds_web_backend/templates/sopds_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/templates/sopds_top.html -------------------------------------------------------------------------------- /sopds_web_backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/urls.py -------------------------------------------------------------------------------- /sopds_web_backend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/sopds_web_backend/views.py -------------------------------------------------------------------------------- /static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/base.css -------------------------------------------------------------------------------- /static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/changelists.css -------------------------------------------------------------------------------- /static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/fonts.css -------------------------------------------------------------------------------- /static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/forms.css -------------------------------------------------------------------------------- /static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/login.css -------------------------------------------------------------------------------- /static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/rtl.css -------------------------------------------------------------------------------- /static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/css/widgets.css -------------------------------------------------------------------------------- /static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/LICENSE -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/README.txt -------------------------------------------------------------------------------- /static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/search.svg -------------------------------------------------------------------------------- /static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/actions.js -------------------------------------------------------------------------------- /static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/calendar.js -------------------------------------------------------------------------------- /static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/cancel.js -------------------------------------------------------------------------------- /static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/change_form.js -------------------------------------------------------------------------------- /static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/collapse.js -------------------------------------------------------------------------------- /static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/core.js -------------------------------------------------------------------------------- /static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/inlines.js -------------------------------------------------------------------------------- /static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/popup_response.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/urlify.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/LICENSE-JQUERY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/jquery/LICENSE-JQUERY.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /static/css/foundation-flex.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation-flex.css -------------------------------------------------------------------------------- /static/css/foundation-flex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation-flex.min.css -------------------------------------------------------------------------------- /static/css/foundation-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation-rtl.css -------------------------------------------------------------------------------- /static/css/foundation-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation-rtl.min.css -------------------------------------------------------------------------------- /static/css/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation.css -------------------------------------------------------------------------------- /static/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/foundation.min.css -------------------------------------------------------------------------------- /static/css/sopds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/css/sopds.css -------------------------------------------------------------------------------- /static/foundation-icons/foundation-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/foundation-icons.css -------------------------------------------------------------------------------- /static/foundation-icons/foundation-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/foundation-icons.eot -------------------------------------------------------------------------------- /static/foundation-icons/foundation-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/foundation-icons.svg -------------------------------------------------------------------------------- /static/foundation-icons/foundation-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/foundation-icons.ttf -------------------------------------------------------------------------------- /static/foundation-icons/foundation-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/foundation-icons.woff -------------------------------------------------------------------------------- /static/foundation-icons/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/preview.html -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-address-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-address-book.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-alert.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-align-center.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-align-justify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-align-justify.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-align-left.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-align-right.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-anchor.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-annotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-annotate.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-archive.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrow-down.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrow-left.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrow-right.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrow-up.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrows-compress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrows-compress.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrows-expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrows-expand.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrows-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrows-in.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-arrows-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-arrows-out.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-asl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-asl.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-asterisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-asterisk.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-at-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-at-sign.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-background-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-background-color.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-battery-empty.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-battery-full.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-battery-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-battery-half.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-bitcoin-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-bitcoin-circle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-bitcoin.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-blind.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-bluetooth.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-bold.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-book-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-book-bookmark.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-book.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-bookmark.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-braille.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-burst-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-burst-new.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-burst-sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-burst-sale.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-burst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-burst.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-calendar.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-camera.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-check.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-checkbox.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-clipboard-notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-clipboard-notes.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-clipboard-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-clipboard-pencil.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-clipboard.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-clock.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-closed-caption.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-closed-caption.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-cloud.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-comment-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-comment-minus.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-comment-quotes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-comment-quotes.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-comment-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-comment-video.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-comment.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-comments.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-compass.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-contrast.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-credit-card.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-crop.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-crown.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-css3.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-database.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-five.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-five.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-four.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-four.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-one.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-six.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-six.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-three.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-die-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-die-two.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-dislike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-dislike.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-dollar-bill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-dollar-bill.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-dollar.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-download.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-eject.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-elevator.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-euro.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-eye.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-fast-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-fast-forward.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-female-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-female-symbol.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-female.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-filter.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-first-aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-first-aid.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-flag.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-folder-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-folder-add.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-folder-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-folder-lock.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-folder.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-foot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-foot.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-foundation.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-graph-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-graph-bar.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-graph-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-graph-horizontal.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-graph-pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-graph-pie.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-graph-trend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-graph-trend.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-guide-dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-guide-dog.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-hearing-aid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-hearing-aid.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-heart.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-home.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-html5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-html5.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-indent-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-indent-less.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-indent-more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-indent-more.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-info.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-italic.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-key.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-laptop.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-layout.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-lightbulb.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-like.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-link.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-list-bullet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-list-bullet.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-list-number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-list-number.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-list-thumbnails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-list-thumbnails.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-list.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-lock.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-loop.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-magnifying-glass.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-mail.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-male-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-male-female.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-male-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-male-symbol.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-male.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-map.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-marker.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-megaphone.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-microphone.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-minus-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-minus-circle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-minus.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-mobile-signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-mobile-signal.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-mobile.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-monitor.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-mountains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-mountains.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-music.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-next.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-no-dogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-no-dogs.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-no-smoking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-no-smoking.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-add.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-copy.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-csv.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-delete.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-doc.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-edit.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-export-csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-export-csv.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-export-doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-export-doc.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-export-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-export-pdf.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-export.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-filled.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-multiple.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-pdf.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-remove.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page-search.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-page.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-paint-bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-paint-bucket.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-paperclip.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-pause.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-paw.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-paypal.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-pencil.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-photo.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-play-circle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-play-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-play-video.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-play.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-plus.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-pound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-pound.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-power.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-previous.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-price-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-price-tag.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-pricetag-multiple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-pricetag-multiple.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-print.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-prohibited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-prohibited.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-projection-screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-projection-screen.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-puzzle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-puzzle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-quote.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-record.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-refresh.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-results-demographics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-results-demographics.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-results.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-results.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-rewind-ten.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-rewind-ten.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-rewind.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-rss.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-safety-cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-safety-cone.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-save.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-share.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-sheriff-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-sheriff-badge.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-shield.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-shopping-bag.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-shopping-cart.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-shuffle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-skull.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-500px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-500px.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-adobe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-adobe.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-amazon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-amazon.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-android.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-apple.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-behance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-behance.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-bing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-bing.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-blogger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-blogger.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-delicious.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-delicious.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-designer-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-designer-news.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-deviant-art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-deviant-art.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-digg.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-dribbble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-dribbble.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-drive.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-dropbox.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-evernote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-evernote.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-facebook.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-flickr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-flickr.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-forrst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-forrst.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-foursquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-foursquare.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-game-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-game-center.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-github.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-google-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-google-plus.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-hacker-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-hacker-news.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-hi5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-hi5.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-instagram.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-joomla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-joomla.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-lastfm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-lastfm.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-linkedin.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-medium.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-myspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-myspace.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-orkut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-orkut.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-path.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-path.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-picasa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-picasa.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-pinterest.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-rdio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-rdio.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-reddit.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-skillshare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-skillshare.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-skype.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-smashing-mag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-smashing-mag.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-snapchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-snapchat.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-spotify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-spotify.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-squidoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-squidoo.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-stack-overflow.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-steam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-steam.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-stumbleupon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-stumbleupon.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-treehouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-treehouse.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-tumblr.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-twitter.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-vimeo.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-windows.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-xbox.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-yahoo.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-yelp.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-youtube.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-zerply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-zerply.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-social-zurb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-social-zurb.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-sound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-sound.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-star.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-stop.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-strikethrough.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-subscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-subscript.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-superscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-superscript.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-tablet-landscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-tablet-landscape.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-tablet-portrait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-tablet-portrait.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-target-two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-target-two.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-target.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-telephone-accessible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-telephone-accessible.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-telephone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-telephone.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-text-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-text-color.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-thumbnails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-thumbnails.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-ticket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-ticket.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torso-business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torso-business.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torso-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torso-female.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torso.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torsos-all-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torsos-all-female.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torsos-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torsos-all.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torsos-female-male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torsos-female-male.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torsos-male-female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torsos-male-female.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-torsos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-torsos.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-trash.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-trees.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-trophy.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-underline.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-universal-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-universal-access.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-unlink.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-unlock.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-upload-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-upload-cloud.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-upload.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-usb.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-video.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-volume-none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-volume-none.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-volume-strike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-volume-strike.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-volume.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-web.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-wheelchair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-wheelchair.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-widget.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-wrench.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-x-circle.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-x.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-yen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-yen.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-zoom-in.svg -------------------------------------------------------------------------------- /static/foundation-icons/svgs/fi-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/foundation-icons/svgs/fi-zoom-out.svg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/folder.png -------------------------------------------------------------------------------- /static/images/inpx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/inpx.png -------------------------------------------------------------------------------- /static/images/inpx.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/inpx.psd -------------------------------------------------------------------------------- /static/images/nocover-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/nocover-big.jpg -------------------------------------------------------------------------------- /static/images/nocover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/nocover.jpg -------------------------------------------------------------------------------- /static/images/sopds_book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_book.jpg -------------------------------------------------------------------------------- /static/images/sopds_icon-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_icon-big.gif -------------------------------------------------------------------------------- /static/images/sopds_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_icon.gif -------------------------------------------------------------------------------- /static/images/sopds_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_icon.jpg -------------------------------------------------------------------------------- /static/images/sopds_icon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_icon2.gif -------------------------------------------------------------------------------- /static/images/sopds_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/sopds_logo.gif -------------------------------------------------------------------------------- /static/images/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/text.png -------------------------------------------------------------------------------- /static/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/images/zip.png -------------------------------------------------------------------------------- /static/js/sopds.js: -------------------------------------------------------------------------------- 1 | $(document).foundation() 2 | -------------------------------------------------------------------------------- /static/js/vendor/foundation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/js/vendor/foundation.js -------------------------------------------------------------------------------- /static/js/vendor/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/js/vendor/foundation.min.js -------------------------------------------------------------------------------- /static/js/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/js/vendor/jquery.js -------------------------------------------------------------------------------- /static/js/vendor/what-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitshel/sopds/HEAD/static/js/vendor/what-input.js --------------------------------------------------------------------------------