├── .gitignore ├── LICENSE ├── README.md ├── css ├── uikit-rtl.css ├── uikit-rtl.min.css ├── uikit.css └── uikit.min.css ├── icons ├── README.md ├── README.md~ ├── brands │ ├── bitcoin.svg │ ├── discord.svg │ ├── facebook.svg │ ├── keybase.svg │ ├── linkedin.svg │ ├── monero.svg │ ├── paypal.svg │ ├── reddit.svg │ ├── skype.svg │ ├── snapchat-square.svg │ ├── stack-overflow.svg │ ├── telegram.svg │ ├── tumblr-square.svg │ ├── twitter-square.svg │ ├── vk.svg │ ├── whatsapp.svg │ ├── yahoo.svg │ └── youtube.svg └── solid │ ├── angry.svg │ ├── bug.svg │ ├── building.svg │ ├── bus.svg │ ├── cannabis.svg │ ├── capsules.svg │ ├── car-crash.svg │ ├── child.svg │ ├── city.svg │ ├── cloud.svg │ ├── comments.svg │ ├── credit-card.svg │ ├── crosshairs.svg │ ├── crown.svg │ ├── database.svg │ ├── envelope.svg │ ├── envelope.svg~ │ ├── file-audio.svg │ ├── file-image.svg │ ├── file-pdf.svg │ ├── file-powerpoint.svg │ ├── file-video.svg │ ├── file-word.svg │ ├── fingerprint.svg │ ├── key.svg │ ├── map-marked-alt.svg │ ├── money-bill-alt.svg │ ├── money-bill-alt.svg~ │ └── user-alt.svg ├── images ├── example_query.png ├── icons.png ├── icons_2.png ├── prerenderer.png ├── screenshot_30.png ├── screenshot_31.png ├── screenshot_32.png └── splash.png ├── index.js ├── js ├── iconType.js ├── uikit-icons.js ├── uikit-icons.min.js ├── uikit.js ├── uikit.min.js └── vivagraph.js ├── logo ├── 128x128.png ├── 16x16.png ├── 24x24.png ├── 256x256.png ├── 32x32.png ├── 48x48.png ├── 512x512.png ├── 64x64.png ├── 96x96.png ├── logo.icns └── logo.png ├── package.json ├── pages ├── graph.html ├── graph_1.html └── spinner.html └── photon ├── css ├── photon.css └── photon.min.css ├── fonts ├── photon-entypo.eot ├── photon-entypo.svg ├── photon-entypo.ttf └── photon-entypo.woff └── template-app ├── app.js ├── index.html ├── js └── menu.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/README.md -------------------------------------------------------------------------------- /css/uikit-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/css/uikit-rtl.css -------------------------------------------------------------------------------- /css/uikit-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/css/uikit-rtl.min.css -------------------------------------------------------------------------------- /css/uikit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/css/uikit.css -------------------------------------------------------------------------------- /css/uikit.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/css/uikit.min.css -------------------------------------------------------------------------------- /icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/README.md -------------------------------------------------------------------------------- /icons/README.md~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/brands/bitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/bitcoin.svg -------------------------------------------------------------------------------- /icons/brands/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/discord.svg -------------------------------------------------------------------------------- /icons/brands/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/facebook.svg -------------------------------------------------------------------------------- /icons/brands/keybase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/keybase.svg -------------------------------------------------------------------------------- /icons/brands/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/linkedin.svg -------------------------------------------------------------------------------- /icons/brands/monero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/monero.svg -------------------------------------------------------------------------------- /icons/brands/paypal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/paypal.svg -------------------------------------------------------------------------------- /icons/brands/reddit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/reddit.svg -------------------------------------------------------------------------------- /icons/brands/skype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/skype.svg -------------------------------------------------------------------------------- /icons/brands/snapchat-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/snapchat-square.svg -------------------------------------------------------------------------------- /icons/brands/stack-overflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/stack-overflow.svg -------------------------------------------------------------------------------- /icons/brands/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/telegram.svg -------------------------------------------------------------------------------- /icons/brands/tumblr-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/tumblr-square.svg -------------------------------------------------------------------------------- /icons/brands/twitter-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/twitter-square.svg -------------------------------------------------------------------------------- /icons/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/vk.svg -------------------------------------------------------------------------------- /icons/brands/whatsapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/whatsapp.svg -------------------------------------------------------------------------------- /icons/brands/yahoo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/yahoo.svg -------------------------------------------------------------------------------- /icons/brands/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/brands/youtube.svg -------------------------------------------------------------------------------- /icons/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/angry.svg -------------------------------------------------------------------------------- /icons/solid/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/bug.svg -------------------------------------------------------------------------------- /icons/solid/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/building.svg -------------------------------------------------------------------------------- /icons/solid/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/bus.svg -------------------------------------------------------------------------------- /icons/solid/cannabis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/cannabis.svg -------------------------------------------------------------------------------- /icons/solid/capsules.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/capsules.svg -------------------------------------------------------------------------------- /icons/solid/car-crash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/car-crash.svg -------------------------------------------------------------------------------- /icons/solid/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/child.svg -------------------------------------------------------------------------------- /icons/solid/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/city.svg -------------------------------------------------------------------------------- /icons/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/cloud.svg -------------------------------------------------------------------------------- /icons/solid/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/comments.svg -------------------------------------------------------------------------------- /icons/solid/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/credit-card.svg -------------------------------------------------------------------------------- /icons/solid/crosshairs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/crosshairs.svg -------------------------------------------------------------------------------- /icons/solid/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/crown.svg -------------------------------------------------------------------------------- /icons/solid/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/database.svg -------------------------------------------------------------------------------- /icons/solid/envelope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/envelope.svg -------------------------------------------------------------------------------- /icons/solid/envelope.svg~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/envelope.svg~ -------------------------------------------------------------------------------- /icons/solid/file-audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-audio.svg -------------------------------------------------------------------------------- /icons/solid/file-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-image.svg -------------------------------------------------------------------------------- /icons/solid/file-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-pdf.svg -------------------------------------------------------------------------------- /icons/solid/file-powerpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-powerpoint.svg -------------------------------------------------------------------------------- /icons/solid/file-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-video.svg -------------------------------------------------------------------------------- /icons/solid/file-word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/file-word.svg -------------------------------------------------------------------------------- /icons/solid/fingerprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/fingerprint.svg -------------------------------------------------------------------------------- /icons/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/key.svg -------------------------------------------------------------------------------- /icons/solid/map-marked-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/map-marked-alt.svg -------------------------------------------------------------------------------- /icons/solid/money-bill-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/money-bill-alt.svg -------------------------------------------------------------------------------- /icons/solid/money-bill-alt.svg~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/money-bill-alt.svg~ -------------------------------------------------------------------------------- /icons/solid/user-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/icons/solid/user-alt.svg -------------------------------------------------------------------------------- /images/example_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/example_query.png -------------------------------------------------------------------------------- /images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/icons.png -------------------------------------------------------------------------------- /images/icons_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/icons_2.png -------------------------------------------------------------------------------- /images/prerenderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/prerenderer.png -------------------------------------------------------------------------------- /images/screenshot_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/screenshot_30.png -------------------------------------------------------------------------------- /images/screenshot_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/screenshot_31.png -------------------------------------------------------------------------------- /images/screenshot_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/screenshot_32.png -------------------------------------------------------------------------------- /images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/images/splash.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/index.js -------------------------------------------------------------------------------- /js/iconType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/iconType.js -------------------------------------------------------------------------------- /js/uikit-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/uikit-icons.js -------------------------------------------------------------------------------- /js/uikit-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/uikit-icons.min.js -------------------------------------------------------------------------------- /js/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/uikit.js -------------------------------------------------------------------------------- /js/uikit.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/uikit.min.js -------------------------------------------------------------------------------- /js/vivagraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/js/vivagraph.js -------------------------------------------------------------------------------- /logo/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/128x128.png -------------------------------------------------------------------------------- /logo/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/16x16.png -------------------------------------------------------------------------------- /logo/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/24x24.png -------------------------------------------------------------------------------- /logo/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/256x256.png -------------------------------------------------------------------------------- /logo/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/32x32.png -------------------------------------------------------------------------------- /logo/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/48x48.png -------------------------------------------------------------------------------- /logo/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/512x512.png -------------------------------------------------------------------------------- /logo/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/64x64.png -------------------------------------------------------------------------------- /logo/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/96x96.png -------------------------------------------------------------------------------- /logo/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/logo.icns -------------------------------------------------------------------------------- /logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/logo/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/package.json -------------------------------------------------------------------------------- /pages/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/pages/graph.html -------------------------------------------------------------------------------- /pages/graph_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/pages/graph_1.html -------------------------------------------------------------------------------- /pages/spinner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/pages/spinner.html -------------------------------------------------------------------------------- /photon/css/photon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/css/photon.css -------------------------------------------------------------------------------- /photon/css/photon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/css/photon.min.css -------------------------------------------------------------------------------- /photon/fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /photon/fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /photon/fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /photon/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /photon/template-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/template-app/app.js -------------------------------------------------------------------------------- /photon/template-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/template-app/index.html -------------------------------------------------------------------------------- /photon/template-app/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/template-app/js/menu.js -------------------------------------------------------------------------------- /photon/template-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pielco11/DOGE/HEAD/photon/template-app/package.json --------------------------------------------------------------------------------