├── .gitignore ├── MeetingRecord.md ├── README.md ├── RequirementAna.md ├── ScoreManagement ├── .gitignore ├── ScoreManagement │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── settings.cpython-36.pyc │ │ └── urls.cpython-36.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── app │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ └── models.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190415_1817.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── tests.py │ └── views.py ├── init_basic_table.sql ├── manage.py ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── css │ │ └── style.css │ ├── dist │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── AdminLTE.min.css │ │ │ └── skins │ │ │ │ ├── _all-skins.css │ │ │ │ ├── _all-skins.min.css │ │ │ │ ├── skin-black-light.css │ │ │ │ ├── skin-black-light.min.css │ │ │ │ ├── skin-black.css │ │ │ │ ├── skin-black.min.css │ │ │ │ ├── skin-blue-light.css │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ ├── skin-blue.css │ │ │ │ ├── skin-blue.min.css │ │ │ │ ├── skin-green-light.css │ │ │ │ ├── skin-green-light.min.css │ │ │ │ ├── skin-green.css │ │ │ │ ├── skin-green.min.css │ │ │ │ ├── skin-purple-light.css │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ ├── skin-purple.css │ │ │ │ ├── skin-purple.min.css │ │ │ │ ├── skin-red-light.css │ │ │ │ ├── skin-red-light.min.css │ │ │ │ ├── skin-red.css │ │ │ │ ├── skin-red.min.css │ │ │ │ ├── skin-yellow-light.css │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ ├── skin-yellow.css │ │ │ │ └── skin-yellow.min.css │ │ ├── img │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── default-50x50.gif │ │ │ ├── icons.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ │ └── js │ │ │ ├── app.js │ │ │ ├── app.min.js │ │ │ ├── demo.js │ │ │ └── pages │ │ │ ├── dashboard.js │ │ │ └── dashboard2.js │ ├── img │ │ ├── blackcar.jpg │ │ ├── home-ad.jpg │ │ ├── moveup.jpg │ │ └── success.jpg │ ├── js │ │ ├── app.js │ │ └── echarts.js │ └── plugins │ │ ├── bootstrap-slider │ │ ├── bootstrap-slider.js │ │ └── slider.css │ │ ├── bootstrap-wysihtml5 │ │ ├── bootstrap3-wysihtml5.all.js │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ ├── bootstrap3-wysihtml5.css │ │ └── bootstrap3-wysihtml5.min.css │ │ ├── chartjs │ │ ├── Chart.js │ │ └── Chart.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── css │ │ │ │ └── samples.css │ │ │ ├── img │ │ │ │ ├── github-top.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── header-separator.png │ │ │ │ ├── logo.png │ │ │ │ └── navigation-tip.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── sample.js │ │ │ │ └── sf.js │ │ │ ├── old │ │ │ │ ├── ajax.html │ │ │ │ ├── api.html │ │ │ │ ├── appendto.html │ │ │ │ ├── assets │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ ├── posteddata.php │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── datafiltering.html │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── divreplace.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── index.html │ │ │ │ ├── inlineall.html │ │ │ │ ├── inlinebycode.html │ │ │ │ ├── inlinetextarea.html │ │ │ │ ├── jquery.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── readonly.html │ │ │ │ ├── replacebyclass.html │ │ │ │ ├── replacebycode.html │ │ │ │ ├── sample.css │ │ │ │ ├── sample.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ ├── tabindex.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ ├── uicolor.html │ │ │ │ ├── uilanguages.html │ │ │ │ ├── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ │ └── xhtmlstyle.html │ │ │ └── toolbarconfigurator │ │ │ │ ├── css │ │ │ │ └── fontello.css │ │ │ │ ├── font │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── config.json │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.svg │ │ │ │ ├── fontello.ttf │ │ │ │ └── fontello.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ ├── toolbarmodifier.js │ │ │ │ └── toolbartextmodifier.js │ │ │ │ └── lib │ │ │ │ └── codemirror │ │ │ │ ├── LICENSE │ │ │ │ ├── codemirror.css │ │ │ │ ├── codemirror.js │ │ │ │ ├── javascript.js │ │ │ │ ├── neo.css │ │ │ │ ├── show-hint.css │ │ │ │ └── show-hint.js │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── colorpicker │ │ ├── bootstrap-colorpicker.css │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-colorpicker.min.css │ │ ├── bootstrap-colorpicker.min.js │ │ └── img │ │ │ ├── alpha-horizontal.png │ │ │ ├── alpha.png │ │ │ ├── hue-horizontal.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── datatables │ │ ├── dataTables.bootstrap.css │ │ ├── dataTables.bootstrap.js │ │ ├── dataTables.bootstrap.min.js │ │ ├── extensions │ │ │ ├── AutoFill │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── columns.html │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ ├── fill-both.html │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── step-callback.html │ │ │ │ ├── images │ │ │ │ │ └── filler.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ ├── ColReorder │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ ├── col_filter.html │ │ │ │ │ ├── colvis.html │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── predefined.html │ │ │ │ │ ├── realtime.html │ │ │ │ │ ├── reset.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ ├── server_side.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── state_save.html │ │ │ │ ├── images │ │ │ │ │ └── insert.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── ColVis │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ ├── examples │ │ │ │ │ ├── button_order.html │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ ├── group_columns.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── new_init.html │ │ │ │ │ ├── restore.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── title_callback.html │ │ │ │ │ ├── two_tables.html │ │ │ │ │ └── two_tables_identical.html │ │ │ │ └── js │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ ├── FixedColumns │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── col_filter.html │ │ │ │ │ ├── colvis.html │ │ │ │ │ ├── css_size.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── index_column.html │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ ├── right_column.html │ │ │ │ │ ├── rowspan.html │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ └── two_columns.html │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ ├── FixedHeader │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── header_footer.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── simple.html │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ ├── two_tables.html │ │ │ │ │ └── zIndexes.html │ │ │ │ └── js │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ ├── KeyTable │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── events.html │ │ │ │ │ ├── html.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── scrolling.html │ │ │ │ │ └── simple.html │ │ │ │ └── js │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ ├── Responsive │ │ │ │ ├── License.txt │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ ├── examples │ │ │ │ │ ├── child-rows │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ ├── display-control │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── initialisation │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ └── option.html │ │ │ │ │ └── styling │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── scrolling.html │ │ │ │ └── js │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ ├── Scroller │ │ │ │ ├── Readme.txt │ │ │ │ ├── css │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ ├── examples │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ ├── data │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ └── ssp.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ ├── simple.html │ │ │ │ │ └── state_saving.html │ │ │ │ ├── images │ │ │ │ │ └── loading-background.png │ │ │ │ └── js │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ └── TableTools │ │ │ │ ├── Readme.md │ │ │ │ ├── css │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ ├── examples │ │ │ │ ├── ajax.html │ │ │ │ ├── alter_buttons.html │ │ │ │ ├── bootstrap.html │ │ │ │ ├── button_text.html │ │ │ │ ├── collection.html │ │ │ │ ├── defaults.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── multi_instance.html │ │ │ │ ├── multiple_tables.html │ │ │ │ ├── new_init.html │ │ │ │ ├── pdf_message.html │ │ │ │ ├── plug-in.html │ │ │ │ ├── select_column.html │ │ │ │ ├── select_multi.html │ │ │ │ ├── select_os.html │ │ │ │ ├── select_single.html │ │ │ │ ├── simple.html │ │ │ │ └── swf_path.html │ │ │ │ ├── images │ │ │ │ ├── collection.png │ │ │ │ ├── collection_hover.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_hover.png │ │ │ │ ├── csv.png │ │ │ │ ├── csv_hover.png │ │ │ │ ├── pdf.png │ │ │ │ ├── pdf_hover.png │ │ │ │ ├── print.png │ │ │ │ ├── print_hover.png │ │ │ │ ├── psd │ │ │ │ │ ├── collection.psd │ │ │ │ │ ├── copy document.psd │ │ │ │ │ ├── file_types.psd │ │ │ │ │ └── printer.psd │ │ │ │ ├── xls.png │ │ │ │ └── xls_hover.png │ │ │ │ ├── js │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ └── swf │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ └── copy_csv_xls_pdf.swf │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── jquery.dataTables.css │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.css │ │ ├── jquery.dataTables.min.js │ │ └── jquery.dataTables_themeroller.css │ │ ├── datepicker │ │ ├── bootstrap-datepicker.js │ │ ├── datepicker3.css │ │ └── locales │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ ├── bootstrap-datepicker.az.js │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.et.js │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.no.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── daterangepicker │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── moment.js │ │ └── moment.min.js │ │ ├── echarts.js │ │ ├── fastclick │ │ ├── fastclick.js │ │ └── fastclick.min.js │ │ ├── flot │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.time.min.js │ │ ├── font-awesome-4.6.3 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── fullcalendar │ │ ├── fullcalendar.css │ │ ├── fullcalendar.js │ │ ├── fullcalendar.min.css │ │ ├── fullcalendar.min.js │ │ └── fullcalendar.print.css │ │ ├── iCheck │ │ ├── all.css │ │ ├── flat │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── flat.css │ │ │ ├── flat.png │ │ │ ├── flat@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── futurico │ │ │ ├── futurico.css │ │ │ ├── futurico.png │ │ │ └── futurico@2x.png │ │ ├── icheck.js │ │ ├── icheck.min.js │ │ ├── line │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── blue.css │ │ │ ├── green.css │ │ │ ├── grey.css │ │ │ ├── line.css │ │ │ ├── line.png │ │ │ ├── line@2x.png │ │ │ ├── orange.css │ │ │ ├── pink.css │ │ │ ├── purple.css │ │ │ ├── red.css │ │ │ └── yellow.css │ │ ├── minimal │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── minimal.css │ │ │ ├── minimal.png │ │ │ ├── minimal@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── polaris │ │ │ ├── polaris.css │ │ │ ├── polaris.png │ │ │ └── polaris@2x.png │ │ └── square │ │ │ ├── _all.css │ │ │ ├── aero.css │ │ │ ├── aero.png │ │ │ ├── aero@2x.png │ │ │ ├── blue.css │ │ │ ├── blue.png │ │ │ ├── blue@2x.png │ │ │ ├── green.css │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ ├── grey.css │ │ │ ├── grey.png │ │ │ ├── grey@2x.png │ │ │ ├── orange.css │ │ │ ├── orange.png │ │ │ ├── orange@2x.png │ │ │ ├── pink.css │ │ │ ├── pink.png │ │ │ ├── pink@2x.png │ │ │ ├── purple.css │ │ │ ├── purple.png │ │ │ ├── purple@2x.png │ │ │ ├── red.css │ │ │ ├── red.png │ │ │ ├── red@2x.png │ │ │ ├── square.css │ │ │ ├── square.png │ │ │ ├── square@2x.png │ │ │ ├── yellow.css │ │ │ ├── yellow.png │ │ │ └── yellow@2x.png │ │ ├── input-mask │ │ ├── jquery.inputmask.date.extensions.js │ │ ├── jquery.inputmask.extensions.js │ │ ├── jquery.inputmask.js │ │ ├── jquery.inputmask.numeric.extensions.js │ │ ├── jquery.inputmask.phone.extensions.js │ │ ├── jquery.inputmask.regex.extensions.js │ │ └── phone-codes │ │ │ ├── phone-be.json │ │ │ ├── phone-codes.json │ │ │ └── readme.txt │ │ ├── ionicons-2.0.1 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── bower.json │ │ ├── builder │ │ │ ├── build_data.json │ │ │ ├── cheatsheet │ │ │ │ ├── icon-row.html │ │ │ │ └── template.html │ │ │ ├── generate.py │ │ │ ├── manifest.json │ │ │ └── scripts │ │ │ │ ├── eotlitetool.py │ │ │ │ ├── generate_font.py │ │ │ │ └── sfnt2woff │ │ ├── cheatsheet.html │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── ionicons.css │ │ │ └── ionicons.min.css │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ ├── less │ │ │ ├── _ionicons-font.less │ │ │ ├── _ionicons-icons.less │ │ │ ├── _ionicons-variables.less │ │ │ └── ionicons.less │ │ ├── png │ │ │ └── 512 │ │ │ │ ├── alert-circled.png │ │ │ │ ├── alert.png │ │ │ │ ├── android-add-contact.png │ │ │ │ ├── android-add.png │ │ │ │ ├── android-alarm.png │ │ │ │ ├── android-archive.png │ │ │ │ ├── android-arrow-back.png │ │ │ │ ├── android-arrow-down-left.png │ │ │ │ ├── android-arrow-down-right.png │ │ │ │ ├── android-arrow-forward.png │ │ │ │ ├── android-arrow-up-left.png │ │ │ │ ├── android-arrow-up-right.png │ │ │ │ ├── android-battery.png │ │ │ │ ├── android-book.png │ │ │ │ ├── android-calendar.png │ │ │ │ ├── android-call.png │ │ │ │ ├── android-camera.png │ │ │ │ ├── android-chat.png │ │ │ │ ├── android-checkmark.png │ │ │ │ ├── android-clock.png │ │ │ │ ├── android-close.png │ │ │ │ ├── android-contact.png │ │ │ │ ├── android-contacts.png │ │ │ │ ├── android-data.png │ │ │ │ ├── android-developer.png │ │ │ │ ├── android-display.png │ │ │ │ ├── android-download.png │ │ │ │ ├── android-drawer.png │ │ │ │ ├── android-dropdown.png │ │ │ │ ├── android-earth.png │ │ │ │ ├── android-folder.png │ │ │ │ ├── android-forums.png │ │ │ │ ├── android-friends.png │ │ │ │ ├── android-hand.png │ │ │ │ ├── android-image.png │ │ │ │ ├── android-inbox.png │ │ │ │ ├── android-information.png │ │ │ │ ├── android-keypad.png │ │ │ │ ├── android-lightbulb.png │ │ │ │ ├── android-locate.png │ │ │ │ ├── android-location.png │ │ │ │ ├── android-mail.png │ │ │ │ ├── android-microphone.png │ │ │ │ ├── android-mixer.png │ │ │ │ ├── android-more.png │ │ │ │ ├── android-note.png │ │ │ │ ├── android-playstore.png │ │ │ │ ├── android-printer.png │ │ │ │ ├── android-promotion.png │ │ │ │ ├── android-reminder.png │ │ │ │ ├── android-remove.png │ │ │ │ ├── android-search.png │ │ │ │ ├── android-send.png │ │ │ │ ├── android-settings.png │ │ │ │ ├── android-share.png │ │ │ │ ├── android-social-user.png │ │ │ │ ├── android-social.png │ │ │ │ ├── android-sort.png │ │ │ │ ├── android-stair-drawer.png │ │ │ │ ├── android-star.png │ │ │ │ ├── android-stopwatch.png │ │ │ │ ├── android-storage.png │ │ │ │ ├── android-system-back.png │ │ │ │ ├── android-system-home.png │ │ │ │ ├── android-system-windows.png │ │ │ │ ├── android-timer.png │ │ │ │ ├── android-trash.png │ │ │ │ ├── android-user-menu.png │ │ │ │ ├── android-volume.png │ │ │ │ ├── android-wifi.png │ │ │ │ ├── aperture.png │ │ │ │ ├── archive.png │ │ │ │ ├── arrow-down-a.png │ │ │ │ ├── arrow-down-b.png │ │ │ │ ├── arrow-down-c.png │ │ │ │ ├── arrow-expand.png │ │ │ │ ├── arrow-graph-down-left.png │ │ │ │ ├── arrow-graph-down-right.png │ │ │ │ ├── arrow-graph-up-left.png │ │ │ │ ├── arrow-graph-up-right.png │ │ │ │ ├── arrow-left-a.png │ │ │ │ ├── arrow-left-b.png │ │ │ │ ├── arrow-left-c.png │ │ │ │ ├── arrow-move.png │ │ │ │ ├── arrow-resize.png │ │ │ │ ├── arrow-return-left.png │ │ │ │ ├── arrow-return-right.png │ │ │ │ ├── arrow-right-a.png │ │ │ │ ├── arrow-right-b.png │ │ │ │ ├── arrow-right-c.png │ │ │ │ ├── arrow-shrink.png │ │ │ │ ├── arrow-swap.png │ │ │ │ ├── arrow-up-a.png │ │ │ │ ├── arrow-up-b.png │ │ │ │ ├── arrow-up-c.png │ │ │ │ ├── asterisk.png │ │ │ │ ├── at.png │ │ │ │ ├── bag.png │ │ │ │ ├── battery-charging.png │ │ │ │ ├── battery-empty.png │ │ │ │ ├── battery-full.png │ │ │ │ ├── battery-half.png │ │ │ │ ├── battery-low.png │ │ │ │ ├── beaker.png │ │ │ │ ├── beer.png │ │ │ │ ├── bluetooth.png │ │ │ │ ├── bonfire.png │ │ │ │ ├── bookmark.png │ │ │ │ ├── briefcase.png │ │ │ │ ├── bug.png │ │ │ │ ├── calculator.png │ │ │ │ ├── calendar.png │ │ │ │ ├── camera.png │ │ │ │ ├── card.png │ │ │ │ ├── cash.png │ │ │ │ ├── chatbox-working.png │ │ │ │ ├── chatbox.png │ │ │ │ ├── chatboxes.png │ │ │ │ ├── chatbubble-working.png │ │ │ │ ├── chatbubble.png │ │ │ │ ├── chatbubbles.png │ │ │ │ ├── checkmark-circled.png │ │ │ │ ├── checkmark-round.png │ │ │ │ ├── checkmark.png │ │ │ │ ├── chevron-down.png │ │ │ │ ├── chevron-left.png │ │ │ │ ├── chevron-right.png │ │ │ │ ├── chevron-up.png │ │ │ │ ├── clipboard.png │ │ │ │ ├── clock.png │ │ │ │ ├── close-circled.png │ │ │ │ ├── close-round.png │ │ │ │ ├── close.png │ │ │ │ ├── closed-captioning.png │ │ │ │ ├── cloud.png │ │ │ │ ├── code-download.png │ │ │ │ ├── code-working.png │ │ │ │ ├── code.png │ │ │ │ ├── coffee.png │ │ │ │ ├── compass.png │ │ │ │ ├── compose.png │ │ │ │ ├── connection-bars.png │ │ │ │ ├── contrast.png │ │ │ │ ├── cube.png │ │ │ │ ├── disc.png │ │ │ │ ├── document-text.png │ │ │ │ ├── document.png │ │ │ │ ├── drag.png │ │ │ │ ├── earth.png │ │ │ │ ├── edit.png │ │ │ │ ├── egg.png │ │ │ │ ├── eject.png │ │ │ │ ├── email.png │ │ │ │ ├── eye-disabled.png │ │ │ │ ├── eye.png │ │ │ │ ├── female.png │ │ │ │ ├── filing.png │ │ │ │ ├── film-marker.png │ │ │ │ ├── fireball.png │ │ │ │ ├── flag.png │ │ │ │ ├── flame.png │ │ │ │ ├── flash-off.png │ │ │ │ ├── flash.png │ │ │ │ ├── flask.png │ │ │ │ ├── folder.png │ │ │ │ ├── fork-repo.png │ │ │ │ ├── fork.png │ │ │ │ ├── forward.png │ │ │ │ ├── funnel.png │ │ │ │ ├── game-controller-a.png │ │ │ │ ├── game-controller-b.png │ │ │ │ ├── gear-a.png │ │ │ │ ├── gear-b.png │ │ │ │ ├── grid.png │ │ │ │ ├── hammer.png │ │ │ │ ├── happy.png │ │ │ │ ├── headphone.png │ │ │ │ ├── heart-broken.png │ │ │ │ ├── heart.png │ │ │ │ ├── help-buoy.png │ │ │ │ ├── help-circled.png │ │ │ │ ├── help.png │ │ │ │ ├── home.png │ │ │ │ ├── icecream.png │ │ │ │ ├── icon-social-google-plus-outline.png │ │ │ │ ├── icon-social-google-plus.png │ │ │ │ ├── image.png │ │ │ │ ├── images.png │ │ │ │ ├── information-circled.png │ │ │ │ ├── information.png │ │ │ │ ├── ionic.png │ │ │ │ ├── ios7-alarm-outline.png │ │ │ │ ├── ios7-alarm.png │ │ │ │ ├── ios7-albums-outline.png │ │ │ │ ├── ios7-albums.png │ │ │ │ ├── ios7-americanfootball-outline.png │ │ │ │ ├── ios7-americanfootball.png │ │ │ │ ├── ios7-analytics-outline.png │ │ │ │ ├── ios7-analytics.png │ │ │ │ ├── ios7-arrow-back.png │ │ │ │ ├── ios7-arrow-down.png │ │ │ │ ├── ios7-arrow-forward.png │ │ │ │ ├── ios7-arrow-left.png │ │ │ │ ├── ios7-arrow-right.png │ │ │ │ ├── ios7-arrow-thin-down.png │ │ │ │ ├── ios7-arrow-thin-left.png │ │ │ │ ├── ios7-arrow-thin-right.png │ │ │ │ ├── ios7-arrow-thin-up.png │ │ │ │ ├── ios7-arrow-up.png │ │ │ │ ├── ios7-at-outline.png │ │ │ │ ├── ios7-at.png │ │ │ │ ├── ios7-barcode-outline.png │ │ │ │ ├── ios7-barcode.png │ │ │ │ ├── ios7-baseball-outline.png │ │ │ │ ├── ios7-baseball.png │ │ │ │ ├── ios7-basketball-outline.png │ │ │ │ ├── ios7-basketball.png │ │ │ │ ├── ios7-bell-outline.png │ │ │ │ ├── ios7-bell.png │ │ │ │ ├── ios7-bolt-outline.png │ │ │ │ ├── ios7-bolt.png │ │ │ │ ├── ios7-bookmarks-outline.png │ │ │ │ ├── ios7-bookmarks.png │ │ │ │ ├── ios7-box-outline.png │ │ │ │ ├── ios7-box.png │ │ │ │ ├── ios7-briefcase-outline.png │ │ │ │ ├── ios7-briefcase.png │ │ │ │ ├── ios7-browsers-outline.png │ │ │ │ ├── ios7-browsers.png │ │ │ │ ├── ios7-calculator-outline.png │ │ │ │ ├── ios7-calculator.png │ │ │ │ ├── ios7-calendar-outline.png │ │ │ │ ├── ios7-calendar.png │ │ │ │ ├── ios7-camera-outline.png │ │ │ │ ├── ios7-camera.png │ │ │ │ ├── ios7-cart-outline.png │ │ │ │ ├── ios7-cart.png │ │ │ │ ├── ios7-chatboxes-outline.png │ │ │ │ ├── ios7-chatboxes.png │ │ │ │ ├── ios7-chatbubble-outline.png │ │ │ │ ├── ios7-chatbubble.png │ │ │ │ ├── ios7-checkmark-empty.png │ │ │ │ ├── ios7-checkmark-outline.png │ │ │ │ ├── ios7-checkmark.png │ │ │ │ ├── ios7-circle-filled.png │ │ │ │ ├── ios7-circle-outline.png │ │ │ │ ├── ios7-clock-outline.png │ │ │ │ ├── ios7-clock.png │ │ │ │ ├── ios7-close-empty.png │ │ │ │ ├── ios7-close-outline.png │ │ │ │ ├── ios7-close.png │ │ │ │ ├── ios7-cloud-download-outline.png │ │ │ │ ├── ios7-cloud-download.png │ │ │ │ ├── ios7-cloud-outline.png │ │ │ │ ├── ios7-cloud-upload-outline.png │ │ │ │ ├── ios7-cloud-upload.png │ │ │ │ ├── ios7-cloud.png │ │ │ │ ├── ios7-cloudy-night-outline.png │ │ │ │ ├── ios7-cloudy-night.png │ │ │ │ ├── ios7-cloudy-outline.png │ │ │ │ ├── ios7-cloudy.png │ │ │ │ ├── ios7-cog-outline.png │ │ │ │ ├── ios7-cog.png │ │ │ │ ├── ios7-compose-outline.png │ │ │ │ ├── ios7-compose.png │ │ │ │ ├── ios7-contact-outline.png │ │ │ │ ├── ios7-contact.png │ │ │ │ ├── ios7-copy-outline.png │ │ │ │ ├── ios7-copy.png │ │ │ │ ├── ios7-download-outline.png │ │ │ │ ├── ios7-download.png │ │ │ │ ├── ios7-drag.png │ │ │ │ ├── ios7-email-outline.png │ │ │ │ ├── ios7-email.png │ │ │ │ ├── ios7-expand.png │ │ │ │ ├── ios7-eye-outline.png │ │ │ │ ├── ios7-eye.png │ │ │ │ ├── ios7-fastforward-outline.png │ │ │ │ ├── ios7-fastforward.png │ │ │ │ ├── ios7-filing-outline.png │ │ │ │ ├── ios7-filing.png │ │ │ │ ├── ios7-film-outline.png │ │ │ │ ├── ios7-film.png │ │ │ │ ├── ios7-flag-outline.png │ │ │ │ ├── ios7-flag.png │ │ │ │ ├── ios7-folder-outline.png │ │ │ │ ├── ios7-folder.png │ │ │ │ ├── ios7-football-outline.png │ │ │ │ ├── ios7-football.png │ │ │ │ ├── ios7-gear-outline.png │ │ │ │ ├── ios7-gear.png │ │ │ │ ├── ios7-glasses-outline.png │ │ │ │ ├── ios7-glasses.png │ │ │ │ ├── ios7-heart-outline.png │ │ │ │ ├── ios7-heart.png │ │ │ │ ├── ios7-help-empty.png │ │ │ │ ├── ios7-help-outline.png │ │ │ │ ├── ios7-help.png │ │ │ │ ├── ios7-home-outline.png │ │ │ │ ├── ios7-home.png │ │ │ │ ├── ios7-infinite-outline.png │ │ │ │ ├── ios7-infinite.png │ │ │ │ ├── ios7-information-empty.png │ │ │ │ ├── ios7-information-outline.png │ │ │ │ ├── ios7-information.png │ │ │ │ ├── ios7-ionic-outline.png │ │ │ │ ├── ios7-keypad-outline.png │ │ │ │ ├── ios7-keypad.png │ │ │ │ ├── ios7-lightbulb-outline.png │ │ │ │ ├── ios7-lightbulb.png │ │ │ │ ├── ios7-location-outline.png │ │ │ │ ├── ios7-location.png │ │ │ │ ├── ios7-locked-outline.png │ │ │ │ ├── ios7-locked.png │ │ │ │ ├── ios7-loop-strong.png │ │ │ │ ├── ios7-loop.png │ │ │ │ ├── ios7-medkit-outline.png │ │ │ │ ├── ios7-medkit.png │ │ │ │ ├── ios7-mic-off.png │ │ │ │ ├── ios7-mic-outline.png │ │ │ │ ├── ios7-mic.png │ │ │ │ ├── ios7-minus-empty.png │ │ │ │ ├── ios7-minus-outline.png │ │ │ │ ├── ios7-minus.png │ │ │ │ ├── ios7-monitor-outline.png │ │ │ │ ├── ios7-monitor.png │ │ │ │ ├── ios7-moon-outline.png │ │ │ │ ├── ios7-moon.png │ │ │ │ ├── ios7-more-outline.png │ │ │ │ ├── ios7-more.png │ │ │ │ ├── ios7-musical-note.png │ │ │ │ ├── ios7-musical-notes.png │ │ │ │ ├── ios7-navigate-outline.png │ │ │ │ ├── ios7-navigate.png │ │ │ │ ├── ios7-paper-outline.png │ │ │ │ ├── ios7-paper.png │ │ │ │ ├── ios7-paperplane-outline.png │ │ │ │ ├── ios7-paperplane.png │ │ │ │ ├── ios7-partlysunny-outline.png │ │ │ │ ├── ios7-partlysunny.png │ │ │ │ ├── ios7-pause-outline.png │ │ │ │ ├── ios7-pause.png │ │ │ │ ├── ios7-paw-outline.png │ │ │ │ ├── ios7-paw.png │ │ │ │ ├── ios7-people-outline.png │ │ │ │ ├── ios7-people.png │ │ │ │ ├── ios7-person-outline.png │ │ │ │ ├── ios7-person.png │ │ │ │ ├── ios7-personadd-outline.png │ │ │ │ ├── ios7-personadd.png │ │ │ │ ├── ios7-photos-outline.png │ │ │ │ ├── ios7-photos.png │ │ │ │ ├── ios7-pie-outline.png │ │ │ │ ├── ios7-pie.png │ │ │ │ ├── ios7-play-outline.png │ │ │ │ ├── ios7-play.png │ │ │ │ ├── ios7-plus-empty.png │ │ │ │ ├── ios7-plus-outline.png │ │ │ │ ├── ios7-plus.png │ │ │ │ ├── ios7-pricetag-outline.png │ │ │ │ ├── ios7-pricetag.png │ │ │ │ ├── ios7-pricetags-outline.png │ │ │ │ ├── ios7-pricetags.png │ │ │ │ ├── ios7-printer-outline.png │ │ │ │ ├── ios7-printer.png │ │ │ │ ├── ios7-pulse-strong.png │ │ │ │ ├── ios7-pulse.png │ │ │ │ ├── ios7-rainy-outline.png │ │ │ │ ├── ios7-rainy.png │ │ │ │ ├── ios7-recording-outline.png │ │ │ │ ├── ios7-recording.png │ │ │ │ ├── ios7-redo-outline.png │ │ │ │ ├── ios7-redo.png │ │ │ │ ├── ios7-refresh-empty.png │ │ │ │ ├── ios7-refresh-outline.png │ │ │ │ ├── ios7-refresh.png │ │ │ │ ├── ios7-reload.png │ │ │ │ ├── ios7-reverse-camera-outline.png │ │ │ │ ├── ios7-reverse-camera.png │ │ │ │ ├── ios7-rewind-outline.png │ │ │ │ ├── ios7-rewind.png │ │ │ │ ├── ios7-search-strong.png │ │ │ │ ├── ios7-search.png │ │ │ │ ├── ios7-settings-strong.png │ │ │ │ ├── ios7-settings.png │ │ │ │ ├── ios7-shrink.png │ │ │ │ ├── ios7-skipbackward-outline.png │ │ │ │ ├── ios7-skipbackward.png │ │ │ │ ├── ios7-skipforward-outline.png │ │ │ │ ├── ios7-skipforward.png │ │ │ │ ├── ios7-snowy.png │ │ │ │ ├── ios7-speedometer-outline.png │ │ │ │ ├── ios7-speedometer.png │ │ │ │ ├── ios7-star-half.png │ │ │ │ ├── ios7-star-outline.png │ │ │ │ ├── ios7-star.png │ │ │ │ ├── ios7-stopwatch-outline.png │ │ │ │ ├── ios7-stopwatch.png │ │ │ │ ├── ios7-sunny-outline.png │ │ │ │ ├── ios7-sunny.png │ │ │ │ ├── ios7-telephone-outline.png │ │ │ │ ├── ios7-telephone.png │ │ │ │ ├── ios7-tennisball-outline.png │ │ │ │ ├── ios7-tennisball.png │ │ │ │ ├── ios7-thunderstorm-outline.png │ │ │ │ ├── ios7-thunderstorm.png │ │ │ │ ├── ios7-time-outline.png │ │ │ │ ├── ios7-time.png │ │ │ │ ├── ios7-timer-outline.png │ │ │ │ ├── ios7-timer.png │ │ │ │ ├── ios7-toggle-outline.png │ │ │ │ ├── ios7-toggle.png │ │ │ │ ├── ios7-trash-outline.png │ │ │ │ ├── ios7-trash.png │ │ │ │ ├── ios7-undo-outline.png │ │ │ │ ├── ios7-undo.png │ │ │ │ ├── ios7-unlocked-outline.png │ │ │ │ ├── ios7-unlocked.png │ │ │ │ ├── ios7-upload-outline.png │ │ │ │ ├── ios7-upload.png │ │ │ │ ├── ios7-videocam-outline.png │ │ │ │ ├── ios7-videocam.png │ │ │ │ ├── ios7-volume-high.png │ │ │ │ ├── ios7-volume-low.png │ │ │ │ ├── ios7-wineglass-outline.png │ │ │ │ ├── ios7-wineglass.png │ │ │ │ ├── ios7-world-outline.png │ │ │ │ ├── ios7-world.png │ │ │ │ ├── ipad.png │ │ │ │ ├── iphone.png │ │ │ │ ├── ipod.png │ │ │ │ ├── jet.png │ │ │ │ ├── key.png │ │ │ │ ├── knife.png │ │ │ │ ├── laptop.png │ │ │ │ ├── leaf.png │ │ │ │ ├── levels.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── link.png │ │ │ │ ├── load-a.png │ │ │ │ ├── load-b.png │ │ │ │ ├── load-c.png │ │ │ │ ├── load-d.png │ │ │ │ ├── location.png │ │ │ │ ├── locked.png │ │ │ │ ├── log-in.png │ │ │ │ ├── log-out.png │ │ │ │ ├── loop.png │ │ │ │ ├── magnet.png │ │ │ │ ├── male.png │ │ │ │ ├── man.png │ │ │ │ ├── map.png │ │ │ │ ├── medkit.png │ │ │ │ ├── merge.png │ │ │ │ ├── mic-a.png │ │ │ │ ├── mic-b.png │ │ │ │ ├── mic-c.png │ │ │ │ ├── minus-circled.png │ │ │ │ ├── minus-round.png │ │ │ │ ├── minus.png │ │ │ │ ├── model-s.png │ │ │ │ ├── monitor.png │ │ │ │ ├── more.png │ │ │ │ ├── mouse.png │ │ │ │ ├── music-note.png │ │ │ │ ├── navicon-round.png │ │ │ │ ├── navicon.png │ │ │ │ ├── navigate.png │ │ │ │ ├── network.png │ │ │ │ ├── no-smoking.png │ │ │ │ ├── nuclear.png │ │ │ │ ├── outlet.png │ │ │ │ ├── paper-airplane.png │ │ │ │ ├── paperclip.png │ │ │ │ ├── pause.png │ │ │ │ ├── person-add.png │ │ │ │ ├── person-stalker.png │ │ │ │ ├── person.png │ │ │ │ ├── pie-graph.png │ │ │ │ ├── pin.png │ │ │ │ ├── pinpoint.png │ │ │ │ ├── pizza.png │ │ │ │ ├── plane.png │ │ │ │ ├── planet.png │ │ │ │ ├── play.png │ │ │ │ ├── playstation.png │ │ │ │ ├── plus-circled.png │ │ │ │ ├── plus-round.png │ │ │ │ ├── plus.png │ │ │ │ ├── podium.png │ │ │ │ ├── pound.png │ │ │ │ ├── power.png │ │ │ │ ├── pricetag.png │ │ │ │ ├── pricetags.png │ │ │ │ ├── printer.png │ │ │ │ ├── pull-request.png │ │ │ │ ├── qr-scanner.png │ │ │ │ ├── quote.png │ │ │ │ ├── radio-waves.png │ │ │ │ ├── record.png │ │ │ │ ├── refresh.png │ │ │ │ ├── reply-all.png │ │ │ │ ├── reply.png │ │ │ │ ├── ribbon-a.png │ │ │ │ ├── ribbon-b.png │ │ │ │ ├── sad.png │ │ │ │ ├── scissors.png │ │ │ │ ├── search.png │ │ │ │ ├── settings.png │ │ │ │ ├── share.png │ │ │ │ ├── shuffle.png │ │ │ │ ├── skip-backward.png │ │ │ │ ├── skip-forward.png │ │ │ │ ├── social-android-outline.png │ │ │ │ ├── social-android.png │ │ │ │ ├── social-apple-outline.png │ │ │ │ ├── social-apple.png │ │ │ │ ├── social-bitcoin-outline.png │ │ │ │ ├── social-bitcoin.png │ │ │ │ ├── social-buffer-outline.png │ │ │ │ ├── social-buffer.png │ │ │ │ ├── social-designernews-outline.png │ │ │ │ ├── social-designernews.png │ │ │ │ ├── social-dribbble-outline.png │ │ │ │ ├── social-dribbble.png │ │ │ │ ├── social-dropbox-outline.png │ │ │ │ ├── social-dropbox.png │ │ │ │ ├── social-facebook-outline.png │ │ │ │ ├── social-facebook.png │ │ │ │ ├── social-foursquare-outline.png │ │ │ │ ├── social-foursquare.png │ │ │ │ ├── social-freebsd-devil.png │ │ │ │ ├── social-github-outline.png │ │ │ │ ├── social-github.png │ │ │ │ ├── social-google-outline.png │ │ │ │ ├── social-google.png │ │ │ │ ├── social-googleplus-outline.png │ │ │ │ ├── social-googleplus.png │ │ │ │ ├── social-hackernews-outline.png │ │ │ │ ├── social-hackernews.png │ │ │ │ ├── social-instagram-outline.png │ │ │ │ ├── social-instagram.png │ │ │ │ ├── social-linkedin-outline.png │ │ │ │ ├── social-linkedin.png │ │ │ │ ├── social-pinterest-outline.png │ │ │ │ ├── social-pinterest.png │ │ │ │ ├── social-reddit-outline.png │ │ │ │ ├── social-reddit.png │ │ │ │ ├── social-rss-outline.png │ │ │ │ ├── social-rss.png │ │ │ │ ├── social-skype-outline.png │ │ │ │ ├── social-skype.png │ │ │ │ ├── social-tumblr-outline.png │ │ │ │ ├── social-tumblr.png │ │ │ │ ├── social-tux.png │ │ │ │ ├── social-twitter-outline.png │ │ │ │ ├── social-twitter.png │ │ │ │ ├── social-usd-outline.png │ │ │ │ ├── social-usd.png │ │ │ │ ├── social-vimeo-outline.png │ │ │ │ ├── social-vimeo.png │ │ │ │ ├── social-windows-outline.png │ │ │ │ ├── social-windows.png │ │ │ │ ├── social-wordpress-outline.png │ │ │ │ ├── social-wordpress.png │ │ │ │ ├── social-yahoo-outline.png │ │ │ │ ├── social-yahoo.png │ │ │ │ ├── social-youtube-outline.png │ │ │ │ ├── social-youtube.png │ │ │ │ ├── speakerphone.png │ │ │ │ ├── speedometer.png │ │ │ │ ├── spoon.png │ │ │ │ ├── star.png │ │ │ │ ├── stats-bars.png │ │ │ │ ├── steam.png │ │ │ │ ├── stop.png │ │ │ │ ├── thermometer.png │ │ │ │ ├── thumbsdown.png │ │ │ │ ├── thumbsup.png │ │ │ │ ├── toggle-filled.png │ │ │ │ ├── toggle.png │ │ │ │ ├── trash-a.png │ │ │ │ ├── trash-b.png │ │ │ │ ├── trophy.png │ │ │ │ ├── umbrella.png │ │ │ │ ├── university.png │ │ │ │ ├── unlocked.png │ │ │ │ ├── upload.png │ │ │ │ ├── usb.png │ │ │ │ ├── videocamera.png │ │ │ │ ├── volume-high.png │ │ │ │ ├── volume-low.png │ │ │ │ ├── volume-medium.png │ │ │ │ ├── volume-mute.png │ │ │ │ ├── wand.png │ │ │ │ ├── waterdrop.png │ │ │ │ ├── wifi.png │ │ │ │ ├── wineglass.png │ │ │ │ ├── woman.png │ │ │ │ ├── wrench.png │ │ │ │ └── xbox.png │ │ ├── readme.md │ │ ├── scss │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── src │ │ │ ├── alert-circled.svg │ │ │ ├── alert.svg │ │ │ ├── android-add-circle.svg │ │ │ ├── android-add.svg │ │ │ ├── android-alarm-clock.svg │ │ │ ├── android-alert.svg │ │ │ ├── android-apps.svg │ │ │ ├── android-archive.svg │ │ │ ├── android-arrow-back.svg │ │ │ ├── android-arrow-down.svg │ │ │ ├── android-arrow-dropdown-circle.svg │ │ │ ├── android-arrow-dropdown.svg │ │ │ ├── android-arrow-dropleft-circle.svg │ │ │ ├── android-arrow-dropleft.svg │ │ │ ├── android-arrow-dropright-circle.svg │ │ │ ├── android-arrow-dropright.svg │ │ │ ├── android-arrow-dropup-circle.svg │ │ │ ├── android-arrow-dropup.svg │ │ │ ├── android-arrow-forward.svg │ │ │ ├── android-arrow-up.svg │ │ │ ├── android-attach.svg │ │ │ ├── android-bar.svg │ │ │ ├── android-bicycle.svg │ │ │ ├── android-boat.svg │ │ │ ├── android-bookmark.svg │ │ │ ├── android-bulb.svg │ │ │ ├── android-bus.svg │ │ │ ├── android-calendar.svg │ │ │ ├── android-call.svg │ │ │ ├── android-camera.svg │ │ │ ├── android-cancel.svg │ │ │ ├── android-car.svg │ │ │ ├── android-cart.svg │ │ │ ├── android-chat.svg │ │ │ ├── android-checkbox-blank.svg │ │ │ ├── android-checkbox-outline-blank.svg │ │ │ ├── android-checkbox-outline.svg │ │ │ ├── android-checkbox.svg │ │ │ ├── android-checkmark-circle.svg │ │ │ ├── android-clipboard.svg │ │ │ ├── android-close.svg │ │ │ ├── android-cloud-circle.svg │ │ │ ├── android-cloud-done.svg │ │ │ ├── android-cloud-outline.svg │ │ │ ├── android-cloud.svg │ │ │ ├── android-color-palette.svg │ │ │ ├── android-compass.svg │ │ │ ├── android-contact.svg │ │ │ ├── android-contacts.svg │ │ │ ├── android-contract.svg │ │ │ ├── android-create.svg │ │ │ ├── android-delete.svg │ │ │ ├── android-desktop.svg │ │ │ ├── android-document.svg │ │ │ ├── android-done-all.svg │ │ │ ├── android-done.svg │ │ │ ├── android-download.svg │ │ │ ├── android-drafts.svg │ │ │ ├── android-exit.svg │ │ │ ├── android-expand.svg │ │ │ ├── android-favorite-outline.svg │ │ │ ├── android-favorite.svg │ │ │ ├── android-film.svg │ │ │ ├── android-folder-open.svg │ │ │ ├── android-folder.svg │ │ │ ├── android-funnel.svg │ │ │ ├── android-globe.svg │ │ │ ├── android-hand.svg │ │ │ ├── android-hangout.svg │ │ │ ├── android-happy.svg │ │ │ ├── android-home.svg │ │ │ ├── android-image.svg │ │ │ ├── android-laptop.svg │ │ │ ├── android-list.svg │ │ │ ├── android-locate.svg │ │ │ ├── android-lock.svg │ │ │ ├── android-mail.svg │ │ │ ├── android-map.svg │ │ │ ├── android-menu.svg │ │ │ ├── android-microphone-off.svg │ │ │ ├── android-microphone.svg │ │ │ ├── android-more-horizontal.svg │ │ │ ├── android-more-vertical.svg │ │ │ ├── android-navigate.svg │ │ │ ├── android-notifications-none.svg │ │ │ ├── android-notifications-off.svg │ │ │ ├── android-notifications.svg │ │ │ ├── android-open.svg │ │ │ ├── android-options.svg │ │ │ ├── android-people.svg │ │ │ ├── android-person-add.svg │ │ │ ├── android-person.svg │ │ │ ├── android-phone-landscape.svg │ │ │ ├── android-phone-portrait.svg │ │ │ ├── android-pin.svg │ │ │ ├── android-plane.svg │ │ │ ├── android-playstore.svg │ │ │ ├── android-print.svg │ │ │ ├── android-radio-button-off.svg │ │ │ ├── android-radio-button-on.svg │ │ │ ├── android-refresh.svg │ │ │ ├── android-remove-circle.svg │ │ │ ├── android-remove.svg │ │ │ ├── android-restaurant.svg │ │ │ ├── android-sad.svg │ │ │ ├── android-search.svg │ │ │ ├── android-send.svg │ │ │ ├── android-settings.svg │ │ │ ├── android-share-alt.svg │ │ │ ├── android-share.svg │ │ │ ├── android-star-half.svg │ │ │ ├── android-star-outline.svg │ │ │ ├── android-star.svg │ │ │ ├── android-stopwatch.svg │ │ │ ├── android-subway.svg │ │ │ ├── android-sunny.svg │ │ │ ├── android-sync.svg │ │ │ ├── android-textsms.svg │ │ │ ├── android-time.svg │ │ │ ├── android-train.svg │ │ │ ├── android-unlock.svg │ │ │ ├── android-upload.svg │ │ │ ├── android-volume-down.svg │ │ │ ├── android-volume-mute.svg │ │ │ ├── android-volume-off.svg │ │ │ ├── android-volume-up.svg │ │ │ ├── android-walk.svg │ │ │ ├── android-warning.svg │ │ │ ├── android-watch.svg │ │ │ ├── android-wifi.svg │ │ │ ├── aperture.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down-a.svg │ │ │ ├── arrow-down-b.svg │ │ │ ├── arrow-down-c.svg │ │ │ ├── arrow-expand.svg │ │ │ ├── arrow-graph-down-left.svg │ │ │ ├── arrow-graph-down-right.svg │ │ │ ├── arrow-graph-up-left.svg │ │ │ ├── arrow-graph-up-right.svg │ │ │ ├── arrow-left-a.svg │ │ │ ├── arrow-left-b.svg │ │ │ ├── arrow-left-c.svg │ │ │ ├── arrow-move.svg │ │ │ ├── arrow-resize.svg │ │ │ ├── arrow-return-left.svg │ │ │ ├── arrow-return-right.svg │ │ │ ├── arrow-right-a.svg │ │ │ ├── arrow-right-b.svg │ │ │ ├── arrow-right-c.svg │ │ │ ├── arrow-shrink.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-a.svg │ │ │ ├── arrow-up-b.svg │ │ │ ├── arrow-up-c.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace.svg │ │ │ ├── bag.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-low.svg │ │ │ ├── beaker.svg │ │ │ ├── beer.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bonfire.svg │ │ │ ├── bookmark.svg │ │ │ ├── bowtie.svg │ │ │ ├── briefcase.svg │ │ │ ├── bug.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cash.svg │ │ │ ├── chatbox-working.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatboxes.svg │ │ │ ├── chatbubble-working.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkmark-circled.svg │ │ │ ├── checkmark-round.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── close-circled.svg │ │ │ ├── close-round.svg │ │ │ ├── close.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud.svg │ │ │ ├── code-download.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── compass.svg │ │ │ ├── compose.svg │ │ │ ├── connection-bars.svg │ │ │ ├── contrast.svg │ │ │ ├── crop.svg │ │ │ ├── cube.svg │ │ │ ├── disc.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── drag.svg │ │ │ ├── earth.svg │ │ │ ├── easel.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── email-unread.svg │ │ │ ├── email.svg │ │ │ ├── erlenmeyer-flask-bubbles.svg │ │ │ ├── erlenmeyer-flask.svg │ │ │ ├── eye-disabled.svg │ │ │ ├── eye.svg │ │ │ ├── female.svg │ │ │ ├── filing.svg │ │ │ ├── film-marker.svg │ │ │ ├── fireball.svg │ │ │ ├── flag.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash.svg │ │ │ ├── folder.svg │ │ │ ├── fork-repo.svg │ │ │ ├── fork.svg │ │ │ ├── forward.svg │ │ │ ├── funnel.svg │ │ │ ├── gear-a.svg │ │ │ ├── gear-b.svg │ │ │ ├── grid.svg │ │ │ ├── hammer.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy.svg │ │ │ ├── headphone.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circled.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── icecream.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── information-circled.svg │ │ │ ├── information.svg │ │ │ ├── ionic.svg │ │ │ ├── ios-alarm-outline.svg │ │ │ ├── ios-alarm.svg │ │ │ ├── ios-albums-outline.svg │ │ │ ├── ios-albums.svg │ │ │ ├── ios-americanfootball-outline.svg │ │ │ ├── ios-americanfootball.svg │ │ │ ├── ios-analytics-outline.svg │ │ │ ├── ios-analytics.svg │ │ │ ├── ios-arrow-back.svg │ │ │ ├── ios-arrow-down.svg │ │ │ ├── ios-arrow-forward.svg │ │ │ ├── ios-arrow-left.svg │ │ │ ├── ios-arrow-right.svg │ │ │ ├── ios-arrow-thin-down.svg │ │ │ ├── ios-arrow-thin-left.svg │ │ │ ├── ios-arrow-thin-right.svg │ │ │ ├── ios-arrow-thin-up.svg │ │ │ ├── ios-arrow-up.svg │ │ │ ├── ios-at-outline.svg │ │ │ ├── ios-at.svg │ │ │ ├── ios-barcode-outline.svg │ │ │ ├── ios-barcode.svg │ │ │ ├── ios-baseball-outline.svg │ │ │ ├── ios-baseball.svg │ │ │ ├── ios-basketball-outline.svg │ │ │ ├── ios-basketball.svg │ │ │ ├── ios-bell-outline.svg │ │ │ ├── ios-bell.svg │ │ │ ├── ios-body-outline.svg │ │ │ ├── ios-body.svg │ │ │ ├── ios-bolt-outline.svg │ │ │ ├── ios-bolt.svg │ │ │ ├── ios-book-outline.svg │ │ │ ├── ios-book.svg │ │ │ ├── ios-bookmarks-outline.svg │ │ │ ├── ios-bookmarks.svg │ │ │ ├── ios-box-outline.svg │ │ │ ├── ios-box.svg │ │ │ ├── ios-briefcase-outline.svg │ │ │ ├── ios-briefcase.svg │ │ │ ├── ios-browsers-outline.svg │ │ │ ├── ios-browsers.svg │ │ │ ├── ios-calculator-outline.svg │ │ │ ├── ios-calculator.svg │ │ │ ├── ios-calendar-outline.svg │ │ │ ├── ios-calendar.svg │ │ │ ├── ios-camera-outline.svg │ │ │ ├── ios-camera.svg │ │ │ ├── ios-cart-outline.svg │ │ │ ├── ios-cart.svg │ │ │ ├── ios-chatboxes-outline.svg │ │ │ ├── ios-chatboxes.svg │ │ │ ├── ios-chatbubble-outline.svg │ │ │ ├── ios-chatbubble.svg │ │ │ ├── ios-checkmark-empty.svg │ │ │ ├── ios-checkmark-outline.svg │ │ │ ├── ios-checkmark.svg │ │ │ ├── ios-circle-filled.svg │ │ │ ├── ios-circle-outline.svg │ │ │ ├── ios-clock-outline.svg │ │ │ ├── ios-clock.svg │ │ │ ├── ios-close-empty.svg │ │ │ ├── ios-close-outline.svg │ │ │ ├── ios-close.svg │ │ │ ├── ios-cloud-download-outline.svg │ │ │ ├── ios-cloud-download.svg │ │ │ ├── ios-cloud-outline.svg │ │ │ ├── ios-cloud-upload-outline.svg │ │ │ ├── ios-cloud-upload.svg │ │ │ ├── ios-cloud.svg │ │ │ ├── ios-cloudy-night-outline.svg │ │ │ ├── ios-cloudy-night.svg │ │ │ ├── ios-cloudy-outline.svg │ │ │ ├── ios-cloudy.svg │ │ │ ├── ios-cog-outline.svg │ │ │ ├── ios-cog.svg │ │ │ ├── ios-color-filter-outline.svg │ │ │ ├── ios-color-filter.svg │ │ │ ├── ios-color-wand-outline.svg │ │ │ ├── ios-color-wand.svg │ │ │ ├── ios-compose-outline.svg │ │ │ ├── ios-compose.svg │ │ │ ├── ios-contact-outline.svg │ │ │ ├── ios-contact.svg │ │ │ ├── ios-copy-outline.svg │ │ │ ├── ios-copy.svg │ │ │ ├── ios-crop-strong.svg │ │ │ ├── ios-crop.svg │ │ │ ├── ios-download-outline.svg │ │ │ ├── ios-download.svg │ │ │ ├── ios-drag.svg │ │ │ ├── ios-email-outline.svg │ │ │ ├── ios-email.svg │ │ │ ├── ios-eye-outline.svg │ │ │ ├── ios-eye.svg │ │ │ ├── ios-fastforward-outline.svg │ │ │ ├── ios-fastforward.svg │ │ │ ├── ios-filing-outline.svg │ │ │ ├── ios-filing.svg │ │ │ ├── ios-film-outline.svg │ │ │ ├── ios-film.svg │ │ │ ├── ios-flag-outline.svg │ │ │ ├── ios-flag.svg │ │ │ ├── ios-flame-outline.svg │ │ │ ├── ios-flame.svg │ │ │ ├── ios-flask-outline.svg │ │ │ ├── ios-flask.svg │ │ │ ├── ios-flower-outline.svg │ │ │ ├── ios-flower.svg │ │ │ ├── ios-folder-outline.svg │ │ │ ├── ios-folder.svg │ │ │ ├── ios-football-outline.svg │ │ │ ├── ios-football.svg │ │ │ ├── ios-game-controller-a-outline.svg │ │ │ ├── ios-game-controller-a.svg │ │ │ ├── ios-game-controller-b-outline.svg │ │ │ ├── ios-game-controller-b.svg │ │ │ ├── ios-gear-outline.svg │ │ │ ├── ios-gear.svg │ │ │ ├── ios-glasses-outline.svg │ │ │ ├── ios-glasses.svg │ │ │ ├── ios-grid-view-outline.svg │ │ │ ├── ios-grid-view.svg │ │ │ ├── ios-heart-outline.svg │ │ │ ├── ios-heart.svg │ │ │ ├── ios-help-empty.svg │ │ │ ├── ios-help-outline.svg │ │ │ ├── ios-help.svg │ │ │ ├── ios-home-outline.svg │ │ │ ├── ios-home.svg │ │ │ ├── ios-infinite-outline.svg │ │ │ ├── ios-infinite.svg │ │ │ ├── ios-information-empty.svg │ │ │ ├── ios-information-outline.svg │ │ │ ├── ios-information.svg │ │ │ ├── ios-ionic-outline.svg │ │ │ ├── ios-keypad-outline.svg │ │ │ ├── ios-keypad.svg │ │ │ ├── ios-lightbulb-outline.svg │ │ │ ├── ios-lightbulb.svg │ │ │ ├── ios-list-outline.svg │ │ │ ├── ios-list.svg │ │ │ ├── ios-location-outline.svg │ │ │ ├── ios-location.svg │ │ │ ├── ios-locked-outline.svg │ │ │ ├── ios-locked.svg │ │ │ ├── ios-loop-strong.svg │ │ │ ├── ios-loop.svg │ │ │ ├── ios-medical-outline.svg │ │ │ ├── ios-medical.svg │ │ │ ├── ios-medkit-outline.svg │ │ │ ├── ios-medkit.svg │ │ │ ├── ios-mic-off.svg │ │ │ ├── ios-mic-outline.svg │ │ │ ├── ios-mic.svg │ │ │ ├── ios-minus-empty.svg │ │ │ ├── ios-minus-outline.svg │ │ │ ├── ios-minus.svg │ │ │ ├── ios-monitor-outline.svg │ │ │ ├── ios-monitor.svg │ │ │ ├── ios-moon-outline.svg │ │ │ ├── ios-moon.svg │ │ │ ├── ios-more-outline.svg │ │ │ ├── ios-more.svg │ │ │ ├── ios-musical-note.svg │ │ │ ├── ios-musical-notes.svg │ │ │ ├── ios-navigate-outline.svg │ │ │ ├── ios-navigate.svg │ │ │ ├── ios-nutrition-outline.svg │ │ │ ├── ios-nutrition.svg │ │ │ ├── ios-paper-outline.svg │ │ │ ├── ios-paper.svg │ │ │ ├── ios-paperplane-outline.svg │ │ │ ├── ios-paperplane.svg │ │ │ ├── ios-partlysunny-outline.svg │ │ │ ├── ios-partlysunny.svg │ │ │ ├── ios-pause-outline.svg │ │ │ ├── ios-pause.svg │ │ │ ├── ios-paw-outline.svg │ │ │ ├── ios-paw.svg │ │ │ ├── ios-people-outline.svg │ │ │ ├── ios-people.svg │ │ │ ├── ios-person-outline.svg │ │ │ ├── ios-person.svg │ │ │ ├── ios-personadd-outline.svg │ │ │ ├── ios-personadd.svg │ │ │ ├── ios-photos-outline.svg │ │ │ ├── ios-photos.svg │ │ │ ├── ios-pie-outline.svg │ │ │ ├── ios-pie.svg │ │ │ ├── ios-pint-outline.svg │ │ │ ├── ios-pint.svg │ │ │ ├── ios-play-outline.svg │ │ │ ├── ios-play.svg │ │ │ ├── ios-plus-empty.svg │ │ │ ├── ios-plus-outline.svg │ │ │ ├── ios-plus.svg │ │ │ ├── ios-pricetag-outline.svg │ │ │ ├── ios-pricetag.svg │ │ │ ├── ios-pricetags-outline.svg │ │ │ ├── ios-pricetags.svg │ │ │ ├── ios-printer-outline.svg │ │ │ ├── ios-printer.svg │ │ │ ├── ios-pulse-strong.svg │ │ │ ├── ios-pulse.svg │ │ │ ├── ios-rainy-outline.svg │ │ │ ├── ios-rainy.svg │ │ │ ├── ios-recording-outline.svg │ │ │ ├── ios-recording.svg │ │ │ ├── ios-redo-outline.svg │ │ │ ├── ios-redo.svg │ │ │ ├── ios-refresh-empty.svg │ │ │ ├── ios-refresh-outline.svg │ │ │ ├── ios-refresh.svg │ │ │ ├── ios-reload.svg │ │ │ ├── ios-reverse-camera-outline.svg │ │ │ ├── ios-reverse-camera.svg │ │ │ ├── ios-rewind-outline.svg │ │ │ ├── ios-rewind.svg │ │ │ ├── ios-rose-outline.svg │ │ │ ├── ios-rose.svg │ │ │ ├── ios-search-strong.svg │ │ │ ├── ios-search.svg │ │ │ ├── ios-settings-strong.svg │ │ │ ├── ios-settings.svg │ │ │ ├── ios-shuffle-strong.svg │ │ │ ├── ios-shuffle.svg │ │ │ ├── ios-skipbackward-outline.svg │ │ │ ├── ios-skipbackward.svg │ │ │ ├── ios-skipforward-outline.svg │ │ │ ├── ios-skipforward.svg │ │ │ ├── ios-snowy.svg │ │ │ ├── ios-speedometer-outline.svg │ │ │ ├── ios-speedometer.svg │ │ │ ├── ios-star-half.svg │ │ │ ├── ios-star-outline.svg │ │ │ ├── ios-star.svg │ │ │ ├── ios-stopwatch-outline.svg │ │ │ ├── ios-stopwatch.svg │ │ │ ├── ios-sunny-outline.svg │ │ │ ├── ios-sunny.svg │ │ │ ├── ios-telephone-outline.svg │ │ │ ├── ios-telephone.svg │ │ │ ├── ios-tennisball-outline.svg │ │ │ ├── ios-tennisball.svg │ │ │ ├── ios-thunderstorm-outline.svg │ │ │ ├── ios-thunderstorm.svg │ │ │ ├── ios-time-outline.svg │ │ │ ├── ios-time.svg │ │ │ ├── ios-timer-outline.svg │ │ │ ├── ios-timer.svg │ │ │ ├── ios-toggle-outline.svg │ │ │ ├── ios-toggle.svg │ │ │ ├── ios-trash-outline.svg │ │ │ ├── ios-trash.svg │ │ │ ├── ios-undo-outline.svg │ │ │ ├── ios-undo.svg │ │ │ ├── ios-unlocked-outline.svg │ │ │ ├── ios-unlocked.svg │ │ │ ├── ios-upload-outline.svg │ │ │ ├── ios-upload.svg │ │ │ ├── ios-videocam-outline.svg │ │ │ ├── ios-videocam.svg │ │ │ ├── ios-volume-high.svg │ │ │ ├── ios-volume-low.svg │ │ │ ├── ios-wineglass-outline.svg │ │ │ ├── ios-wineglass.svg │ │ │ ├── ios-world-outline.svg │ │ │ ├── ios-world.svg │ │ │ ├── ipad.svg │ │ │ ├── iphone.svg │ │ │ ├── ipod.svg │ │ │ ├── jet.svg │ │ │ ├── key.svg │ │ │ ├── knife.svg │ │ │ ├── laptop.svg │ │ │ ├── leaf.svg │ │ │ ├── levels.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── load-a.svg │ │ │ ├── load-b.svg │ │ │ ├── load-c.svg │ │ │ ├── load-d.svg │ │ │ ├── location.svg │ │ │ ├── lock-combination.svg │ │ │ ├── locked.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out.svg │ │ │ ├── loop.svg │ │ │ ├── magnet.svg │ │ │ ├── male.svg │ │ │ ├── man.svg │ │ │ ├── map.svg │ │ │ ├── medkit.svg │ │ │ ├── merge.svg │ │ │ ├── mic-a.svg │ │ │ ├── mic-b.svg │ │ │ ├── mic-c.svg │ │ │ ├── minus-circled.svg │ │ │ ├── minus-round.svg │ │ │ ├── minus.svg │ │ │ ├── model-s.svg │ │ │ ├── monitor.svg │ │ │ ├── more.svg │ │ │ ├── mouse.svg │ │ │ ├── music-note.svg │ │ │ ├── navicon-round.svg │ │ │ ├── navicon.svg │ │ │ ├── navigate.svg │ │ │ ├── network.svg │ │ │ ├── no-smoking.svg │ │ │ ├── nuclear.svg │ │ │ ├── outlet.svg │ │ │ ├── paintbrush.svg │ │ │ ├── paintbucket.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── paperclip.svg │ │ │ ├── pause.svg │ │ │ ├── person-add.svg │ │ │ ├── person-stalker.svg │ │ │ ├── person.svg │ │ │ ├── pie-graph.svg │ │ │ ├── pin.svg │ │ │ ├── pinpoint.svg │ │ │ ├── pizza.svg │ │ │ ├── plane.svg │ │ │ ├── planet.svg │ │ │ ├── play.svg │ │ │ ├── playstation.svg │ │ │ ├── plus-circled.svg │ │ │ ├── plus-round.svg │ │ │ ├── plus.svg │ │ │ ├── podium.svg │ │ │ ├── pound.svg │ │ │ ├── power.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags.svg │ │ │ ├── printer.svg │ │ │ ├── pull-request.svg │ │ │ ├── qr-scanner.svg │ │ │ ├── quote.svg │ │ │ ├── radio-waves.svg │ │ │ ├── record.svg │ │ │ ├── refresh.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── ribbon-a.svg │ │ │ ├── ribbon-b.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad.svg │ │ │ ├── scissors.svg │ │ │ ├── search.svg │ │ │ ├── settings.svg │ │ │ ├── share.svg │ │ │ ├── shuffle.svg │ │ │ ├── skip-backward.svg │ │ │ ├── skip-forward.svg │ │ │ ├── social-android-outline.svg │ │ │ ├── social-android.svg │ │ │ ├── social-angular-outline.svg │ │ │ ├── social-angular.svg │ │ │ ├── social-apple-outline.svg │ │ │ ├── social-apple.svg │ │ │ ├── social-bitcoin-outline.svg │ │ │ ├── social-bitcoin.svg │ │ │ ├── social-buffer-outline.svg │ │ │ ├── social-buffer.svg │ │ │ ├── social-chrome-outline.svg │ │ │ ├── social-chrome.svg │ │ │ ├── social-codepen-outline.svg │ │ │ ├── social-codepen.svg │ │ │ ├── social-css3-outline.svg │ │ │ ├── social-css3.svg │ │ │ ├── social-designernews-outline.svg │ │ │ ├── social-designernews.svg │ │ │ ├── social-dribbble-outline.svg │ │ │ ├── social-dribbble.svg │ │ │ ├── social-dropbox-outline.svg │ │ │ ├── social-dropbox.svg │ │ │ ├── social-euro-outline.svg │ │ │ ├── social-euro.svg │ │ │ ├── social-facebook-outline.svg │ │ │ ├── social-facebook.svg │ │ │ ├── social-foursquare-outline.svg │ │ │ ├── social-foursquare.svg │ │ │ ├── social-freebsd-devil.svg │ │ │ ├── social-github-outline.svg │ │ │ ├── social-github.svg │ │ │ ├── social-google-outline.svg │ │ │ ├── social-google.svg │ │ │ ├── social-googleplus-outline.svg │ │ │ ├── social-googleplus.svg │ │ │ ├── social-hackernews-outline.svg │ │ │ ├── social-hackernews.svg │ │ │ ├── social-html5-outline.svg │ │ │ ├── social-html5.svg │ │ │ ├── social-instagram-outline.svg │ │ │ ├── social-instagram.svg │ │ │ ├── social-javascript-outline.svg │ │ │ ├── social-javascript.svg │ │ │ ├── social-linkedin-outline.svg │ │ │ ├── social-linkedin.svg │ │ │ ├── social-markdown.svg │ │ │ ├── social-nodejs.svg │ │ │ ├── social-octocat.svg │ │ │ ├── social-pinterest-outline.svg │ │ │ ├── social-pinterest.svg │ │ │ ├── social-python.svg │ │ │ ├── social-reddit-outline.svg │ │ │ ├── social-reddit.svg │ │ │ ├── social-rss-outline.svg │ │ │ ├── social-rss.svg │ │ │ ├── social-sass.svg │ │ │ ├── social-skype-outline.svg │ │ │ ├── social-skype.svg │ │ │ ├── social-snapchat-outline.svg │ │ │ ├── social-snapchat.svg │ │ │ ├── social-tumblr-outline.svg │ │ │ ├── social-tumblr.svg │ │ │ ├── social-tux.svg │ │ │ ├── social-twitch-outline.svg │ │ │ ├── social-twitch.svg │ │ │ ├── social-twitter-outline.svg │ │ │ ├── social-twitter.svg │ │ │ ├── social-usd-outline.svg │ │ │ ├── social-usd.svg │ │ │ ├── social-vimeo-outline.svg │ │ │ ├── social-vimeo.svg │ │ │ ├── social-whatsapp-outline.svg │ │ │ ├── social-whatsapp.svg │ │ │ ├── social-windows-outline.svg │ │ │ ├── social-windows.svg │ │ │ ├── social-wordpress-outline.svg │ │ │ ├── social-wordpress.svg │ │ │ ├── social-yahoo-outline.svg │ │ │ ├── social-yahoo.svg │ │ │ ├── social-yen-outline.svg │ │ │ ├── social-yen.svg │ │ │ ├── social-youtube-outline.svg │ │ │ ├── social-youtube.svg │ │ │ ├── soup-can-outline.svg │ │ │ ├── soup-can.svg │ │ │ ├── speakerphone.svg │ │ │ ├── speedometer.svg │ │ │ ├── spoon.svg │ │ │ ├── star.svg │ │ │ ├── stats-bars.svg │ │ │ ├── steam.svg │ │ │ ├── stop.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbsdown.svg │ │ │ ├── thumbsup.svg │ │ │ ├── toggle-filled.svg │ │ │ ├── toggle.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-a.svg │ │ │ ├── trash-b.svg │ │ │ ├── trophy.svg │ │ │ ├── tshirt-outline.svg │ │ │ ├── tshirt.svg │ │ │ ├── umbrella.svg │ │ │ ├── university.svg │ │ │ ├── unlocked.svg │ │ │ ├── upload.svg │ │ │ ├── usb.svg │ │ │ ├── videocamera.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute.svg │ │ │ ├── wand.svg │ │ │ ├── waterdrop.svg │ │ │ ├── wifi.svg │ │ │ ├── wineglass.svg │ │ │ ├── woman.svg │ │ │ ├── wrench.svg │ │ │ └── xbox.svg │ │ ├── ionslider │ │ ├── img │ │ │ ├── sprite-skin-flat.png │ │ │ └── sprite-skin-nice.png │ │ ├── ion.rangeSlider.css │ │ ├── ion.rangeSlider.min.js │ │ ├── ion.rangeSlider.skinFlat.css │ │ └── ion.rangeSlider.skinNice.css │ │ ├── jQuery │ │ └── jquery-2.2.3.min.js │ │ ├── jQueryUI │ │ ├── jquery-ui.js │ │ └── jquery-ui.min.js │ │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-usa-en.js │ │ └── jquery-jvectormap-world-mill-en.js │ │ ├── knob │ │ └── jquery.knob.js │ │ ├── morris │ │ ├── morris.css │ │ ├── morris.js │ │ └── morris.min.js │ │ ├── pace │ │ ├── pace.css │ │ ├── pace.js │ │ ├── pace.min.css │ │ └── pace.min.js │ │ ├── select2 │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.css │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── slimScroll │ │ ├── jquery.slimscroll.js │ │ └── jquery.slimscroll.min.js │ │ ├── sparkline │ │ ├── jquery.sparkline.js │ │ └── jquery.sparkline.min.js │ │ └── timepicker │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap-timepicker.js │ │ ├── bootstrap-timepicker.min.css │ │ └── bootstrap-timepicker.min.js ├── templates │ └── show_tables.html └── utils │ ├── CourseDB │ ├── __init__.py │ ├── init_Course.py │ └── school_course.xls │ ├── __init__.py │ └── scoreUtils │ ├── __init__.py │ └── init_database.py ├── img ├── ER_model.png ├── MindMap.png ├── flowchart.png ├── general.png ├── loginusecase.png ├── managerUsecase.png ├── printscore.png ├── studentUsecase.png ├── uploadscore.png ├── viewscore_stat.png └── 成绩管理系统类图.png └── others ├── EMS_编码规范.pdf └── EMS_项目管理计划.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /ScoreManagement/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | *__pycache__/* 3 | *.pyc 4 | -------------------------------------------------------------------------------- /ScoreManagement/ScoreManagement/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | pymysql.install_as_MySQLdb() 3 | -------------------------------------------------------------------------------- /ScoreManagement/ScoreManagement/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/ScoreManagement/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/ScoreManagement/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/ScoreManagement/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/ScoreManagement/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/ScoreManagement/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/__init__.py -------------------------------------------------------------------------------- /ScoreManagement/app/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /ScoreManagement/app/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AppConfig(AppConfig): 5 | name = 'app' 6 | -------------------------------------------------------------------------------- /ScoreManagement/app/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/migrations/__init__.py -------------------------------------------------------------------------------- /ScoreManagement/app/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/app/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ScoreManagement/app/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | 5 | -------------------------------------------------------------------------------- /ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/avatar.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/avatar04.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/avatar2.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/avatar3.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/avatar5.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/credit/visa.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/icons.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/photo1.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/photo2.png -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/photo3.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/photo4.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/img/blackcar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/img/blackcar.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/img/home-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/img/home-ad.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/img/moveup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/img/moveup.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/img/success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/img/success.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/font-awesome-4.6.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/font-awesome-4.6.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/font-awesome-4.6.3/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/font-awesome-4.6.3/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/font-awesome-4.6.3/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/font-awesome-4.6.3/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | *.scssc 4 | *.swp -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/builder/scripts/sfnt2woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/builder/scripts/sfnt2woff -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.eot -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.ttf -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/fonts/ionicons.woff -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/less/ionicons.less: -------------------------------------------------------------------------------- 1 | @import "_ionicons-variables"; 2 | @import "_ionicons-font"; 3 | @import "_ionicons-icons"; 4 | -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/alert-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/alert-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/alert.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-add.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-alarm.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-archive.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-battery.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-book.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-calendar.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-call.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-camera.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-chat.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-checkmark.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-clock.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-close.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-contact.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-contacts.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-data.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-developer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-display.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-download.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-drawer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-dropdown.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-earth.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-folder.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-forums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-forums.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-friends.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-hand.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-image.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-inbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-inbox.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-keypad.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-lightbulb.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-locate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-locate.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-location.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-mail.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-mixer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-more.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-note.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-playstore.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-printer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-promotion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-promotion.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-reminder.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-remove.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-search.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-send.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-settings.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-share.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-social.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-sort.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-star.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-stopwatch.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-storage.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-timer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-trash.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-user-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-user-menu.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-volume.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/android-wifi.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/aperture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/aperture.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/archive.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-down-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-expand.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-left-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-move.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-resize.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-return-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-return-left.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-right-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-shrink.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-swap.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/arrow-up-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/asterisk.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/at.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-charging.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-empty.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-full.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-half.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/battery-low.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/beaker.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/beer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bluetooth.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bonfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bonfire.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bookmark.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/briefcase.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/bug.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/calculator.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/calendar.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/camera.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/card.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cash.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbox-working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbox-working.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbox.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatboxes.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbubble.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbubbles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chatbubbles.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark-round.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/checkmark.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-down.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-left.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-right.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/chevron-up.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/clipboard.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/clock.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close-round.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/close.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/closed-captioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/closed-captioning.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cloud.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code-download.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code-working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code-working.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/code.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/coffee.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/compass.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/compose.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/connection-bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/connection-bars.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/contrast.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/cube.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/disc.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/document-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/document-text.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/document.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/drag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/earth.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/edit.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/egg.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eject.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/email.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eye-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eye-disabled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/eye.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/female.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/filing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/filing.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/film-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/film-marker.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fireball.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flame.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flash-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flash-off.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flash.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/flask.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/folder.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fork-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fork-repo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/fork.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/forward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/funnel.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/game-controller-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/game-controller-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/game-controller-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/game-controller-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/gear-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/gear-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/gear-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/gear-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/grid.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/hammer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/happy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/headphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/headphone.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/heart-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/heart-broken.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/heart.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help-buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help-buoy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/help.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/home.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/icecream.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/image.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/images.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/information.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ionic.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-alarm.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-albums.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-albums.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-analytics.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-back.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-down.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-left.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-right.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-arrow-up.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-at-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-at-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-at.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-barcode.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-baseball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-baseball.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-basketball.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bell-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bell-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bell.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bolt-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bolt-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bolt.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-bookmarks.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-box-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-box-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-box.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-briefcase.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-browsers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-browsers.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-calculator.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-calendar.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-camera.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cart-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cart-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cart.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-chatboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-chatboxes.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-chatbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-chatbubble.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-checkmark.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-clock.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-close-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-close-empty.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-close.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloud-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloud-upload.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloud.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloudy-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloudy-night.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cloudy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cog-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cog-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-cog.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-compose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-compose.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-contact.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-copy-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-copy-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-copy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-download.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-drag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-email.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-expand.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-eye-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-eye-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-eye.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-fastforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-fastforward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-filing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-filing.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-film-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-film-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-film.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-flag-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-flag-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-flag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-folder.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-football.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-gear-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-gear-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-gear.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-glasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-glasses.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-heart.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help-empty.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-help.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-home-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-home-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-home.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-infinite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-infinite.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-information.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-keypad.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-lightbulb.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-location.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-locked.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-loop-strong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-loop-strong.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-loop.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-medkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-medkit.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic-off.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-mic.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-minus-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-minus-empty.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-minus.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-monitor.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-moon-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-moon-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-moon.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-more-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-more-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-more.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-musical-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-musical-note.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-navigate.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paper.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paperplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paperplane.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-partlysunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-partlysunny.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pause.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paw-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paw-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-paw.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-people.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-person.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-personadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-personadd.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-photos.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pie-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pie-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pie.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-play-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-play-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-play.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus-empty.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-plus.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pricetag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pricetag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pricetags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pricetags.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-printer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pulse-strong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pulse-strong.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pulse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-pulse.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-rainy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-recording.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-redo-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-redo-outline.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-redo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-refresh.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-reload.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-rewind.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-search.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-settings.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-shrink.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-skipbackward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-skipbackward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-skipforward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-skipforward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-snowy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-snowy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-star-half.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-star.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-stopwatch.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-sunny.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-telephone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-telephone.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-time.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-timer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-toggle.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-trash.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-undo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-unlocked.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-upload.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-videocam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-videocam.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-wineglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-wineglass.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ios7-world.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ipad.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/iphone.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ipod.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/jet.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/key.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/knife.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/laptop.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/leaf.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/levels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/levels.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/lightbulb.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/link.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/load-d.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/location.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/locked.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/log-in.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/log-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/log-out.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/loop.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/magnet.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/male.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/man.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/map.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/medkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/medkit.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/merge.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mic-c.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus-round.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/minus.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/model-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/model-s.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/monitor.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/more.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/mouse.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/music-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/music-note.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navicon-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navicon-round.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navicon.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navigate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/navigate.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/network.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/no-smoking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/no-smoking.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/nuclear.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/outlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/outlet.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/paper-airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/paper-airplane.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/paperclip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/paperclip.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pause.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person-add.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person-stalker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person-stalker.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/person.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pie-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pie-graph.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pin.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pinpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pinpoint.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pizza.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plane.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/planet.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/play.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/playstation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/playstation.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus-circled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus-circled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus-round.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/plus.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/podium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/podium.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pound.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/power.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pricetag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pricetag.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pricetags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pricetags.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/printer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/pull-request.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/qr-scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/qr-scanner.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/quote.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/radio-waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/radio-waves.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/record.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/refresh.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/reply-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/reply-all.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/reply.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ribbon-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ribbon-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ribbon-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/ribbon-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/sad.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/scissors.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/search.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/settings.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/share.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/shuffle.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/skip-backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/skip-backward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/skip-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/skip-forward.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-android.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-apple.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-bitcoin.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-buffer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-dropbox.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-github.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-google.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-reddit.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-rss.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-skype.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-tumblr.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-tux.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-twitter.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-usd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-usd.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-vimeo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-windows.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-yahoo.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/social-youtube.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/speakerphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/speakerphone.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/speedometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/speedometer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/spoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/spoon.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/star.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/stats-bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/stats-bars.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/steam.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/stop.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thermometer.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thumbsdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thumbsdown.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/thumbsup.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/toggle-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/toggle-filled.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/toggle.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trash-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trash-a.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trash-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trash-b.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/trophy.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/umbrella.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/university.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/unlocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/unlocked.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/upload.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/usb.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/videocamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/videocamera.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-high.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-low.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-medium.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/volume-mute.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wand.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/waterdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/waterdrop.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wifi.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wineglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wineglass.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/woman.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/wrench.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionicons-2.0.1/png/512/xbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionicons-2.0.1/png/512/xbox.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /ScoreManagement/static/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/static/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /ScoreManagement/utils/CourseDB/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/utils/CourseDB/__init__.py -------------------------------------------------------------------------------- /ScoreManagement/utils/CourseDB/school_course.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/utils/CourseDB/school_course.xls -------------------------------------------------------------------------------- /ScoreManagement/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/utils/__init__.py -------------------------------------------------------------------------------- /ScoreManagement/utils/scoreUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/ScoreManagement/utils/scoreUtils/__init__.py -------------------------------------------------------------------------------- /img/ER_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/ER_model.png -------------------------------------------------------------------------------- /img/MindMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/MindMap.png -------------------------------------------------------------------------------- /img/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/flowchart.png -------------------------------------------------------------------------------- /img/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/general.png -------------------------------------------------------------------------------- /img/loginusecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/loginusecase.png -------------------------------------------------------------------------------- /img/managerUsecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/managerUsecase.png -------------------------------------------------------------------------------- /img/printscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/printscore.png -------------------------------------------------------------------------------- /img/studentUsecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/studentUsecase.png -------------------------------------------------------------------------------- /img/uploadscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/uploadscore.png -------------------------------------------------------------------------------- /img/viewscore_stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/viewscore_stat.png -------------------------------------------------------------------------------- /img/成绩管理系统类图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/img/成绩管理系统类图.png -------------------------------------------------------------------------------- /others/EMS_编码规范.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/others/EMS_编码规范.pdf -------------------------------------------------------------------------------- /others/EMS_项目管理计划.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RonDen/SoftwareEngineering/a339c606847e40313b128c312a14f8ca3e71fe09/others/EMS_项目管理计划.pdf --------------------------------------------------------------------------------